/* Theme CSS */

html {
  --page-width: 978px;
  --input-placeholder-font-color: #ccc;
}
* {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}
html {
  width: 100%;
  height: 100%;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  vertical-align: top;
}
input[type="text"],
input[type="email"],
input[type="date"],
input[type="password"],
input[type="button"],
input[type="submit"],
button,
textarea,
select {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-transform: inherit;
  text-decoration: inherit;
}
input[type="text"],
input[type="email"],
input[type="date"],
input[type="password"],
textarea,
select {
  padding: 10px 14px;
  border: 1px solid #ddd;
  background: white;
}
input[type="button"],
input[type="submit"],
button {
  padding: 10px 14px;
  border: 1px solid #ddd;
}
button {
  background: none;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  overflow: visible;
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
}
h1 > strong {
  font-weight: inherit;
  font-style: inherit;
}
.content-area {
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: 50% 50%;
}
.content-area > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 32px 0;
}
.content-area > .wrapper > .widget:last-child {
  margin-bottom: 0;
}
.content-area > .wrapper > h1,
.layout-container .layout-item-container > h1 {
  margin-bottom: 24px;
}
.content-area.mini-height > .wrapper,
.content-area.small-height > .wrapper,
.content-area.medium-height > .wrapper {
  height: 100%;
}
.content-area.full-height > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 100vh;
}
.content-area.hero.full-height {
  height: 100%;
}
.content-area.hero.three-quarters-height {
  height: 75vh;
}
.content-area.hero.three-quarters-height > .wrapper {
  height: 75vh;
}
.content-area.hero.eighty-percent-height {
  height: 80vh;
}
.content-area.hero.eighty-percent-height > .wrapper {
  height: 80vh;
}
.content-area.hero.medium-height {
  height: 600px;
}
.content-area.hero.small-height {
  height: 400px;
}
.content-area.hero.mini-height {
  height: 300px;
}
.content-area.hero.fixed-position > .wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.content-area.hero.style-center {
  display: flex;
  display: -webkit-flex;
}
.content-area.hero.style-center > .wrapper {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.content-area.hero > .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.content-area.hero > .background-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  object-fit: cover;
}
.content-area.hero > .wrapper {
  z-index: 10;
}
.content-area.full-width > .wrapper {
  width: 100%;
  max-width: 100%;
}
.content-area.full-width > .wrapper > h1 {
  max-width: var(--page-width);
  margin: 0 auto;
  margin-bottom: 24px;
}
.content-area.min-padding > .wrapper {
  padding: 12px 0;
}
.content-area.max-padding > .wrapper {
  padding: 32px 96px;
}
.content-area.no-padding > .wrapper {
  padding: 0;
}
.content-area.article {
  padding-top: 240px;
}
.content-area.page-width-thin > .wrapper > * {
  width: 100%;
  max-width: 720px;
}
/*.content-area.page-width-thin.center-contents > .wrapper {
	.display-flex();
	.flex-direction(column);
	.align-items(center);
}*/
.content-area.page-width-dialog {
  min-height: 100vh;
  padding-top: 180px;
}
.content-area.page-width-dialog > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  width: 100%;
  max-width: 580px;
  padding: 32px;
  margin-bottom: 32px;
}
.content-area-header {
  margin-bottom: 24px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}
.content-area.no-top-padding > .wrapper {
  padding-top: 0;
}
.content-area.no-bottom-padding > .wrapper {
  padding-bottom: 0;
}
.content-area.bg-carousel > .backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.content-area.bg-carousel > .backgrounds .bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-position: center center;
  transition: opacity 2s;
}
.content-area.bg-carousel[data-bg-index="0"] > .backgrounds .bg:nth-child(1) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="1"] > .backgrounds .bg:nth-child(2) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="2"] > .backgrounds .bg:nth-child(3) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="3"] > .backgrounds .bg:nth-child(4) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="4"] > .backgrounds .bg:nth-child(5) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="5"] > .backgrounds .bg:nth-child(6) {
  opacity: 1;
}
/* Mobile */
html.mobile .content-area > .wrapper {
  max-width: unset;
  padding: 32px 16px;
  width: 100%;
  overflow: hidden;
}
html.mobile .content-area.full-width.no-padding > .wrapper > h1 {
  width: 100%;
  margin-left: 16px;
  margin-right: 16px;
}
html.mobile .content-area.page-width-dialog {
  padding-bottom: 32px;
  padding-top: 120px;
}
html.mobile .content-area.page-width-dialog > .wrapper {
  margin-left: var(--mobile-gutter, 16px);
  margin-right: var(--mobile-gutter, 16px);
  width: calc(100% - (2 * var(--mobile-gutter, 16px)));
  margin-bottom: 0;
}
html.mobile .content-area.hero.style-center > .wrapper {
  padding-left: 32px;
  padding-right: 32px;
}
html.mobile .content-area.no-padding > .wrapper {
  padding: 0;
}
/* General */
.layout-container > .overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
/* Desktop */
.layout-container.page-width.widgets-center.direction-horizontal > .wrapper .layout-item-container {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout-container.page-width.widgets-center > .wrapper .layout-item.container {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.layout-container.page-width.widgets-center.direction-horizontal > .wrapper .layout-item-container {
  align-items: unset;
  -webkit-align-items: unset;
  justify-content: center;
  -webkit-justify-content: center;
}
.layout-container.page-width .layout-item-container > .widget,
.layout-container.page-width .layout-item-container > .mfe-edit-container > .widget {
  margin-bottom: var(--widget-spacing, 0);
}
.layout-container.page-width .layout-item-container > .widget:last-child,
.layout-container.page-width .layout-item-container > .mfe-edit-container > .widget:last-child {
  margin-bottom: 0px;
}
.layout-sidebar {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout-sidebar > .main {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: var(--main-sidebar-spacing, 80px);
  padding: 24px;
  z-index: 100;
  background: white;
}
.layout-sidebar.main-widget-stretch > .main {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.layout-sidebar.main-widget-stretch > .main .layout-item-container {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.layout-sidebar > .main > .layout-item-container {
  /*.display-flex();
	.flex-direction(column);*/
  display: block;
}
.layout.layout-sidebar > .layout-item.sidebar {
  flex-basis: 320px;
  -webkit-flex-basis: 320px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  padding: var(--padding, 0) !important;
  z-index: 100;
  margin-bottom: 0;
  overflow: hidden;
}
.layout.layout-sidebar > .layout-item.sidebar .layout-item-container {
  background: none;
}
.layout.layout-sidebar .layout-item-container > .widget {
  margin-bottom: var(--widget-margin-bottom, var(--widget-spacing, 0));
}
.layout.layout-sidebar .layout-item-container > .widget:last-child {
  margin-bottom: 0px;
}
.layout-sidebar[data-sticky-sidebar="true"] > .sidebar {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  position: sticky;
  top: 0;
}
.layout-3columns {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout.layout-3columns > .layout-item {
  display: flex;
  display: -webkit-flex;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 80px;
  margin-bottom: 0px;
  padding: 24px;
  z-index: 100;
  background: none;
}
.layout.layout-3columns > .layout-item .layout-item-container {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  width: 100%;
  background: none;
}
.layout-3columns > .layout-item:last-child {
  margin-right: 0;
}
.layout-trinity {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout.layout-trinity > .left {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 32px;
  margin-bottom: 0;
  padding: 24px;
  z-index: 100;
  background: white;
}
.layout-trinity > .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 320px;
  -webkit-flex-basis: 320px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.layout-trinity > .right .layout-item:last-child {
  margin-bottom: 0;
}
.layout-trinity > .right .top {
  z-index: 100;
  margin-bottom: 32px;
}
.layout.layout-trinity > .right .bottom {
  z-index: 100;
}
.layout .layout-item {
  background: white;
  padding: 24px;
}
.layout .layout-item > h1,
.layout .layout-item-container > h1 {
  margin-bottom: 14px;
}
.layout .layout-item.no-padding,
.layout .layout-item .layout-item-container.no-padding {
  padding: 0 !important;
}
.layout .layout-item.no-margin,
.layout .layout-item .layout-item-container.no-margin {
  margin: 0 !important;
}
.layout .layout-item.no-bg {
  background: none !important;
}
.layout .layout-item-container {
  padding: 24px;
  margin-bottom: 24px;
}
.layout .layout-item.layout-grow,
.layout .layout-item .layout-item-container.layout-grow {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
.layout-2columns {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout-2columns > .layout-item .layout-item-container {
  background: none;
}
.layout-2columns > .layout-item {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 80px;
  padding: 24px;
  z-index: 100;
  background: none;
  margin-bottom: 0;
}
.layout-2columns > .layout-item.align-center-vertical {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
}
.layout-2columns > .layout-item:last-child {
  margin-right: 0;
}
.layout-pyramid-1-3 {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.layout-pyramid-1-3 .top {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.layout-pyramid-1-3 .bottom {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout-pyramid-1-3 .bottom .layout-item {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 80px;
  padding: 24px;
  z-index: 100;
  background: none;
  margin-bottom: 0;
}
.layout-pyramid-1-3 .bottom .layout-item:last-child {
  margin-right: 0;
}
.layout {
  height: var(--layout-height, auto);
}
/* Mobile */
html.mobile .layout-sidebar {
  display: block;
}
html.mobile .layout-sidebar > .main {
  margin-right: 0;
}
html.mobile .layout-sidebar > .sidebar {
  display: none;
}
html.mobile .layout {
  margin-left: 0;
  margin-right: 0;
}
html.mobile .layout-3columns {
  flex-direction: column;
  -webkit-flex-direction: column;
  height: auto;
}
html.mobile .layout.layout-3columns > .layout-item {
  margin-right: 0;
  margin-bottom: 64px;
  flex-basis: unset;
  -webkit-flex-basis: unset;
}
html.mobile .layout.layout-3columns > .layout-item:last-child {
  margin-bottom: 0;
}
html.mobile .layout-2columns {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile .layout.layout-2columns > .layout-item {
  margin-right: 0;
  flex-basis: unset;
  -webkit-flex-basis: unset;
  margin-bottom: 32px;
}
html.mobile .layout.layout-2columns > .layout-item:last-child {
  margin-bottom: 0;
}
.ui-accordion {
  background: #fafafa;
  width: 100%;
}
.ui-accordion .group .header {
  padding: 16px;
  font-weight: bold;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}
.ui-accordion .group .header svg {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 16px;
}
.ui-accordion .group .items {
  display: none;
}
.ui-accordion .group.open .items {
  display: block;
}
.ui-accordion .group:not(.open) .header .icon-open {
  display: none;
}
.ui-accordion .group.open .header .icon-open {
  display: block;
}
.ui-accordion .group:not(.open) .header .icon-closed {
  display: block;
}
.ui-accordion .group.open .header .icon-closed {
  display: none;
}
.ui-accordion .group .items {
  background: white;
}
.ui-accordion .group .items .widget.menu .content .menu {
  display: flex;
  flex-direction: column;
}
:root {
  --mobile-gutter: 16px;
}
html {
  overflow-y: scroll;
}
#page-dim {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#page-dim.show {
  opacity: 1;
  pointer-events: all;
}
#hero-widget > .widget {
  height: 100vh;
}
header#header {
  height: var(--header-height, 48px);
}
header#header > .placeholder {
  height: inherit;
}
header#header > .container {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 50000;
  height: inherit;
  background-color: var(--background-color, var(--header-background-color));
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 4px 0px;
}
header#header > .container > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  max-width: var(--page-width);
  height: 100%;
  margin: 0 auto;
}
header#header.full-width > .container > .wrapper {
  max-width: 100%;
  width: 100%;
}
header#header > .container > .wrapper .left {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  height: 100%;
}
header#header > .container .right {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
header#header > .container .right .search {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  overflow: hidden;
}
header#header > .container .search button {
  height: 100%;
}
header#header > .container .search button > div {
  padding: 0 16px;
}
header#header > .container .search button > div svg {
  font-size: var(--menu-item-font-size, 16px);
  color: var(--menu-item-font-color, var(--link-font-color));
}
header#header > .container .widget.menu li.search button > div svg {
  font-size: inherit;
  color: inherit;
}
header#header > .container .search-input-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 32px 0;
  opacity: 0;
  pointer-events: none;
}
header#header > .container .search-input-container.open {
  opacity: 1;
  pointer-events: all;
  z-index: 999999999999;
}
header#header > .container .search-input-container > .wrapper {
  display: flex;
  display: -webkit-flex;
  margin: 0 auto;
  max-width: var(--page-width);
  padding-bottom: 32px;
}
header#header > .container .search-input-container > .wrapper .widget.search-input {
  width: 100%;
}
header#header .identity {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 100%;
  margin-right: 24px;
}
header#header .identity .logo,
header#header .identity .logo > a,
header#header .identity .title {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
header#header .identity img {
  height: calc(100% - 8px);
  margin-right: 12px;
  max-height: 98px;
  max-width: 240px;
}
header#header .identity h1 {
  font-family: var(--title-font-family, "Source Sans Pro", Arial, sans-serif);
  font-size: var(--title-font-size, 24px);
  color: var(--title-font-color, black);
  font-weight: var(--title-font-weight, 900);
  text-transform: var(--title-font-transform, uppercase);
}
header#header .identity h1 a {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  text-transform: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-style: inherit;
}
header#header .wrapper nav {
  height: 100%;
}
header#header .wrapper nav ul {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
header#header .left .widget.menu,
header#header .left .widget.menu .content,
header#header .right .widget.menu,
header#header .right .widget.menu .content {
  height: 100%;
}
header#header .left .menu-left,
header#header .right .menu-right {
  height: 100%;
}
header#header .wrapper nav ul li.item {
  display: block;
}
header#header .wrapper nav ul li.item.icon svg {
  font-size: 16px;
  margin-right: 6px;
}
header#header .wrapper nav ul li.item a,
header#header .wrapper nav ul li > button > div {
  display: flex;
  text-transform: uppercase;
  height: 100%;
  align-items: center;
  padding: 0 12px;
  /* Use H3 as fallback */
  font-family: var(--menu-item-font-family, var(--h3-font-family));
  color: var(--menu-item-font-color, var(--h3-font-color));
  font-size: var(--menu-item-font-size, var(--h3-font-size));
  text-transform: var(--menu-item-text-transform, var(--h3-text-transform));
  line-height: var(--menu-item-line-height, var(--h3-line-height));
  font-weight: var(--menu-item-font-weight, var(--h3-font-weight));
  font-style: var(--menu-item-font-style, var(--h3-font-style));
}
header#header .wrapper nav ul li.search-input > div {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 100%;
}
header#header .wrapper nav ul li.item:not(.selected) a:hover,
header#header .wrapper nav ul li:not(.selected) > button > div:hover {
  color: #ff0032;
  /* Use normal item, then H3 as fallback */
  font-family: var(--menu-item-hover-font-family, var(--menu-item-font-family, var(--h3-font-family)));
  color: var(--menu-item-hover-font-color, var(--menu-item-font-color, var(--h3-font-color)));
  font-size: var(--menu-item-hover-font-size, var(--menu-item-font-size, var(--h3-font-size)));
  text-transform: var(--menu-item-hover-text-transform, var(--menu-item-text-transform, var(--h3-text-transform)));
  line-height: var(--menu-item-hover-line-height, var(--menu-item-line-height, var(--h3-line-height)));
  font-weight: var(--menu-item-hover-font-weight, var(--menu-item-font-weight, var(--h3-font-weight)));
  font-style: var(--menu-item-hover-font-style, var(--menu-item-font-style, var(--h3-font-style)));
}
header#header .wrapper nav ul li.selected {
  /* box-shadow: 0px -3px 0px 0px rgb(255, 0, 50) inset; */
}
header#header .wrapper nav ul li.selected a {
  /* Use normal item, then H3 as fallback */
  font-family: var(--menu-item-selected-font-family, var(--menu-item-font-family, var(--h3-font-family)));
  color: var(--menu-item-selected-font-color, var(--menu-item-font-color, var(--h3-font-color)));
  font-size: var(--menu-item-selected-font-size, var(--menu-item-font-size, var(--h3-font-size)));
  text-transform: var(--menu-item-selected-text-transform, var(--menu-item-text-transform, var(--h3-text-transform)));
  line-height: var(--menu-item-selected-line-height, var(--menu-item-line-height, var(--h3-line-height)));
  font-weight: var(--menu-item-selected-font-weight, var(--menu-item-font-weight, var(--h3-font-weight)));
  font-style: var(--menu-item-selected-font-style, var(--menu-item-font-style, var(--h3-font-style)));
}
/*
  Header - Large
*/
header#header.large {
  position: relative;
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 266px;
}
header#header.large > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding-top: 32px;
}
header#footer.large .left {
  flex-grow: 0;
  -webkit-flex-grow: 0;
  justify-content: center;
  -webkit-justify-content: center;
  display: block;
  overflow: hidden;
}
header#header.large .right {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  height: 48px;
}
header#header.large .identity {
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}
header#header.large .wrapper .identity h1 {
  margin-top: 14px;
}
header#header.large .identity img {
  width: unset;
  height: unset;
  object-fit: unset;
  margin-right: 0;
  max-height: 100%;
  border-radius: 3px;
}
/*
  Header - Hero
*/
header#header.style-hero {
  height: 106px;
  position: absolute;
}
header#header.style-hero > .placeholder {
  height: 0;
}
header#header.style-hero > .container {
  background: none;
  box-shadow: none;
  transition: height 0.4s, background 0.4s;
}
header#header.style-hero > .container > .wrapper {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
body.mfe-theme-header-small header#header.style-hero > .container > .wrapper .identity img {
  max-height: calc(100% - 8px);
}
body.mfe-theme-header-small header#header.style-hero > .container {
  height: 48px;
  background-color: var(--background-color);
}
/*
  Header - Tall
*/
header#header.style-tall {
  height: 106px;
}
header#header.style-tall > .placeholder {
  height: 106px;
}
footer#footer {
  padding: 36px 0;
  background-color: #c0bdbf;
  color: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
footer#footer > .wrapper {
  display: flex;
  display: -webkit-flex;
  max-width: var(--page-width);
  margin: 0 auto;
}
footer#footer .powered-by .mfe-icon {
  margin-right: 8px;
}
footer#footer .powered-by a {
  font-size: inherit;
}
footer#footer.style-social-logos > .wrapper .menu-social > h2,
footer#footer.style-social-logos > .wrapper .logos > h2 {
  margin-bottom: 16px;
}
footer#footer.style-social-logos > .wrapper .menu-social {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
footer#footer.style-social-logos > .wrapper .menu-social ul {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon a {
  width: 48px;
  height: 48px;
  display: flex;
  display: -webkit-flex;
  font-size: 26px;
  background: rgba(93, 93, 93, 0.09);
  border-radius: 48px;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  color: #7a7a7a;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon {
  margin-right: 8px;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon:last-child {
  margin-right: 0;
}
footer#footer.style-social-logos > .wrapper .logos {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
footer#footer.style-social-logos > .wrapper .logos .links {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  align-items: center;
  -webkit-align-items: center;
}
footer#footer.style-social-logos > .wrapper .logos figure {
  margin-left: 32px;
}
footer#footer.style-social-logos > .wrapper .logos figure img {
  max-width: 120px;
  max-height: 120px;
}
footer#footer.style-social-logos > .wrapper:nth-child(2) {
  margin-top: 16px;
  font-size: 14px;
}
footer#footer.style-social-logos > .wrapper:nth-child(2) .powered-by .mfe-icon {
  margin-right: 0;
  margin-left: 4px;
}
footer#footer.style-default > .wrapper > div {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  margin-right: 32px;
}
footer#footer.style-default > .wrapper > div:last-child {
  align-items: flex-end;
  -webkit-align-items: flex-end;
  margin-right: 0;
}
footer#footer.style-default > .wrapper > div > div {
  margin-bottom: 32px;
}
footer#footer.style-default > .wrapper > div > div > h1,
footer#footer.style-default > .wrapper > div > div > h2 {
  margin-bottom: 10px;
}
footer#footer.style-default > .wrapper > div > div:last-child {
  margin-bottom: 0;
}
footer#footer.style-simple > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
}
footer#footer.style-simple .widget.menu ul.menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
footer#footer.style-simple .widget.menu ul.menu li {
  padding: 12px;
}
footer#footer.style-simple .menu-top {
  margin-bottom: 16px;
}
footer#footer.bigfoot {
  padding: 0;
  color: white;
}
footer#footer.bigfoot > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  max-width: unset;
}
footer#footer.bigfoot > .wrapper a:hover {
  opacity: 0.6;
}
footer#footer.bigfoot > .wrapper .newsletter,
footer#footer.kinder-v2 > .wrapper .newsletter {
  background-color: #fafafa;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper {
  display: flex;
  display: -webkit-flex;
  width: var(--page-width);
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  width: 100%;
  max-width: 440px;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left h2,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left h2 {
  margin-bottom: 8px;
}
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left p,
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left p {
  color: #222;
  font-size: 16px;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right form .email input,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right form .email input {
  background: white;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right form input[type="submit"],
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right form input[type="submit"] {
  background-color: #bbbbbb;
  border-color: #bbbbbb;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right form input[type="submit"]:hover,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right form input[type="submit"]:hover {
  background-color: #777777;
  border-color: #777777;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right .intro,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right .intro {
  margin-bottom: 0;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right .intro img,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right .intro img {
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translate(-50%);
  margin-left: 0;
  max-width: 120px;
  max-height: 120px;
}
footer#footer.bigfoot > .wrapper .top {
  background-color: #444;
}
footer#footer.bigfoot > .wrapper .top > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  padding: 48px 0;
}
footer#footer.bigfoot > .wrapper .top .logo {
  display: flex;
  display: -webkit-flex;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
footer#footer.bigfoot > .wrapper .top .logo img {
  max-height: 32px;
}
footer#footer.bigfoot > .wrapper .top .social {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
footer#footer.bigfoot .top .social .widget.menu ul {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
footer#footer.bigfoot .top .social .widget.menu .item a {
  padding: 0 16px;
  color: inherit;
}
footer#footer.bigfoot > .wrapper .bottom {
  background-color: #222;
}
footer#footer.bigfoot > .wrapper .bottom h2 {
  color: inherit;
  margin-bottom: 16px;
  font-size: 18px;
}
footer#footer.bigfoot > .wrapper .bottom > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  padding-top: 64px;
}
footer#footer.bigfoot > .wrapper .bottom > .powered-by {
  max-width: var(--page-width);
  margin: 0 auto;
  padding-bottom: 64px;
  text-align: right;
  font-size: 14px;
  margin-top: 32px;
}
footer#footer.bigfoot > .wrapper .bottom > .powered-by .mfe-icon {
  margin-right: 8px;
}
footer#footer.bigfoot > .wrapper .bottom > .powered-by a {
  font-size: inherit;
}
footer#footer.bigfoot > .wrapper .bottom .column {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  margin-right: 32px;
}
footer#footer.bigfoot > .wrapper .bottom .column:last-child {
  margin-right: 0;
}
footer#footer.bigfoot .bottom .widget.menu .item a {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  color: inherit;
}
footer#footer.bigfoot .top .social .widget.menu .item.icon a svg {
  font-size: 32px;
}
section#content.with-background {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0)), var(--background-image);
  background-attachment: fixed, var(--background-attachment, fixed);
  background-position: 0 0, var(--background-position, 50% 50%);
  background-size: 100% 200px, var(--background-size, cover);
  background-repeat: no-repeat;
  background-color: var(--background-color);
}
section.thin > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
}
section.thin.bg-1 {
  background-color: #032c3a;
  color: white;
}
section.thin.bg-2 {
  background-color: #a7a7a7;
  color: white;
}
section.thin.bg-3 {
  background-color: #1d1d1d;
  color: white;
}
.bg-4 {
  background-color: #a9caf5;
}
b.mfe-menu-icon {
  display: block;
  width: 21px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
b.mfe-menu-icon > span,
b.mfe-menu-icon::after,
b.mfe-menu-icon::before {
  border-radius: 0;
  content: "";
  display: block;
  height: 2px;
  margin: 5px 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  width: 100%;
  background-color: #ffffff;
}
b.mfe-menu-icon > span {
  text-indent: -9999px;
}
header#header.menu-open .right b.mfe-menu-icon::before {
  -webkit-transform: rotate(45deg) translate3d(5px, 5px, 0);
  transform: rotate(45deg) translate3d(5px, 5px, 0);
}
header#header.menu-open .right b.mfe-menu-icon::after {
  -webkit-transform: rotate(-45deg) translate3d(5px, -5px, 0);
  transform: rotate(-45deg) translate3d(5px, -5px, 0);
}
header#header.menu-open .right b.mfe-menu-icon > span {
  opacity: 0;
}
.ui-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-regular-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-italic-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-italic-webfont.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-medium-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-medium-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-mediumitalic-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-mediumitalic-webfont.woff') format('woff');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-bolditalic-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-bolditalic-webfont.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-bold-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-light-webfont.eot');
  src: url('/static/webfonts/europa/europa-light-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-light-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-light-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-light-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-light-webfont.svg#europalight') format('svg');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-lightitalic-webfont.eot');
  src: url('/static/webfonts/europa/europa-lightitalic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-lightitalic-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-lightitalic-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-lightitalic-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-lightitalic-webfont.svg#europalightitalic') format('svg');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-regular-webfont.eot');
  src: url('/static/webfonts/europa/europa-regular-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-regular-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-regular-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-regular-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-regular-webfont.svg#europaregular') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-regularitalic-webfont.eot');
  src: url('/static/webfonts/europa/europa-regularitalic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-regularitalic-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-regularitalic-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-regularitalic-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-regularitalic-webfont.svg#europaitalic') format('svg');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-bold-webfont.eot');
  src: url('/static/webfonts/europa/europa-bold-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-bold-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-bold-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-bold-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-bold-webfont.svg#europabold') format('svg');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-bolditalic-webfont.eot');
  src: url('/static/webfonts/europa/europa-bolditalic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-bolditalic-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-bolditalic-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-bolditalic-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-bolditalic-webfont.svg#europabolditalic') format('svg');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Bold.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Bold.woff') format('woff'), url('/static/webfonts/futura/Futura-Bold.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Bold.svg#webfont') format('svg');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Bold-Italic.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Bold-Italic.woff') format('woff'), url('/static/webfonts/futura/Futura-Bold-Italic.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Bold-Italic.svg#webfont') format('svg');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Book.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Book.woff') format('woff'), url('/static/webfonts/futura/Futura-Book.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Book.svg#webfont') format('svg');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Book-Italic.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Book-Italic.woff') format('woff'), url('/static/webfonts/futura/Futura-Book-Italic.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Book-Italic.svg#webfont') format('svg');
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Light.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Light.woff') format('woff'), url('/static/webfonts/futura/Futura-Light.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Light.svg#webfont') format('svg');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Light-Italic.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Light-Italic.woff') format('woff'), url('/static/webfonts/futura/Futura-Light-Italic.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Light-Italic.svg#webfont') format('svg');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Medium.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Medium.woff') format('woff'), url('/static/webfonts/futura/Futura-Medium.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Medium.svg#webfont') format('svg');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Medium-Italic.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Medium-Italic.woff') format('woff'), url('/static/webfonts/futura/Futura-Medium-Italic.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Medium-Italic.svg#webfont') format('svg');
  font-weight: 500;
  font-style: italic;
}
header#header.standard-header-v2 {
  height: var(--header-height, 48px);
}
header#header.standard-header-v2 .identity .logo.hide {
  display: none;
}
header#header.standard-header-v2 .identity .title a,
header#header.standard-header-v2 .identity .sub-title a {
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}
header#header.standard-header-v2 .identity {
  margin-right: 8px;
}
header#header.standard-header-v2 .identity .title {
  font-family: var(--title-font-family);
  color: var(--title-font-color);
  font-size: var(--title-font-size);
  text-transform: var(--title-text-transform);
  line-height: var(--title-line-height);
  font-weight: var(--title-font-weight);
  font-style: var(--title-font-style);
}
header#header.standard-header-v2 .identity .sub-title {
  font-family: var(--sub-title-font-family);
  color: var(--sub-title-font-color);
  font-size: var(--sub-title-font-size);
  text-transform: var(--sub-title-text-transform);
  line-height: var(--sub-title-line-height);
  font-weight: var(--sub-title-font-weight);
  font-style: var(--sub-title-font-style);
}
body > .default-body-v2 {
  background-color: var(--body-background-color);
  background-image: var(--body-background-image);
}
header#header[data-setting-width="full-width"] > .container > .wrapper {
  max-width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
:root {
  --body-font-family: 'Roboto Condensed';
  --body-font-color: #373636;
  --body-font-size: 17px;
  --body-line-height: 1.40;
  --body-font-weight: 400;
  --link-font-family: 'Roboto Condensed';
  --link-font-color: #ff6501;
  --link-font-size: 17px;
  --link-line-height: 1.40;
  --link-font-weight: 600;
  --link-hover-font-family: 'Roboto Condensed';
  --link-hover-font-color: rgba(255, 101, 1, 0.78);
  --link-hover-font-size: 17px;
  --link-hover-line-height: 1.40;
  --link-hover-font-weight: 600;
  --h1-font-family: 'Roboto Condensed';
  --h1-font-color: #000000;
  --h1-font-size: 40px;
  --h1-line-height: 1.00;
  --h1-font-weight: 900;
  --h2-font-family: 'Roboto Condensed';
  --h2-font-color: black;
  --h2-font-size: 34px;
  --h2-line-height: 1.00;
  --h2-font-weight: 900;
  --h3-font-family: 'Roboto Condensed';
  --h3-font-size: 30px;
  --h3-line-height: 1.20;
  --h3-font-weight: 700;
  --wc-title-font-family: 'Roboto Condensed';
  --wc-title-font-color: #323232;
  --wc-title-font-size: 20px;
  --wc-title-text-transform: none;
  --wc-title-line-height: 1.20;
  --wc-title-font-weight: 600;
  --wc-title-fullimage-font-family: 'Roboto Condensed';
  --wc-title-fullimage-font-color: #ffffff;
  --wc-title-fullimage-font-size: 40px;
  --wc-title-fullimage-line-height: 1.20;
  --wc-title-fullimage-font-weight: 800;
}
h1 {
  font-family: var(--h1-font-family);
  color: var(--h1-font-color);
  font-size: var(--h1-font-size);
  text-transform: var(--h1-text-transform);
  line-height: var(--h1-line-height);
  font-weight: var(--h1-font-weight);
  font-style: var(--h1-font-style);
}
h2 {
  font-family: var(--h2-font-family);
  color: var(--h2-font-color);
  font-size: var(--h2-font-size);
  text-transform: var(--h2-text-transform);
  line-height: var(--h2-line-height);
  font-weight: var(--h2-font-weight);
  font-style: var(--h2-font-style);
}
h3 {
  font-family: var(--h3-font-family);
  color: var(--h3-font-color);
  font-size: var(--h3-font-size);
  text-transform: var(--h3-text-transform);
  line-height: var(--h3-line-height);
  font-weight: var(--h3-font-weight);
  font-style: var(--h3-font-style);
}
html,
body {
  font-family: var(--body-font-family);
  color: var(--body-font-color);
  font-size: var(--body-font-size);
  text-transform: var(--body-text-transform);
  line-height: var(--body-line-height);
  font-weight: var(--body-font-weight);
  font-style: var(--body-font-style);
}
a {
  font-family: var(--link-font-family);
  color: var(--link-font-color);
  font-size: var(--link-font-size);
  text-transform: var(--link-text-transform);
  line-height: var(--link-line-height);
  font-weight: var(--link-font-weight);
  font-style: var(--link-font-style);
}
a:hover {
  /* Fallback to normal link */
  font-family: var(--link-font-family);
  color: var(--link-font-color);
  font-size: var(--link-font-size);
  text-transform: var(--link-text-transform);
  line-height: var(--link-line-height);
  font-weight: var(--link-font-weight);
  font-style: var(--link-font-style);
  font-family: var(--link-hover-font-family);
  color: var(--link-hover-font-color);
  font-size: var(--link-hover-font-size);
  text-transform: var(--link-hover-text-transform);
  line-height: var(--link-hover-line-height);
  font-weight: var(--link-hover-font-weight);
  font-style: var(--link-hover-font-style);
}
::-webkit-input-placeholder {
  color: var(--input-placeholder-font-color);
}
::-moz-placeholder {
  color: var(--input-placeholder-font-color);
}
:-ms-input-placeholder {
  color: var(--input-placeholder-font-color);
}
:-moz-placeholder {
  color: var(--input-placeholder-font-color);
}
.widget.cms-fragments .fragment.cms-text p {
  margin-bottom: 16px;
}
.widget.cms-fragments .fragment.cms-text h1 {
  margin-top: 12px;
  margin-bottom: 10px;
  font-size: 22px;
}
.widget.cms-fragments .fragment.cms-text h2 {
  margin-top: 10px;
  margin-bottom: 20px;
}
.widget.cms-fragments .fragment.cms-text h3 {
  margin-top: 6px;
  margin-bottom: 16px;
}
.widget.cms-fragments .fragment.cms-quote {
  margin-top: 12px;
  margin-bottom: 24px;
  font-size: 26px;
  color: #777;
  line-height: 1.6;
  padding-left: 60px;
  padding-right: 60px;
  font-style: italic;
}
.widget.cms-fragments .fragment.cms-image {
  margin-top: 12px;
  margin-bottom: 24px;
}
.widget.cms-fragments .fragment.cms-image img {
  max-width: 100%;
}
html.desktop header#header .right .mobile-menu {
  display: none;
}
html.desktop header#header .right .mobile-search {
  display: none;
}
html.mobile header#header .right .widget.menu {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  height: auto;
  background: white;
  display: none;
}
html.mobile header#header.style-tall {
  height: 64px;
}
html.mobile header#header > .container > .wrapper .right .search-input-container {
  padding-top: 0;
  padding-bottom: 0;
}
html.mobile header#header > .container > .wrapper .right .search-input-container .widget.search-input .input .icon {
  display: none;
}
html.mobile header#header > .container > .wrapper .left {
  padding-left: 10px;
}
html.mobile header#header > .container > .wrapper .right {
  padding-right: 10px;
}
html.mobile header#header.style-tall > .container > .wrapper {
  position: relative;
}
html.mobile header#header > .container > .wrapper .right .search-input-container > .wrapper {
  padding-left: 16px;
  padding-right: 16px;
}
html.mobile header#header .right .mobile-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: white;
  height: auto;
  padding: 0 16px 16px 16px;
  display: none;
}
html.mobile header#header .right .mobile-menu,
header#header.classy .mobile-menu {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
html.mobile header#header .right .mobile-menu button > div,
header#header.classy .mobile-menu button > div {
  padding: 12px;
  font-size: 24px;
}
html.mobile header#header.search-open .right .mobile-search {
  display: flex;
  display: -webkit-flex;
}
html.mobile header#header.menu-open .right .widget.menu {
  display: block;
}
html.mobile header#header .right .widget.menu ul {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header .right .widget.menu ul li {
  border-bottom: 1px solid #eee;
}
html.mobile header#header .right .widget.menu ul li:last-child {
  border-bottom: none;
}
html.mobile header#header .right .widget.menu ul li a {
  padding: 12px;
}
html.mobile header#header > .container > .wrapper .right .search button > div {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
  padding: 12px;
  font-size: 24px;
}
html.mobile header#header > .container > .wrapper .right .search button > div svg {
  font-size: inherit;
  color: inherit;
}
html.mobile footer#footer.style-social-logos > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  margin-left: 16px;
  margin-right: 16px;
  text-align: center;
}
html.mobile footer#footer.style-social-logos > .wrapper .menu-social {
  margin-bottom: 32px;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos figure {
  margin-bottom: 16px;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos figure img {
  max-height: unset;
  width: 100%;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos .links figure:first-child {
  margin-left: 0;
}
html.mobile footer#footer.bigfoot {
  padding: 0;
  color: white;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom .column {
  min-width: 34%;
  margin-bottom: 32px;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom .column:nth-child(2) {
  margin-right: 0;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom .column:nth-child(3),
html.mobile footer#footer.bigfoot > .wrapper .bottom .column:nth-child(4) {
  margin-bottom: 0;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom > .wrapper {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding: 32px 16px 0 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom > .powered-by {
  text-align: left;
  padding: 0 16px 16px 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .top > .wrapper {
  padding: 32px 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter {
  padding-left: 16px;
  padding-right: 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  width: 100%;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left,
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right {
  width: 100%;
  max-width: 100%;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right {
  margin-left: 0;
  margin-bottom: 64px;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left p,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left p {
  margin-bottom: 16px;
}
footer .logo-svg-ttl {
  height: 1.8em;
  width: auto;
  vertical-align: middle;
  margin-bottom: 2px;
}
footer#footer .powered-by a {
  font-size: inherit;
  color: inherit;
}
footer#footer.footer-coral {
  padding: 0;
}
footer#footer.footer-coral > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  max-width: 100%;
}
footer.footer-coral .top > .wrapper,
footer.footer-coral .bottom > .wrapper,
footer.footer-coral .powered-by > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
}
footer.footer-coral .top,
footer.footer-coral .bottom,
footer.footer-coral .powered-by {
  padding: 32px 0;
}
footer.footer-coral .top > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
footer.footer-coral .top > .wrapper .left,
footer.footer-coral .top > .wrapper .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
footer.footer-coral .top > .wrapper .left {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
footer.footer-coral .top > .wrapper .left .newsletter-description {
  margin-bottom: 8px;
}
footer.footer-coral .top > .wrapper .right {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
footer.footer-coral #mc-embedded-subscribe-form {
  display: flex;
  display: -webkit-flex;
}
footer.footer-coral .widget.menu ul li.icon a {
  width: 52px;
  height: 52px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-left: 16px;
  border-radius: 99px;
  font-size: 24px;
}
footer#footer.large {
  padding: 0;
  color: #ffffff;
  background-color: #161616;
  margin-top: 84px;
}
footer#footer.large .logos {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}
footer#footer.large .logos a {
  margin-right: 64px;
}
footer#footer.large .logos img {
  height: 80px;
}
footer#footer.large .logos a:last-child {
  margin-right: 0;
}
footer#footer.large > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  max-width: 100%;
}
footer#footer.large .menus-row {
  display: flex;
  display: -webkit-flex;
  max-width: var(--page-width);
  width: 100%;
}
footer#footer.large .menus-row .menu-social {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: var(--page-width);
}
footer#footer.large .menus-row .menu-social ul.menu {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
footer#footer.large .menu-social {
  max-width: var(--page-width);
}
footer#footer.large .menu-social ul.menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  padding-top: 72px;
  padding-bottom: 32px;
}
footer#footer.large .menu-social ul.menu li a {
  padding-left: 16px;
  padding-right: 16px;
}
footer#footer.large .menu-top {
  max-width: var(--page-width);
  width: 100%;
}
footer#footer.large .menu-top ul.menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  padding-top: 24px;
  padding-bottom: 24px;
}
footer#footer.large .menu-top ul.menu li a {
  padding-left: 16px;
  padding-right: 16px;
}
footer#footer.large .menus-row > .menu-top {
  width: auto;
  max-width: unset;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
footer#footer.large .contact {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  max-width: var(--page-width);
  width: 100%;
  color: #808080;
  font-size: 14px;
  line-height: 1.575;
  font-weight: 500;
  padding: 32px 0;
}
footer#footer.large .contact .left,
footer#footer.large .contact .right {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
footer#footer.large .contact .left {
  margin-right: 84px;
}
footer#footer.large .contact .right {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
footer#footer.large .bottom {
  width: 100%;
  padding: 16px 0;
  background: black;
  font-size: 12px;
  font-weight: 100;
  color: #808080;
}
footer#footer.large .bottom > .wrapper {
  max-width: var(--page-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li:not(.icon) {
  margin-right: 14px;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon {
  margin-right: 10px;
}
html.mobile footer.footer-coral .top > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile footer.footer-coral .top > .wrapper .left {
  align-items: center;
  -webkit-align-items: center;
  padding: 0 16px;
  margin-bottom: 32px;
  flex-grow: unset;
  -webkit-flex-grow: unset;
  flex-shrink: unset;
  -webkit-flex-shrink: unset;
  flex-basis: unset;
  -webkit-flex-basis: unset;
}
html.mobile footer.footer-coral .top > .wrapper .right {
  align-items: center;
  -webkit-align-items: center;
  padding: 0 16px;
  flex-grow: unset;
  -webkit-flex-grow: unset;
  flex-shrink: unset;
  -webkit-flex-shrink: unset;
  flex-basis: unset;
  -webkit-flex-basis: unset;
}
html.mobile footer.footer-coral .powered-by {
  padding: 32px 16px;
  text-align: center;
}
footer.footer-coral .widget.newsletter-signup {
  width: 100%;
}
footer.footer-coral .widget.newsletter-signup .content.mailchimp-email .email {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
footer.footer-coral .widget.newsletter-signup .content.mailchimp-email .email input[type="email"] {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  width: 100%;
}
#footer.kinder-v2 {
  padding: 0;
}
#footer.kinder-v2.kinder:not(.with-bottom-bar) {
  height: 72px !important;
}
#footer.kinder-v2 h2 {
  font-size: 18px;
  color: white;
  line-height: 1.8;
  font-weight: 700;
}
#footer.kinder-v2 > .wrapper {
  max-width: unset;
  flex-direction: column;
}
#footer.kinder-v2 .top > .wrapper,
#footer.kinder-v2 .bottom > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
}
#footer.kinder-v2 .top {
  background-color: #222;
}
#footer.kinder-v2 .top .column.mobile {
  display: none;
}
#footer.kinder-v2 .top .column .widget.menu ul li a {
  padding: 2px 0;
  display: inline-block;
  font-weight: 500;
}
#footer.kinder-v2 .top .social .widget.menu ul li a {
  font-size: 20px;
}
#footer.kinder-v2 .top > .wrapper {
  padding: 80px 0;
  display: flex;
}
#footer.kinder-v2 .top > .wrapper > * {
  flex-basis: 0%;
  flex-grow: 1;
  flex-shrink: 1;
}
#footer.kinder-v2 .bottom {
  background-color: #444;
}
#footer.kinder-v2 .bottom > .wrapper {
  padding: 48px 0;
  display: flex;
  align-items: center;
}
#footer.kinder-v2 .bottom .logo {
  margin-right: 42px;
}
#footer.kinder-v2 .bottom .logo img {
  height: 30px;
}
#footer.kinder-v2 .bottom .note {
  color: white;
  font-size: 12px;
  line-height: 1.8;
}
#footer.kinder-v2 .bottom .note a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
#footer.kinder-v2 .bottom .powered-by {
  color: white;
  font-size: 13px;
  margin-left: auto;
}
#footer.kinder-v2 .bottom .powered-by svg {
  height: 24px;
}
@media (max-width: 1200px) {
  #footer.kinder-v2 .bottom > .wrapper {
    flex-direction: column;
  }
  #footer.kinder-v2 .bottom .logo {
    margin-right: unset;
  }
  #footer.kinder-v2 .bottom .powered-by {
    margin-left: unset;
  }
  #footer.kinder-v2 .bottom .note {
    padding: 32px 0;
  }
}
@media (max-width: 1062px) {
  #footer.kinder-v2 > .wrapper {
    flex-direction: column;
  }
  #footer.kinder-v2 .top > .wrapper {
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
    max-width: unset;
  }
  #footer.kinder-v2 .bottom > .wrapper {
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 786px) {
  #footer.kinder-v2 .top > .wrapper {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 360px;
    flex-wrap: wrap;
  }
  #footer.kinder-v2 .top > .wrapper > * {
    min-width: 160px;
  }
  #footer.kinder-v2 .top .column {
    margin-bottom: 32px;
  }
  #footer.kinder-v2 .top .column.mobile {
    display: block;
  }
  #footer.kinder-v2 .top .social h2 {
    display: none;
  }
  #footer.kinder-v2 .top .social .widget.menu ul {
    justify-content: center;
  }
  #footer.kinder-v2 .bottom .note span {
    display: none;
  }
}
@media (max-width: 960px) {
  footer#footer.large .contact,
  footer#footer.large .menus-row,
  footer#footer.large .bottom > .wrapper {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  footer#footer.large .bottom > .wrapper {
    align-items: center;
    -webkit-align-items: center;
  }
  footer#footer.large .menus-row .menu-social ul.menu,
  footer#footer.large .menus-row .menu-top ul.menu {
    justify-content: center;
    -webkit-justify-content: center;
  }
  footer#footer.large .menus-row > .menu-top {
    justify-content: center;
    -webkit-justify-content: center;
  }
  footer#footer.large .contact {
    padding: 0 0 32px 0;
  }
  footer#footer.large .contact .left {
    margin-right: 0;
    padding: 0 16px;
    margin-bottom: 24px;
  }
  footer#footer.large .contact .right {
    justify-content: center;
    -webkit-justify-content: center;
    padding: 0 16px;
  }
  footer#footer.large .contact .left,
  footer#footer.large .contact .right {
    flex-basis: unset;
    -webkit-flex-basis: unset;
    flex-grow: unset;
    -webkit-flex-grow: unset;
    flex-shrink: unset;
    -webkit-flex-shrink: unset;
  }
  footer#footer.bigfoot > .wrapper .top .logo,
  footer#footer.kinder-v2 > .wrapper .top .logo {
    display: flex;
    display: -webkit-flex;
    flex-grow: unset;
    -webkit-flex-grow: unset;
    flex-basis: unset;
    -webkit-flex-basis: unset;
    justify-content: center;
    -webkit-justify-content: center;
    margin-bottom: 32px;
  }
  footer#footer.bigfoot .top .social .widget.menu ul,
  footer#footer.kinder-v2.top .social .widget.menu ul {
    justify-content: center;
    -webkit-justify-content: center;
  }
  footer#footer.bigfoot > .wrapper .top > .wrapper,
  footer#footer.kinder-v2 > .wrapper .top > .wrapper {
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
  }
}
header#header.classy .left .menu {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
  width: 100%;
}
header#header.classy > .menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 420px;
  background: #383838;
  z-index: 50000;
  transform: translateX(-420px);
  transition: transform 0.2s;
}
header#header.classy .menu-left {
  position: absolute;
  right: 50%;
  transform: translateX(-50px);
}
header#header.classy .menu-right {
  position: absolute;
  left: 50%;
  transform: translateX(50px);
}
header#header.classy > .container > .wrapper .middle {
  width: 100%;
}
header#header.classy.menu-open b.mfe-menu-icon::before {
  -webkit-transform: rotate(45deg) translate3d(5px, 5px, 0);
  transform: rotate(45deg) translate3d(5px, 5px, 0);
}
header#header.classy.menu-open b.mfe-menu-icon::after {
  -webkit-transform: rotate(-45deg) translate3d(5px, -5px, 0);
  transform: rotate(-45deg) translate3d(5px, -5px, 0);
}
header#header.classy.menu-open b.mfe-menu-icon > span {
  opacity: 0;
}
html.desktop.header-menu-open {
  overflow: hidden;
}
html.desktop header#header.classy > .menu,
html.desktop header#header.classy > .container,
html.desktop section#content,
html.desktop footer#footer {
  transition: transform 0.2s;
}
header#header .identity .logo.hide {
  display: none;
}
html.desktop.header-menu-open header#header.classy > .menu {
  transform: translateX(0);
}
html.desktop.header-menu-open header#header.classy > .container,
html.desktop.header-menu-open section#content,
html.desktop.header-menu-open footer#footer {
  transform: translateX(420px);
}
header#header.kinder {
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 142px !important;
}
header#header.kinder:not(.with-bottom-bar) {
  height: 56px !important;
}
header#header.kinder .mobile h2 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
header#header.kinder > .container .mobile .widget.menu .item a {
  padding: 8px 0;
  font-size: 14px;
}
header#header.kinder > .container .mobile .widget.menu .item:not(.selected):not(:hover) a {
  color: #9b9b9b;
}
html.mobile header#header.kinder .right .widget.menu ul li {
  border-bottom: none;
}
html.mobile header#header.kinder .mobile .left .widget.menu ul,
html.mobile header#header.kinder .mobile .right .widget.menu ul {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header.kinder {
  height: 124px !important;
}
html.mobile header#header.kinder:not(.with-bottom-bar) {
  height: 56px !important;
}
html.mobile header#header.kinder .container .wrapper > .bottom .search {
  display: none;
}
html.mobile header#header.kinder b.mfe-menu-icon > span,
html.mobile header#header.kinder b.mfe-menu-icon::after,
html.mobile header#header.kinder b.mfe-menu-icon::before {
  background-color: #222222;
}
html.mobile header#header.kinder.with-bottom-bar > .container .right .search button > div svg {
  color: #222222;
}
header#header.kinder > .container > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  max-width: unset;
}
html.mobile header#header.kinder > .container > .wrapper {
  height: auto;
}
header#header.kinder .top,
header#header.kinder .bottom {
  display: flex;
  display: -webkit-flex;
  width: 100%;
}
header#header.kinder .top > .wrapper,
header#header.kinder .bottom > .wrapper {
  display: flex;
  display: -webkit-flex;
  width: 100%;
}
header#header.kinder .bottom > .wrapper {
  align-items: center;
  -webkit-align-items: center;
}
header#header.kinder:not(.with-bottom-bar) > .container > .wrapper .identity img {
  filter: none;
}
html.mobile header#header.kinder > .container > .wrapper > .bottom .widget.menu .item a {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
html.mobile header#header.kinder > .container > .wrapper > .bottom > .wrapper {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
header#header.kinder .top {
  height: 56px;
}
header#header.kinder .bottom {
  height: 86px;
}
html.mobile header#header.kinder .bottom {
  height: 68px;
}
html.mobile header#header.kinder .mobile .bottom {
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
html.mobile header#header.kinder > .container > .wrapper > .bottom {
  overflow-y: scroll;
}
html.mobile header#header.kinder > .container .right .search {
  display: flex;
  display: -webkit-flex;
}
header#header.kinder .top {
  background: #fafafa;
  border-bottom: 1px solid #eaeaea;
}
header#header.kinder .bottom {
  border-bottom: 1px solid #eaeaea;
}
header#header.kinder:not(.with-bottom-bar) .top {
  background: white;
  border-bottom: none;
}
html.cookie-hide-kinder-header-explanation header#header .quick-explanation {
  display: none;
}
html.mobile header#header.kinder .container > .wrapper > .mobile .right .widget.menu {
  position: static;
}
html.mobile header#header.kinder .container > .wrapper > .mobile .left,
html.mobile header#header.kinder .container > .wrapper > .mobile .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  padding-top: 48px;
  padding-left: 24px;
}
header#header .quick-explanation {
  height: 48px;
  background: #fafafa;
  color: #242424;
  font-size: 12px;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}
header#header .quick-explanation img {
  height: 14px;
  margin-right: 8px;
}
html.mobile header#header .quick-explanation img {
  position: absolute;
  left: 16px;
  bottom: 18px;
}
html.mobile header#header .quick-explanation {
  height: 94px;
}
header#header .quick-explanation .wrapper {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  max-width: var(--page-width);
  margin: 0 auto;
  position: relative;
  height: 100%;
}
html.mobile header#header .quick-explanation .wrapper {
  text-align: center;
  padding: 12px 16px 0 16px;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
header#header .quick-explanation .hide {
  position: absolute;
  right: 0;
  color: #bbb;
  font-weight: 600;
  padding-top: 16px;
  padding-left: 16px;
  padding-bottom: 16px;
}
html.mobile header#header .quick-explanation .hide {
  padding-top: 12px;
  padding-left: 16px;
  padding-bottom: 16px;
  padding-right: 24px;
  bottom: 0;
}
header#header .quick-explanation a {
  display: none;
}
html.mobile header#header .quick-explanation a {
  position: absolute;
  right: 0;
  color: #ff005e;
  bottom: 14px;
  left: 0;
  font-size: 12px;
  z-index: 0;
  display: block;
}
header#header .quick-explanation .hide svg {
  margin-left: 8px;
}
html.mobile:not(.cookie-hide-kinder-header-explanation) header#header.kinder {
  /*height: 218px !important;*/
}
html.desktop header#header > .container .top .widget.menu .item.selected a {
  box-shadow: 0 -2px 0px 0px #ff005e inset !important;
}
header#header.kinder .container .wrapper > .mobile {
  display: none;
  flex-direction: column;
  -webkit-flex-direction: column;
  position: fixed;
  left: 0;
  top: 56px;
  right: 0;
  height: auto;
  bottom: 0;
  background: #ffffff;
}
header#header.kinder.menu-open .container .wrapper > .mobile {
  display: flex;
  display: -webkit-flex;
  z-index: 9999999999;
}
html.desktop header#header.kinder.with-bottom-bar > .container .top .search button {
  display: none;
}
html.mobile header#header.kinder.menu-open .container > .wrapper > .top .right .widget.menu {
  display: none;
}
header#header > .container .search-input-container {
  border-top: 1px solid #eaeaea;
}
header#header.kinder .container .wrapper > .mobile {
  border-top: 1px solid #eaeaea;
}
html.mobile:not(.cookie-hide-kinder-header-explanation) header#header.kinder:not(.with-bottom-bar) {
  height: 56px !important;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu,
html.mobile header#header.kinder .mobile .bottom .widget.menu .content,
html.mobile header#header.kinder .mobile .bottom .widget.menu nav,
html.mobile header#header.kinder .mobile .bottom .widget.menu ul {
  width: 100%;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu ul li.icon {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu ul li.item.icon svg {
  font-size: 24px;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu ul li.item.icon a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
header#header.network-header > .container {
  transition: transform 0.25s;
}
body.mfe-theme-header-small header#header.network-header > .container {
  transform: translateY(-48px);
}
header#header.network-header > .container > .network > .wrapper,
header#header.network-header > .container > .site > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  max-width: var(--page-width);
  height: 100%;
  margin: 0 auto;
}
header#header.network-header.full-width > .container > .network > .wrapper,
header#header.network-header.full-width > .container > .site > .wrapper {
  max-width: 100%;
}
header#header.network-header > .container {
  flex-direction: column;
  -webkit-flex-direction: column;
}
header#header.network-header > .container > .network > .wrapper .left,
header#header.network-header > .container > .site > .wrapper .left {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  height: 100%;
}
header#header.network-header > .container > .network > .wrapper .right,
header#header.network-header > .container > .site > .wrapper .right {
  display: flex;
  display: -webkit-flex;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  height: 100%;
}
header#header.network-header > .container > .network {
  height: 48px;
  background-color: var(--background-color, transparent);
}
header#header.network-header .site .mobile-network {
  background-color: var(--background-color, transparent);
}
header#header.network-header > .container > .network .left {
  font-family: var(--network-title-font-family);
  color: var(--network-title-font-color);
  font-size: var(--network-title-font-size);
  line-height: var(--network-title-line-height);
  text-transform: var(--network-title-text-transform);
  font-weight: var(--network-title-font-weight);
}
header#header.network-header > .container > .site {
  height: 104px;
}
header#header.network-header .mobile-network {
  display: none;
}
header#header.network-header .site .right .widget.menu {
  position: relative;
  top: unset;
  background: none;
  width: 100%;
}
header#header.network-header .site .right .menu-container {
  position: relative;
  height: 100%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header.network-header .network {
  display: none;
}
html.mobile body.mfe-theme-header-small header#header.network-header > .container {
  transform: translateY(0);
}
html.mobile header#header.network-header .right .search-input-container > .wrapper {
  padding-left: 16px;
  padding-right: 16px;
}
html.mobile header#header.network-header .right .search-input-container {
  padding-top: 0;
  padding-bottom: 0;
}
html.mobile header#header.network-header .right .search-input-container .widget.search-input .input .icon {
  display: none;
}
html.mobile header#header.network-header {
  height: 64px;
}
html.mobile header#header.network-header > .container > .site {
  height: 100%;
}
html.mobile header#header.network-header .site > .wrapper > .left {
  padding-left: 10px;
}
html.mobile header#header.network-header .site > .wrapper > .right {
  padding-right: 10px;
}
html.mobile header#header.network-header .mobile-network {
  display: flex;
  display: -webkit-flex;
}
html.mobile header#header.network-header .mobile-network > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul {
  flex-direction: row;
  -webkit-flex-direction: row;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li {
  border-bottom: none;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li {
  border-right: 1px solid #777;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li:last-child {
  border-right: none;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item a,
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item.selected a {
  text-decoration: none;
  text-align: center;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item.selected a {
  box-shadow: 0 -3px 0px 0px #ff005e inset;
}
html.mobile header#header.network-header .site .right .menu-container {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  height: auto;
  background: white;
  display: none;
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header.network-header.menu-open .site .right .menu-container {
  display: flex;
  display: -webkit-flex;
}
header#header.kinder-v4 {
  height: 136px !important;
}
header#header.kinder-v4.kinder:not(.with-bottom-bar) {
  height: 72px !important;
}
header#header.kinder-v4 > .container .top .left .widget.menu .item a {
  padding: 0 12px;
}
header#header.kinder-v4 > .container .top .left .widget.menu .item:first-child a {
  padding-left: 0;
}
header#header.kinder-v4 .wrapper .right .user .signup {
  padding-right: 0;
}
header#header.kinder-v4 .identity {
  margin-right: 0;
}
header#header.kinder-v4 .identity .logo {
  width: 100%;
}
header#header.kinder-v4 .identity .logo > a {
  width: 100%;
  pointer-events: all;
}
header#header.kinder-v4 .top > .wrapper {
  position: relative;
  padding: 0 56px;
}
header#header > .container > .wrapper .center {
  position: absolute;
  pointer-events: none;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
  width: 120px;
}
header#header.kinder-v4 > .container > .wrapper .identity img {
  max-width: unset;
  margin-right: 0;
  width: 100%;
  height: auto;
  max-height: 30px;
}
header#header.kinder-v4 .bottom {
  height: 64px;
  background: #fafafa;
}
header#header.kinder-v4 .bottom > .wrapper .search {
  margin-left: 0 !important;
}
header#header.kinder-v4 .bottom > .wrapper {
  justify-content: center;
}
header#header.kinder-v4 .top {
  height: 72px;
  background: white;
  flex-shrink: 0;
  position: relative;
  z-index: 20;
}
header#header.kinder-v4 .login-container,
header#header.kinder-v4 .signup-container {
  position: absolute;
  top: 73px;
  left: 0;
  right: 0;
  background: #fafafa;
  padding: 80px 148px 0 148px;
  opacity: 0;
  pointer-events: none;
  height: calc(100vh - 73px);
  transform: translateY(-100%);
  transition: transform 0.6s ease 0s;
}
header#header.kinder-v4 .login-container .close,
header#header.kinder-v4 .signup-container .close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
}
header#header.kinder-v4 .login-container > .wrapper,
header#header.kinder-v4 .signup-container > .wrapper {
  position: relative;
}
header#header.kinder-v4 .login-container.open,
header#header.kinder-v4 .signup-container.open {
  opacity: 1;
  pointer-events: all;
  z-index: 10;
  transform: translateY(0);
}
header#header.kinder-v4 .login-container .columns,
header#header.kinder-v4 .signup-container .columns {
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
}
header#header.kinder-v4 .login-container a.column:hover h1,
header#header.kinder-v4 .signup-container a.column:hover h1 {
  color: #ff005e;
}
header#header.kinder-v4 .login-container .column,
header#header.kinder-v4 .signup-container .column {
  max-width: 500px;
  display: block;
  margin: 0 32px;
  color: #222;
  font-weight: 500;
}
header#header.kinder-v4 .login-container .column h1,
header#header.kinder-v4 .signup-container .column h1 {
  font-size: 32px;
  line-height: 48px;
  font-family: Tomica;
  font-weight: 900;
}
header#header.kinder-v4 .login-container .column h1::after,
header#header.kinder-v4 .signup-container .column h1::after {
  content: ' ';
  height: 2px;
  display: block;
  background: #eaeaea;
  margin-top: 24px;
  margin-bottom: 24px;
}
header#header.kinder-v4 .login-container .column p,
header#header.kinder-v4 .signup-container .column p {
  font-size: 16px;
  line-height: 28px;
  color: #222222;
  font-weight: 400;
}
header#header.kinder-v4 .login-container .column ul,
header#header.kinder-v4 .signup-container .column ul {
  list-style: disc;
  list-style-position: inside;
}
header#header.kinder-v4 .login-container .column ul li,
header#header.kinder-v4 .signup-container .column ul li {
  padding-left: 8px;
}
header#header.kinder-v4 .mobile-menu {
  display: none;
}
header#header.kinder-v4 .login-container .column figure,
header#header.kinder-v4 .signup-container .column figure {
  margin-bottom: 24px;
}
header#header.kinder-v4 .login-container .column figure img,
header#header.kinder-v4 .signup-container .column figure img {
  height: 106px;
}
header#header.kinder-v4 .login-container .column h1 svg,
header#header.kinder-v4 .signup-container .column h1 svg {
  margin-left: 24px;
}
html.mobile header#header.kinder-v4 .identity .logo {
  width: auto;
}
html.mobile header#header.kinder-v4 .identity .logo > a {
  width: auto;
}
html.mobile header#header.kinder-v4 > .container > .wrapper .identity img {
  width: auto;
  height: 24px;
  max-height: unset;
}
html.mobile header#header.kinder-v4 .top .left .widget.menu {
  display: none;
}
html.mobile header#header.kinder-v4 .top .wrapper .left {
  flex-grow: 0;
  margin-right: 12px;
}
html.mobile header#header.kinder-v4 > .container > .wrapper .center {
  position: relative;
  left: unset;
  top: unset;
  transform: unset;
  width: auto;
}
html.mobile header#header.kinder-v4 .mobile-menu {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
html.mobile header#header.kinder-v4 > .container > .wrapper .right {
  margin-left: auto;
}
html.mobile header#header.kinder-v4 > .container .right .search {
  display: none;
}
html.mobile header#header.kinder-v4 .mobile-menu button {
  width: 48px;
}
html.mobile header#header.kinder-v4 .mobile-menu button div {
  display: flex;
  align-items: center;
  justify-content: center;
}
html.mobile header#header.kinder-v4 .top {
  height: 56px;
}
html.mobile header#header.kinder-v4 .container .wrapper > .mobile {
  border-top: none;
}
html.mobile header#header.kinder-v4 .mobile .top {
  height: 56px;
  overflow-y: scroll;
  flex-direction: column;
}
html.mobile header#header.kinder-v4 .top > .wrapper {
  padding: 0 !important;
}
html.mobile header#header.kinder-v4 .login-container,
html.mobile header#header.kinder-v4 .signup-container {
  padding: 0;
  top: 56px;
  height: calc(100vh - 56px);
}
html.mobile header#header.kinder-v4 .login-container .columns,
html.mobile header#header.kinder-v4 .signup-container .columns {
  flex-direction: column;
}
html.mobile header#header.kinder-v4 .login-container .column,
html.mobile header#header.kinder-v4 .signup-container .column {
  display: flex;
  margin: 0;
  padding: 16px 16px;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  max-width: unset;
}
html.mobile header#header.kinder-v4 .login-container .column svg,
html.mobile header#header.kinder-v4 .signup-container .column svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
html.mobile header#header.kinder-v4 .login-container .column p,
html.mobile header#header.kinder-v4 .login-container .column ul,
html.mobile header#header.kinder-v4 .signup-container .column p,
html.mobile header#header.kinder-v4 .signup-container .column ul {
  display: none;
}
html.mobile header#header.kinder-v4 .login-container .column img,
html.mobile header#header.kinder-v4 .signup-container .column img {
  height: 60px;
}
html.mobile header#header.kinder-v4 .login-container .column h1,
html.mobile header#header.kinder-v4 .signup-container .column h1 {
  margin-left: 108px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
}
html.mobile header#header.kinder-v4 .login-container .column h1::after,
html.mobile header#header.kinder-v4 .signup-container .column h1::after {
  display: none;
}
html.mobile header#header.kinder-v4 .login-container .column figure,
html.mobile header#header.kinder-v4 .signup-container .column figure {
  width: 0;
}
html.mobile header#header.kinder-v4 .login-container .column figure,
html.mobile header#header.kinder-v4 .signup-container .column figure {
  margin-bottom: 0;
}
html.mobile header#header.kinder-v4 .login-container .column figure img,
html.mobile header#header.kinder-v4 .signup-container .column figure img {
  height: 56px;
}
html.mobile header#header.kinder-v4 > .container > .wrapper > .bottom {
  position: relative;
  z-index: 5;
}
html.mobile header#header.kinder-v4 .login-container .close,
html.mobile header#header.kinder-v4 .signup-container .close {
  display: none;
}
html.mobile header#header.kinder-v4 .ui-accordion .group .items .widget.menu .content .menu .item a {
  padding: 12px 16px;
  border-bottom: 1px solid #eaeaea;
}
html.mobile header#header.kinder-v4 > .container .mobile .search-input-container {
  position: relative;
  top: unset;
  opacity: 1;
  padding: 0;
  pointer-events: all;
  border: none;
}
html.mobile header#header.kinder-v4 > .container .mobile .search-input-container > .wrapper {
  padding-bottom: 0;
}
html.mobile header#header.kinder-v4 > .container .mobile .search-input-container .widget.search-input .input {
  padding-left: 0;
  padding-right: 16px;
  border-bottom: 1px solid #eaeaea;
}
html.mobile header#header.kinder-v4 > .container .mobile .search-input-container .widget.search-input .input .icon {
  order: 2;
}
html.mobile header#header.kinder-v4 > .container .mobile .search-input-container .widget.search-input .input input {
  padding: 24px 16px;
}
header#header.kinder-v4.menu-open b.mfe-menu-icon::before {
  -webkit-transform: rotate(45deg) translate3d(5px, 5px, 0);
  transform: rotate(45deg) translate3d(5px, 5px, 0);
}
header#header.kinder-v4.menu-open b.mfe-menu-icon::after {
  -webkit-transform: rotate(-45deg) translate3d(5px, -5px, 0);
  transform: rotate(-45deg) translate3d(5px, -5px, 0);
}
header#header.kinder-v4.menu-open b.mfe-menu-icon > span {
  opacity: 0;
}
#page.body-header-left {
  padding-left: 300px;
}
#page.body-header-left > nav {
  width: 300px;
  position: fixed;
  left: 0;
  bottom: 0;
  top: 0;
}
#page.body-header-left .mfe-edit-container[data-setting-type="block"][data-setting-sub-type="header"] {
  width: 300px;
  position: fixed;
  left: 0;
  bottom: 0;
  top: 0;
}


/* Site custom CSS */

#cookie-bar a {
  font-size: inherit;
}
#cookie-bar .continue button {
  background-color: #ff6501;
  padding: 12px 26px;
  color: white;
  border-radius: 2px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase !important;
  transition: background 0.25s;
  font-family: inherit;
}
#cookie-bar .continue button:hover {
  background-color: rgba(255, 101, 1, 0.75);
}
.ui-checkbox input:checked + label > span {
  border: 2px solid #ff6501;
  background: #ff6501;
}
.ui-checkbox input:checked + label > span svg {
  color: white;
}
.ui-checkbox label > span {
  border: 2px solid #686868;
}
#cookie-bar .description h1 {
  font-family: inherit;
}
.layout-container[data-layout-name="newsletter-subscribe"] .widget.html iframe {
  height: 200px;
}
body[data-template-id="702"] .widget.donation .amount-frequency.single {
  flex-direction: column;
  -webkit-flex-direction: column;
}
body[data-template-id="702"] .widget.donation label[for="amount-input-single-25"]::before {
  content: 'Family pack';
  margin-right: auto;
}
body[data-template-id="702"] .widget.donation label[for="amount-input-single-55"]::before {
  content: 'Tent pack';
  margin-right: auto;
}
body[data-template-id="702"] .widget.donation label[for="amount-input-single-100"]::before {
  content: 'Community pack';
  margin-right: auto;
}
body[data-template-id="702"] .widget.donation.style-mobile .donation-form .amount .amount-frequency .item label {
  padding-left: 16px;
  padding-right: 16px;
}
body[data-template-id="702"] .widget.donation.style-mobile .form .frequency .item,
body[data-template-id="702"] .widget.donation.style-mobile .form .amount .item {
  margin-right: 0;
  flex-grow: unset;
  -webkit-flex-grow: unset;
  flex-basis: unset;
  -webkit-flex-basis: unset;
  width: 100%;
}
html {
  --page-width: 1080px;
}
:root {
  --theme-highlight-bg-color: #ff6501;
  --theme-highlight-text-color: white;
}
h3 {
  font-family: var(--h3-font-family);
  color: var(--h3-font-color);
  font-size: var(--h3-font-size);
  text-transform: var(--h3-text-transform);
  line-height: var(--h3-line-height);
  font-weight: var(--h3-font-weight);
  font-style: var(--h3-font-style);
}
.content-area.page-width-dialog > .wrapper {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  background: rgba(0, 0, 0, 0.84);
  color: white;
}
.content-area.page-width-dialog > .wrapper h1 {
  color: white;
}
header#header > .container {
  box-shadow: none;
}
header#header.style-tall {
  height: 0;
}
header#header.style-tall > .placeholder {
  height: 0;
}
header#header > .container {
  height: 84px;
}
header#header > .container > .wrapper .identity img {
  height: unset;
  filter: grayscale(1) brightness(0%) invert(1);
  transition: filter 0.4s;
}
header#header.style-hero > .container > .wrapper {
  padding-left: 20px;
  padding-right: 20px;
}
body.mfe-theme-header-small header#header.style-hero > .container > .wrapper .identity img {
  filter: none;
}
header#header > .container > .wrapper nav ul li.item {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
header#header > .container > .wrapper nav ul li.item,
header#header > .container > .wrapper nav ul li.search {
  margin-left: 16px;
}
header#header > .container > .wrapper nav ul li.item a,
header#header > .container > .wrapper nav ul li > button > div {
  height: 42px;
  padding: 0 18px;
  background: rgba(0, 0, 0, 0.34);
  border-radius: 3px;
  text-transform: uppercase !important;
}
header#header > .container > .wrapper {
  padding-left: 40px;
  padding-right: 20px;
}
header#header > .container > .wrapper nav ul li.item span {
  display: flex;
  align-items: center;
}
header#header > .container > .wrapper nav ul li.item span img {
  width: 26px;
  margin-left: 12px;
}
footer#footer.large .menu-social ul.menu {
  padding-top: 32px;
  padding-bottom: 16px;
}
footer#footer.large .menu-social ul.menu li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding-left: 16px;
  padding-right: 16px;
  width: 48px;
  height: 48px;
  background: #ff6501;
  border-radius: 48px;
  margin-right: 24px;
  color: white;
  font-size: 24px;
}
footer#footer.large .contact .left {
  color: rgba(255, 255, 255, 0.76);
}
body.mfe-theme-header-small header#header.style-hero > .container {
  height: 84px;
  box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.41);
}
body.mfe-theme-header-small header#header > .container > .wrapper nav ul li.item a,
body.mfe-theme-header-small header#header > .container > .wrapper nav ul li > button > div {
  background: none;
  /*rgba(228, 228, 228, 0.3);*/
  color: #888;
}
header#header > .container > .wrapper nav ul li.item.style-special a,
body.mfe-theme-header-small header#header > .container > .wrapper nav ul li.item.style-special a {
  background: #ff6501;
  color: white;
}
body.mfe-theme-header-small header#header > .container > .wrapper nav ul li.selected a {
  color: var(--menu-item-selected-font-color, var(--menu-item-font-color, var(--h3-font-color)));
}
header#header > .container > .wrapper nav ul li.item.style-special a:hover:not(.selected) {
  background: rgba(255, 101, 1, 0.75);
  color: white;
}
footer#footer.large {
  margin-top: 0;
}
footer#footer.large .contact {
  font-size: 15px;
}
footer#footer.large .contact img {
  height: 84px;
  opacity: 0.4;
  filter: grayscale(1) brightness(0%) invert(1);
}
footer#footer.large .bottom .copyright {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
footer#footer.large .bottom {
  font-size: 15px;
}
.content-area > .wrapper {
  padding-top: 48px;
  padding-bottom: 48px;
}
.content-area > .wrapper > h1 {
  margin-bottom: 32px;
}
h1 {
  text-transform: uppercase;
}
.ui-checkbox {
  display: inline-block !important;
  position: relative;
  margin-left: 8px;
  margin-right: 8px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  vertical-align: top;
  width: 22px;
  height: 22px;
}
.ui-checkbox.no-ml {
  margin-left: 0;
}
.ui-checkbox.no-mr {
  margin-right: 0;
}
.ui-checkbox.no-m {
  margin-left: 0;
  margin-right: 0;
}
.ui-checkbox input {
  width: 20px;
  height: 20px;
  margin-left: -20px;
  margin-top: -20px;
  opacity: 0;
}
.ui-checkbox span {
  display: flex;
  display: -webkit-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #444444;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 2px;
}
.ui-checkbox span svg {
  color: rgba(0, 0, 0, 0.16);
  font-size: 14px;
}
.ui-checkbox input:checked + span {
  background: #313131;
}
.ui-checkbox input:checked + span svg {
  color: white;
}
.content-area.bg-dark .ui-checkbox span {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.21);
}
.content-area.bg-dark .ui-checkbox span svg {
  color: rgba(247, 247, 247, 0.11);
}
.content-area.bg-dark .ui-checkbox input:checked + span {
  background: #ff6501;
}
.content-area.bg-dark .ui-checkbox input:checked + span svg {
  color: white;
}
.ui-button {
  padding: 12px 26px;
  background: #ff6501;
  color: white;
  border-radius: 2px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase !important;
  transition: background 0.25s;
}
.ui-button:hover {
  background: rgba(255, 101, 1, 0.75);
  color: white;
  font-size: 18px;
}
.widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content .group {
  background-color: #ff6400;
  border-radius: 3px;
}
.widget.cms-cover {
  height: 600px;
}
.widget.cms-cover > .content.base-default .item-content h1 {
  text-shadow: none;
  font-size: 60px;
}
.widget.cms-cover > .content.base-default .figure-overlay {
  background: linear-gradient(to bottom, #000000, rgba(0, 0, 0, 0.17) 19%, rgba(0, 0, 0, 0));
}
.widget.cms-cover > .content.base-default .overlay {
  display: block;
  height: 28%;
}
.widget.content-slider .item.type-menuitem .container,
.widget.content-slider .item.type-menuitem .container .wrapper {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.widget.content-slider .item.type-menuitem.style-default .item-content {
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  height: auto;
  width: 100%;
  max-width: 640px;
  background: rgba(0, 0, 0, 0.84);
  color: white;
  padding: 48px;
}
.widget.content-slider .item.type-menuitem.style-default .item-content h1 {
  color: white;
  margin-bottom: 16px;
}
.widget.content-slider .item.type-menuitem.style-default .item-content p {
  color: white;
  margin-bottom: 22px;
}
.widget.content-slider .item.type-menuitem.style-default .overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.47) 12%, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.widget.donation .form .frequency .item label,
.widget.donation .form .amount .item label,
.widget.donation .form .payment-method .item label,
.widget.donation .form .payment-method-choices .item label {
  border: 1px solid rgba(255, 255, 255, 0.21);
  padding: 8px 16px;
  text-transform: uppercase;
  font-weight: bold;
}
.widget.donation .donation-form .amount .amount-frequency .item label {
  justify-content: center;
  -webkit-justify-content: center;
  width: 80px;
  padding-left: 0;
  padding-right: 0;
}
.widget.donation .form p {
  color: #777;
  margin-bottom: 16px;
}
.widget.donation .form .frequency,
.widget.donation .form .amount {
  margin-bottom: 24px;
}
.widget.form .content.base-default[data-form-id="149"] .panel > h1 {
  text-transform: none;
  font-size: 20px;
}
.widget.form .content.base-default[data-form-id="149"] .panel > .fields .field .comment {
  margin-left: 0;
}
.widget.form .content.base-default[data-form-id="149"] .panel > .fields .field {
  flex-grow: 1;
  min-width: 37%;
}
.widget.form .content.base-default[data-form-id="149"] .panel > .fields .field .main {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.widget.form .content.base-default[data-form-id="149"] .panel > .fields .field .label {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  width: auto;
  order: 2;
  margin-top: 6px;
}
.widget.form .content.base-default[data-form-id="149"] .panel[data-panel-id="263"] .fields {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
/*
	Panel "Name"
*/
.widget.form .content.base-default[data-form-id="149"] .panel[data-panel-id="225"] .fields {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.widget.form .content.base-default[data-form-id="149"] .error {
  margin-left: 0;
}
.widget.form .content.base-default[data-form-id="149"] .panel[data-panel-id="225"] .fields .field:first-child {
  margin-right: 24px;
}
/*
	Panel "Address"
*/
.widget.form .content.base-default[data-form-id="149"] .panel[data-panel-id="226"] .fields {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.widget.form .content.base-default[data-form-id="149"] .panel[data-panel-id="226"] .fields .field:nth-child(2n) {
  margin-right: 24px;
}
.widget.form .content.base-default[data-form-id="149"] .panel[data-panel-id="226"] .fields .field {
  min-width: 40%;
  flex-basis: 0;
}
.widget.form .content.base-default[data-form-id="149"] .panel[data-panel-id="226"] .fields .field:first-child {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
  width: 100%;
  margin-right: 0;
}
/*
	Panel "Volunteer date"
*/
.widget.form .content.base-default[data-form-id="149"] .panel[data-panel-id="237"] > .fields .field .main .label {
  order: 0;
  margin-top: 0;
  margin-bottom: 6px;
}
/*
	Panel "Project choices"
*/
.widget.form .content.base-default[data-form-id="149"] .panel[data-panel-id="241"] > .fields .field .main .label {
  order: 0;
  margin-top: 0;
  margin-bottom: 6px;
}
.widget.form .content.base-default[data-form-id="149"] .panel[data-panel-id="263"] .fields .field:nth-child(1n) {
  margin-right: 24px;
}
body[data-page="sponsors-partners-cms-page"] .layout.layout-sidebar .main .widget.cms-fragments .fragment.cms-text-image .image {
  margin-top: 32px;
  margin-bottom: 32px;
  margin-left: 32px;
  margin-right: 24px;
  flex-basis: 25%;
  -webkit-flex-basis: 25%;
}
body[data-page="sponsors-partners-cms-page"] .layout.layout-sidebar .main .widget.cms-fragments .fragment.cms-text-image:nth-child(2n) .image {
  order: 2;
  margin-left: 24px;
  text-align: right;
  margin-right: 32px;
  margin-top: 32px;
  margin-bottom: 32px;
}
body[data-page="sponsors-partners-cms-page"] .layout.layout-sidebar .main .widget.cms-fragments > .content.setting-text-image-no-wrap-around .fragment.cms-text-image .fragment-content {
  align-items: center;
  -webkit-align-items: center;
}
body[data-page="sponsors-partners-cms-page"] .layout.layout-sidebar .main .widget.cms-fragments .fragment.cms-text-image:nth-child(2n) {
  background: #f6f6f6;
  padding-left: 32px;
}
body[data-page="sponsors-partners-cms-page"] .layout.layout-sidebar .main .widget.cms-fragments .fragment.cms-text-image .text {
  padding-top: 32px;
  padding-bottom: 32px;
}
.content-area.bg-dark {
  color: white;
}
.widget.cms-fragments > .content.setting-text-image-no-wrap-around .fragment.cms-text-image .fragment-content .image {
  flex-basis: 17%;
  -webkit-flex-basis: 17%;
}
.widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content {
  padding: 0 16px 24px 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.84);
  z-index: 10;
}
.widget.content-grid.style-default .content ul li.type-blogpost.style-default .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  transition: opacity 0.25s;
  z-index: 1;
}
.widget.content-grid.style-default .content ul li.type-blogpost.style-default:hover .overlay {
  opacity: 0;
}
.widget.content-grid .content ul li.type-blogpost.style-default figure {
  padding-top: 75%;
}
.widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content .title,
.widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content .title > a {
  color: white;
  height: auto;
}
.mfe-wc-blogpost-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-transform: uppercase;
}
.widget.cms-metadata {
  margin-bottom: 32px !important;
}
.widget.cms-metadata .line {
  color: #bababa;
  font-weight: bold;
  font-size: 16px;
}
.content-area[data-layout-name="explanation-bar"] .widget.cms-fragments {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.content-area[data-layout-name="explanation-bar"] > .wrapper {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.content-area[data-layout-name="explanation-bar"] .fragment.cms-text h3 {
  font-size: 20px;
  text-align: center;
}
.layout-container[data-layout-name="media-layout"] {
  height: var(--layout-height, 100vw);
}
.layout-container[data-layout-name="media-layout"] > .wrapper {
  max-width: unset;
  width: 100%;
  padding: 84px;
}
.widget.content-grid.name-campaigns li {
  filter: grayscale(1);
}
.widget.content-grid.name-campaigns li[data-blog-group-id="557"] {
  filter: none;
}
html.mobile .content-area[data-layout-name="explanation-bar"] > .wrapper {
  padding-left: 64px;
  padding-right: 64px;
}
html.mobile .content-area[data-layout-name="explanation-bar"] .widget.cms-fragments {
  max-width: 100%;
}
html.mobile header#header > .container > .wrapper nav ul li.item {
  margin-left: 0;
}
html.mobile header#header .right .widget.menu {
  height: calc(100vh - 100%);
  background: #333;
}
html.mobile header#header .right .widget.menu ul li {
  border-bottom: 1px solid #484848;
}
html.mobile header#header > .container > .wrapper nav ul li.item a {
  background: none;
  display: flex;
  padding: 0 16px;
  width: 100%;
  color: #e0e0e0;
}
html.mobile header#header > .container > .wrapper nav ul li.item.style-special a {
  color: #ff6501;
  background: none;
}
html.mobile header#header.style-hero > .container > .wrapper {
  padding-left: 0;
  padding-right: 0;
}
html.mobile header#header.style-hero.menu-open > .container {
  background: #111;
}
html.mobile body.mfe-theme-header-small header#header .right .mobile-menu b.mfe-menu-icon > span,
html.mobile body.mfe-theme-header-small header#header .right .mobile-menu b.mfe-menu-icon::after,
html.mobile body.mfe-theme-header-small header#header .right .mobile-menu b.mfe-menu-icon::before {
  background: #111;
}
html.mobile header#header > .container > .wrapper nav ul li.item.style-special a,
html.mobile body.mfe-theme-header-small header#header > .container > .wrapper nav ul li.item.style-special a {
  color: #ff6501;
  background: none;
}
html.mobile .widget.donation .donation-form .amount .amount-frequency .item label {
  width: 100%;
}
html.mobile .widget.content-slider .item.type-menuitem.style-default .item-content {
  width: 100%;
  height: 100%;
}
html.mobile .widget.content-slider > .content.nav-size-large .nav-arrow {
  padding-left: 0;
  padding-right: 0;
  width: 64px;
}
html.mobile .widget.content-slider > .content.nav-position-inside .nav-arrow {
  transform: translateY(0);
  top: 84px;
  bottom: 0;
  font-size: 28px;
}
html.mobile .widget.content-slider > .content.nav-position-inside .nav-arrow.nav-right {
  right: 0;
}
html.mobile .widget.content-slider > .content.nav-position-inside .nav-arrow.nav-left {
  left: 0;
}
html.mobile .widget.content-slider .item.type-menuitem.style-default .item-content {
  padding: 84px 64px 64px 64px;
}
.widget.cms-metadata.name-media-metadata h1 {
  font-size: 20px;
  line-height: 1.5;
}
.widget.cms-metadata.name-media-metadata {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.widget.cms-metadata.name-media-metadata .line .date {
  margin-left: 0;
  margin-top: 4px;
}
.content-area.page-width-dialog {
  padding-top: 120px;
  padding-bottom: 32px;
}
.content-area.page-width-dialog > .wrapper {
  max-width: 820px;
  margin-bottom: 0;
}
.widget.donation.name-summerization-donation .form .destination .item,
.widget.donation.name-summerization-donation .form .destination .filler {
  min-width: 34%;
}
.widget.donation.name-summerization-donation .frequency-choice + p {
  color: #d2d2d2;
}
.widget.donation.name-summerization-donation .frequency-choice + p strong {
  color: white;
}
.widget.donation.style-mobile .form.payment-method-form .choose-payment-method {
  flex-direction: column;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
.widget.donation.style-mobile .form.payment-method-form .payment-method {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.widget.donation.style-mobile .form .payment-method .item,
.widget.donation.style-mobile .form .payment-method-choices .item {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
.widget.donation.style-mobile .form .payment-method .item label,
.widget.donation.style-mobile .form .payment-method-choices .item label {
  border: 1px solid rgba(27, 27, 27, 0.12);
  width: 100%;
}
.widget.donation.style-mobile .form .payment-method .item,
.widget.donation.style-mobile .form .payment-method-choices .item {
  margin: 0;
  margin-right: 4px;
  margin-bottom: 4px;
}
.widget.donation.style-mobile .form .payment-method .item:nth-child(2n),
.widget.donation.style-mobile .form .payment-method-choices .item:nth-child(2n) {
  margin-right: 0;
}
.widget.donation.style-mobile .form.payment-method-form .choose-payment-method p {
  margin-bottom: 16px;
}
.widget.donation.style-mobile .form.payment-method-form .payment-method-choices .item {
  min-width: 34%;
}
.widget.donation.style-mobile .form.payment-method-form .payment-method-choices .item label {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.widget.donation.style-mobile .form.payment-method-form .payment-method-choices .item label svg {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  margin-right: 0;
}
.widget.donation.style-mobile .form.payment-method-form .payment-method-choices .item label span {
  font-size: 15px;
}
.widget.donation .field[data-field="newsletter"] label {
  display: flex;
  display: -webkit-flex;
  cursor: pointer;
}
.widget.donation .fieldset {
  margin-top: 16px;
}
.widget.donation .form .destination .filler {
  margin-bottom: 0;
}
.widget.donation.style-mobile .ui-button {
  font-size: 16px;
}
.widget.donation.style-mobile .form.payment-method-form .actions {
  display: flex;
  flex-direction: column;
}
.widget.donation.style-mobile .form.payment-method-form .actions .ui-button > div {
  text-align: center;
}
.widget.donation.style-mobile .form.payment-method-form .actions .ui-button:not(.special) {
  order: 1;
  background: none;
}
.widget.donation.style-mobile .form.payment-method-form .actions .ui-button:not(.special):hover > div {
  color: #555;
}
.widget.donation.style-mobile .form.payment-method-form .actions .ui-button:not(.special) > div {
  color: #999;
}
.widget.donation.style-mobile .form.payment-method-form .actions .ui-button.special {
  order: 0;
}
html.mobile header#header .right .widget.menu ul li.search {
  display: none;
}
html.mobile .layout-sidebar > .sidebar {
  display: block;
  margin-top: 24px;
}
