/* 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.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 > .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;
}
: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 {
  background-color: #fafafa;
}
footer#footer.bigfoot > .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 {
  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 {
  margin-bottom: 8px;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left p {
  color: #222;
  font-size: 16px;
}
footer#footer.bigfoot > .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 {
  background: white;
}
footer#footer.bigfoot > .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 {
  background-color: #777777;
  border-color: #777777;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right .intro {
  margin-bottom: 0;
}
footer#footer.bigfoot > .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-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-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-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-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;
}
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: 'Open Sans';
  --body-font-color: #222222;
  --body-font-size: 18px;
  --body-line-height: 1.80;
  --body-font-weight: 400;
  --link-font-family: 'Open Sans';
  --link-font-color: #bbbbbb;
  --link-font-size: 18px;
  --link-line-height: 1.80;
  --link-font-weight: 600;
  --link-hover-font-family: 'Open Sans';
  --link-hover-font-color: #777777;
  --link-hover-font-size: 18px;
  --link-hover-line-height: 1.80;
  --link-hover-font-weight: 600;
  --h1-font-family: 'Open Sans';
  --h1-font-color: #222222;
  --h1-font-size: 30px;
  --h1-line-height: 1.20;
  --h1-font-weight: 600;
  --h2-font-family: 'Open Sans';
  --h2-font-color: #222222;
  --h2-font-size: 22px;
  --h2-line-height: 1.20;
  --h2-font-weight: 600;
  --h3-font-family: 'Open Sans';
  --h3-font-color: #222222;
  --wc-title-font-family: 'Open Sans';
  --wc-title-font-color: #222222;
  --wc-title-font-size: 20px;
  --wc-title-line-height: 1.40;
  --wc-title-font-weight: 600;
  --wc-title-fullimage-font-family: 'Open Sans';
  --wc-title-fullimage-font-color: #ffffff;
  --wc-title-fullimage-font-size: 36px;
  --wc-title-fullimage-line-height: 1.20;
  --wc-title-fullimage-font-weight: 800;
  --wc-summary-font-family: 'Open Sans';
  --wc-summary-font-color: #222222;
  --wc-metadata-font-family: 'Open Sans';
  --wc-metadata-font-color: #222222;
}
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 {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
html.mobile header#header .right .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 {
  padding-left: 16px;
  padding-right: 16px;
}
html.mobile footer#footer.bigfoot > .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 {
  width: 100%;
  max-width: 100%;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right {
  margin-left: 0;
  margin-bottom: 64px;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left p {
  margin-bottom: 16px;
}
footer .logo-svg-ttl {
  height: 1.4em;
  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 > .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%;
}
@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 {
    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 {
    justify-content: center;
    -webkit-justify-content: center;
  }
  footer#footer.bigfoot > .wrapper .top > .wrapper {
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
  }
}
header#header.kinder {
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 142px !important;
}
header#header.kinder:not(.with-bottom-bar) {
  height: 104px !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.with-bottom-bar b.mfe-menu-icon > span,
html.mobile header#header.kinder.with-bottom-bar b.mfe-menu-icon::after,
html.mobile header#header.kinder.with-bottom-bar b.mfe-menu-icon::before {
  background-color: white;
}
html.mobile header#header.kinder.with-bottom-bar > .container .right .search button > div svg {
  color: white;
}
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;
  margin: 0 auto;
  max-width: var(--page-width);
  width: 100%;
}
header#header.kinder .bottom > .wrapper {
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
header#header.kinder > .container > .wrapper .identity img {
  filter: invert(1);
}
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: #222222;
}
header#header.kinder:not(.with-bottom-bar) .top {
  background: white;
}
html.desktop header#header.kinder:not(.with-bottom-bar) .top {
  height: 104px;
}
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;
}
header#header.kinder .wrapper .top nav ul li.selected a span {
  border-bottom: 1px solid #ff005e;
  padding-bottom: 2px;
  margin-top: 2px;
}
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 > .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;
}
#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 */

@font-face {
  font-family: 'Tomica';
  src: url('/static/webfonts/tomica-black-webfont.woff2') format('woff2'), url('/static/webfonts/tomica-black-webfont.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Tomica';
  src: url('/static/webfonts/tomica-bold-webfont.woff2') format('woff2'), url('/static/webfonts/tomica-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Tomica';
  src: url('/static/webfonts/tomica-regular-webfont.woff2') format('woff2'), url('/static/webfonts/tomica-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
/*
    Share selected text
*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: sst_icons;
    src: url(fonts/sst_icons.svg#sst_icons) format("svg");
  }
}
[data-icon]:before {
  content: attr(data-icon);
}
.icon-sst-buffer:before,
.icon-sst-digg:before,
.icon-sst-facebook:before,
.icon-sst-linkedin:before,
.icon-sst-reddit:before,
.icon-sst-stumbleupon:before,
.icon-sst-tumblr:before,
.icon-sst-twitter:before,
[data-icon]:before {
  display: inline-block;
  font-family: sst_icons;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.icon-sst-buffer:before {
  content: "\f108";
}
.icon-sst-digg:before {
  content: "\f109";
}
.icon-sst-facebook:before {
  content: "\f10f";
}
.icon-sst-linkedin:before {
  content: "\f10a";
}
.icon-sst-reddit:before {
  content: "\f10b";
}
.icon-sst-stumbleupon:before {
  content: "\f10c";
}
.icon-sst-tumblr:before {
  content: "\f10d";
}
.icon-sst-twitter:before {
  content: "\f10e";
}
.share-selected-text-main-container {
  position: absolute;
  width: 100%;
  opacity: 0;
  -ms-transform: translateY(5px);
  transform: translateY(5px);
  transition: .3s ease opacity,.3s ease transform,.3s ease top,.3s ease left;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 99;
  pointer-events: none;
}
.share-selected-text-main-container.active {
  opacity: 1;
  -ms-transform: translateY(0);
  transform: translateY(0);
  z-index: 999;
}
.share-selected-text-main-container.active .share-selected-text-inner {
  pointer-events: auto;
}
.share-selected-text-main-container .share-selected-text-inner {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  background: #404658;
  height: 100%;
  pointer-events: none;
  position: relative;
}
.share-selected-text-main-container .share-selected-text-inner:after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 7.5px 0;
  border-color: #404658 transparent transparent;
}
.share-selected-text-main-container .share-selected-text-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  height: 100%;
  margin: 0;
  padding: 0 20px;
  transition: 0.2s ease all;
}
.share-selected-text-main-container .share-selected-text-btn:focus,
.share-selected-text-main-container .share-selected-text-btn:hover {
  background: #4f566d;
}
.share-selected-text-main-container .share-selected-text-inner {
  clip-path: polygon(14px 0px, 100% 0, calc(100% - 14px) calc(100% + 16px), 0 calc(100% + 16px));
  background: black;
}
.share-selected-text-main-container .share-selected-text-btn:focus,
.share-selected-text-main-container .share-selected-text-btn:hover {
  background: #363636;
}
.share-selected-text-main-container .share-selected-text-btn:first-child {
  padding-left: 28px;
}
.share-selected-text-main-container .share-selected-text-btn:last-child {
  padding-right: 28px;
}
.share-selected-text-main-container .share-selected-text-inner::after {
  border-color: black transparent transparent;
}
/*
	Kinder specific 
*/
html {
  --page-width: 1024px;
}
body {
  /* Category: Problem (484) */
  --wc-category-block-484-bg-color: #FC5C65;
  --wc-category-block-484-fg-color: white;
  --wc-category-text-484-fg-color: #FC5C65;
  /* Category: Solution (485) */
  --wc-category-block-485-bg-color: #FD9644;
  --wc-category-block-485-fg-color: white;
  --wc-category-text-485-fg-color: #FD9644;
  /* Category: You (486) */
  --wc-category-block-486-bg-color: #35CD73;
  --wc-category-block-486-fg-color: white;
  --wc-category-text-486-fg-color: #35CD73;
  /* Category: Quick updates (487) */
  --wc-category-block-487-bg-color: #A55EEA;
  --wc-category-block-487-fg-color: white;
  --wc-category-text-487-fg-color: #A55EEA;
  /* Category: Company blogs (456) */
  --wc-category-block-456-bg-color: black;
  --wc-category-block-456-fg-color: white;
  --wc-category-text-456-fg-color: black;
  --link-special-font-color: #FF005E;
  --link-special-hover-font-color: #C70049;
}
input[type="text"],
input[type="password"],
input[type="email"],
select {
  /*border-radius: 4px; MOEST VAN KOEN */
}
.ui-button {
  color: #bbbbbb;
}
/*
	Layout: Sidebar
*/
.layout-sidebar[data-sticky-sidebar="true"] > .sidebar {
  top: 136px;
}
.layout.layout-sidebar .layout-item.sidebar .widget {
  border: 2px solid #eaeaea;
  padding: 32px;
  margin-bottom: 32px;
  background-image: var(--background-image);
  background-repeat: no-repeat;
  background-size: 64px auto;
  background-position: calc(100% - 32px) 32px;
  position: relative;
}
.layout.layout-sidebar .layout-item.sidebar .widget .widget-header {
  font-family: 'Tomica';
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}
.layout.layout-sidebar .layout-item.sidebar .widget .widget-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  z-index: 0;
  text-align: right;
}
.layout.layout-sidebar .layout-item.sidebar .widget .widget-icon img {
  max-height: 58px;
  max-width: 64px;
}
.layout.layout-sidebar .layout-item.sidebar .widget.name-info-support .widget-icon {
  width: 72px;
  height: 72px;
}
.layout.layout-sidebar .layout-item.sidebar .widget.name-info-support .widget-icon img {
  max-width: 72px;
  max-height: 72px;
}
.layout.layout-sidebar .layout-item.sidebar .widget.name-info-kinder-app .widget-icon {
  width: 75px;
  height: 149px;
}
.layout.layout-sidebar .layout-item.sidebar .widget.name-info-kinder-app .widget-icon img {
  max-width: 75px;
  max-height: unset;
}
.layout.layout-sidebar .layout-item.sidebar .widget .widget-description {
  line-height: 1.5;
  margin-top: 24px;
  font-size: 16px;
}
.layout.layout-sidebar .layout-item.sidebar .widget .widget-description + .content {
  margin-top: 24px;
}
.layout.layout-sidebar .layout-item.sidebar .widget:not(.content-list) .widget-header {
  margin-bottom: 0;
  width: calc(100% - 92px);
}
.layout.layout-sidebar .layout-item.sidebar .widget.info-block a:not(.full-link) {
  display: block;
  margin-top: 32px;
  color: #ff005e;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
}
/*
	Block: Standard Header
*/
header#header > .container {
  box-shadow: none;
  transition: box-shadow 0.25s;
}
header#header > .container .widget.menu .item a {
  padding: 16px;
}
header#header > .container .site .widget.menu .item.selected a {
  text-decoration: underline;
}
header#header > .container > .wrapper .identity img {
  max-height: 40px;
  max-width: unset;
}
header#header > .container .search button > div svg {
  font-size: 18px;
  color: #bbbbbb;
}
header#header > .container .search button:hover > div svg {
  color: #777777;
}
header#header .wrapper .right nav ul li.selected a span {
  border-bottom: 1px solid #ff005e;
  padding-bottom: 2px;
  margin-top: 4px;
}
.mfe-theme-header-small header#header > .container {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.05);
}
/*
	Widget: CMS Tags
*/
.widget.cms-tags .line .tags a {
  color: var(--link-special-font-color);
}
.widget.cms-tags .line .tags a:hover {
  color: var(--link-special-hover-font-color);
}
/*
	Widget: CMS Metadata
*/
.widget.cms-metadata .line .who a {
  color: var(--link-special-font-color);
}
.widget.cms-metadata .line .who a:hover {
  color: var(--link-special-hover-font-color);
}
/*
	Widget: CMS Fragments
*/
.widget.cms-metadata .line .who a {
  color: var(--link-special-font-color);
}
.widget.cms-metadata .line .who a:hover {
  color: var(--link-special-hover-font-color);
}
.widget.cms-fragments .fragment.cms-quote {
  font-style: normal;
  font-family: Tomica;
  font-size: 28px;
  padding-left: 0;
  padding-right: 0;
  color: var(--link-special-font-color);
}
/*
	Widget: CMS Cover
*/
.widget.cms-cover > .content.base-default .item-content h1 {
  clip-path: polygon(var(--kinder-skew-pixels) 0, 100% 0, calc(100% - var(--kinder-skew-pixels)) var(--line-height), 100% var(--line-height), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 2), 100% calc(var(--line-height) * 2), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 3), 100% calc(var(--line-height) * 3), 0 calc(var(--line-height) * 3), var(--kinder-skew-pixels) calc(var(--line-height) * 2), 0 calc(var(--line-height) * 2), var(--kinder-skew-pixels) calc(var(--line-height) * 1), 0 calc(var(--line-height) * 1));
  -webkit-clip-path: polygon(var(--kinder-skew-pixels) 0, 100% 0, calc(100% - var(--kinder-skew-pixels)) var(--line-height), 100% var(--line-height), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 2), 100% calc(var(--line-height) * 2), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 3), 100% calc(var(--line-height) * 3), 0 calc(var(--line-height) * 3), var(--kinder-skew-pixels) calc(var(--line-height) * 2), 0 calc(var(--line-height) * 2), var(--kinder-skew-pixels) calc(var(--line-height) * 1), 0 calc(var(--line-height) * 1));
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: var(--line-height);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  margin: 0 auto 0 0;
  --line-height: 100px;
  --kinder-skew-pixels: 30px;
  font-family: 'Tomica';
  font-size: 64px;
  max-height: calc(var(--line-height) * 3);
}
/*.widget.cms-cover > .content.base-default .item-content h1 {
	display: inline-block;
	margin: auto auto auto 0;
	transform: skew(-10deg);
	background-color: rgba(0,0,0,0.6);
	padding: 20px 50px;
	margin-left: -50px;
	text-shadow: none;
	max-width: 89%;
}

.widget.cms-cover > .content.base-default .item-content h1 > .inner {
	transform: skew(10deg);
}
*/
.widget.cms-cover > .content.base-default .overlay {
  background: none;
}
.widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content .group,
.widget.content-scroller.style-default .content ul li.type-blogpost.style-default .item-content .group {
  clip-path: polygon(10px 0px, 100% 0, calc(100% - 10px) 100%, 0 100%);
  -webkit-clip-path: polygon(10px 0px, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.widget.cms-cover > .content.base-default .item-content .group {
  clip-path: polygon(10px 0px, 100% 0, calc(100% - 10px) 100%, 0 100%);
  -webkit-clip-path: polygon(10px 0px, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
/*
	Widget: Content grid + Pattern
*/
.widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li {
  /*border-radius: 6px; MOEST VAN KOEN */
  transition: all 0.25s;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.05);
}
.widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:hover {
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.125);
}
/*
	Widget: Content popular
*/
.widget.content-popular .content.base-default ul {
  /* border-radius: 6px; MOEST VAN KOEN */
}
.widget.content-popular .content.base-default ul li {
  transition: all 0.25s;
  box-shadow: none;
}
.widget.content-popular .content.base-default ul li:hover {
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.125);
  z-index: 250;
}
.widget.content-popular .content.base-default ul li:not(:first-child):hover {
  position: relative;
}
.widget.content-popular ul li.type-blogpost .item-content .group {
  float: left;
  text-transform: uppercase;
  font-size: 12px;
  margin-right: 4px;
}
.widget.content-popular ul li.type-blogpost .item-content .date {
  text-transform: uppercase;
  font-size: 12px;
  margin-right: 4px;
}
.widget.content-popular ul li.type-blogpost .item-content .group[data-group-id="428"] {
  color: #fc5c65;
}
.widget.content-popular ul li.type-blogpost .item-content .group[data-group-id="456"] {
  color: #2bcbba;
}
.widget.content-popular .content.base-default ul li:first-child .item-content .title {
  position: relative;
  padding: 20px 0;
}
.widget.content-popular .content.base-default ul li:first-child .item-content .group {
  clip-path: polygon(var(--kinder-skew-pixels) 0px, 100% 0, calc(100% - var(--kinder-skew-pixels)) 100%, 0 100%);
  -webkit-clip-path: polygon(var(--kinder-skew-pixels) 0px, 100% 0, calc(100% - var(--kinder-skew-pixels)) 100%, 0 100%);
  --kinder-skew-pixels: 14px;
  padding: 10px 22px;
}
.widget.content-popular .content.base-default ul li:first-child .item-content .title .inner {
  --kinder-skew-pixels: 12px;
  --line-height: 48px;
  line-height: var(--line-height);
  max-height: calc(var(--line-height) * 3);
  padding: 0 30px;
  clip-path: polygon(var(--kinder-skew-pixels) 0, 100% 0, calc(100% - var(--kinder-skew-pixels)) var(--line-height), 100% var(--line-height), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 2), 100% calc(var(--line-height) * 2), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 3), 100% calc(var(--line-height) * 3), 0 calc(var(--line-height) * 3), var(--kinder-skew-pixels) calc(var(--line-height) * 2), 0 calc(var(--line-height) * 2), var(--kinder-skew-pixels) calc(var(--line-height) * 1), 0 calc(var(--line-height) * 1));
  -webkit-clip-path: polygon(var(--kinder-skew-pixels) 0, 100% 0, calc(100% - var(--kinder-skew-pixels)) var(--line-height), 100% var(--line-height), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 2), 100% calc(var(--line-height) * 2), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 3), 100% calc(var(--line-height) * 3), 0 calc(var(--line-height) * 3), var(--kinder-skew-pixels) calc(var(--line-height) * 2), 0 calc(var(--line-height) * 2), var(--kinder-skew-pixels) calc(var(--line-height) * 1), 0 calc(var(--line-height) * 1));
  background: rgba(0, 0, 0, 0.8);
  font-family: Tomica;
  font-size: 24px;
}
.widget.cms-fragments .fragment a,
.widget.cms-storyline li a {
  color: var(--link-special-font-color);
  text-decoration: underline;
}
.widget.cms-fragments .fragment a:hover,
.widget.cms-storyline li a:hover {
  color: var(--link-special-hover-font-color);
}
.widget.newsletter-signup .content.mailchimp-email {
  font-size: 14px;
}
.widget.newsletter-signup .content.mailchimp-email form {
  display: flex;
  display: -webkit-flex;
}
.widget.newsletter-signup .content.mailchimp-email form .email {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.widget.newsletter-signup .content.mailchimp-email form .email input {
  width: 100%;
  border-radius: 0;
  border-right: none;
}
.widget.newsletter-signup .content.mailchimp-email form input[type="submit"] {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.widget.newsletter-signup .small-print {
  border-top: 1px solid #eaeaea;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 8px;
}
.widget.content-scroller.style-default .content ul li.type-blogpost.style-default,
.widget.content-grid.style-default .content ul li.type-blogpost.style-default {
  /*border-radius: 6px; MOEST VAN KOEN */
}
.widget.share-buttons {
  float: left;
  width: 64px;
  margin-left: -90px;
  position: sticky;
  top: 120px;
  left: 0;
  height: unset;
  width: 90px !important;
}
.widget.cms-fragments .fragment.cms-quote:hover {
  box-shadow: 0 0 0px 12px #f5f5f5;
  background: #f5f5f5;
}
.ui-button {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background-color: #ddd;
  border-color: #ddd;
  color: black;
  padding: 10px 28px 10px 20px;
  clip-path: polygon(0px 0px, 100% 0, calc(90%) 100%, 0 100%);
  -webkit-clip-path: polygon(0px 0px, 100% 0, calc(90%) 100%, 0 100%);
  transition: all 0.25s;
}
.ui-button.special {
  background-color: var(--link-special-font-color);
  color: #ffffff;
  border-color: var(--link-special-font-color);
  font-weight: 600;
  padding: 10px 28px 10px 20px;
}
.ui-button.special:hover {
  background-color: var(--link-special-hover-font-color);
  border-color: var(--link-special-hover-font-color);
}
body[data-template-id="206"] section#content > .content-area:first-child .widget.cms-cover {
  height: 540px;
}
b.mfe-menu-icon > span,
b.mfe-menu-icon::after,
b.mfe-menu-icon::before {
  background-color: #2e3436;
}
.content-area > .wrapper {
  padding: 48px 0;
}
header#header > .container .network .widget.menu .item a {
  border-left: 1px solid #777;
  min-width: 140px;
  padding-left: 32px;
  padding-right: 32px;
}
header#header > .container .network .widget.menu .item:last-child a {
  border-right: 1px solid #777;
}
header#header > .container .network .widget.menu .item.selected a {
  box-shadow: 0 -3px 0px 0px #ff005e inset;
}
header#header .identity img {
  height: 100%;
  max-height: 40px;
  max-width: unset;
}
body[data-page="company-overview-static"] .content-area h1,
body[data-page="company-overview-static"] .content-area h2 {
  font-style: normal;
  font-family: Tomica;
}
body[data-page="company-overview-static"] .layout-2columns::after {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
}
body[data-page="company-overview-static"] .layout-2columns .widget-header {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.35;
}
body[data-page="company-overview-static"] .content-area > .wrapper > h1 {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 64px;
}
body[data-page="company-overview-static"] .content-area > .wrapper > h1::after {
  content: ' ';
  width: 160px;
  height: 4px;
  background: #ff005e;
  display: block;
  margin: 0 auto;
  margin-top: 16px;
}
body[data-page="company-overview-static"] .content-area h2 {
  font-size: 32px;
}
body[data-page="company-overview-static"] .content-area.bg-dark h1,
body[data-page="company-overview-static"] .content-area.bg-dark h2,
body[data-page="company-overview-static"] .content-area.bg-dark p,
body[data-page="company-overview-static"] .content-area.bg-dark .text {
  color: white;
}
body[data-page="company-overview-static"] section#content .layout-3columns {
  margin-top: -48px;
}
body[data-page="company-overview-static"] section#content .layout-3columns .widget.info-block {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  text-align: center;
}
body[data-page="company-overview-static"] section#content .layout-3columns > .wrapper {
  margin-top: -140px;
}
body[data-page="company-overview-static"] section#content .layout-3columns .widget-icon {
  order: 0;
  margin-bottom: 32px;
}
body[data-page="company-overview-static"] section#content .layout-3columns .widget-header {
  order: 1;
  margin-bottom: 8px;
  font-weight: 900;
}
body[data-page="company-overview-static"] section#content .layout-3columns .widget.info-block .content {
  order: 2;
}
body[data-page="company-overview-static"] section#content .layout-3columns .widget-icon img {
  height: 64px;
}
body[data-page="company-overview-static"] section#content .layout-3columns > .layout-item {
  position: relative;
}
body[data-page="company-overview-static"] section#content .layout-3columns > .layout-item:last-child::after {
  display: none;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] .members-container {
  overflow: hidden;
  width: 100%;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] .filters-container {
  margin-bottom: 32px;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] .filters-container .tags {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] .filters-container .tags .tag input {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] .filters-container .tags .tag label {
  padding: 6px 12px;
  display: block;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] .filters-container .tags .tag input:checked + label {
  background: #eee;
  z-index: 10;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-right: -16px;
  margin-bottom: -16px;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li {
  min-width: 26%;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  margin-right: 16px;
  transition: all 0.5s;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li .image {
  height: 100%;
  width: 100%;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.filler {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li:not(.filler) {
  background: white;
  margin-bottom: 16px;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li:not(.filler):not(.big-info) {
  cursor: pointer;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li .container {
  padding-top: 64.25%;
  position: relative;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li .container .wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #f2f2f2;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li .container .wrapper .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li .info .name,
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li .info .title {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding-left: 14px;
  padding-right: 24px;
  display: inline;
  align-self: flex-start;
  -webkit-align-self: flex-start;
  height: 46px;
  line-height: 46px;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li .info .name {
  clip-path: polygon(0px 0px, 100% 0, calc(100% - 10px) 100%, 0 100%);
  -webkit-clip-path: polygon(0px 0px, 100% 0, calc(100% - 10px) 100%, 0 100%);
  font-family: 'Tomica';
  font-weight: bold;
  font-size: 16px;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li .info .title {
  clip-path: polygon(0px 0px, 100% 0, calc(100% - 10px) 100%, 0 100%);
  -webkit-clip-path: polygon(0px 0px, 100% 0, calc(100% - 10px) 100%, 0 100%);
  font-family: 'Open Sans';
  font-weight: normal;
  font-size: 14px;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info {
  min-width: 79%;
  height: 460px;
  border: 1px solid #ececec;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info > .container {
  display: flex;
  display: -webkit-flex;
  height: 100%;
  padding-top: 0;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .info {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  position: relative;
  margin-right: 8px;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .info .job-title {
  margin-bottom: 8px;
  color: #bbb;
  font-size: 16px;
  line-height: 1.2;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .info .employee-name {
  margin-bottom: 8px;
  font-family: Tomica;
  font-size: 24px;
  font-weight: bold;
  color: #111;
  line-height: 1.2;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .info .biography {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .info .social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 32px 16px 24px;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .info .social a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: 36px;
  width: 48px;
  height: 48px;
  color: black;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .info > .wrapper {
  background: none;
  padding: 24px 32px;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .image {
  flex-grow: 2;
  -webkit-flex-grow: 2;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .image .tags {
  position: absolute;
  left: 0;
  top: 0;
  width: 36%;
  font-size: 12px;
  padding-top: 24px;
  padding-left: 16px;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .image .tag {
  padding: 4px 12px;
  background: #ececec;
  display: inline-block;
  margin-right: 0px;
  margin-bottom: 8px;
  clip-path: polygon(8px 0px, 100% 0, calc(100% - 8px) 100%, 0 100%);
  -webkit-clip-path: polygon(8px 0px, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .close {
  width: 84px;
  height: 84px;
  font-size: 38px;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  color: white;
  cursor: pointer;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.hide {
  display: none;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] .filters-container .tags {
  margin-bottom: 48px;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] .filters-container .tags .tag {
  margin-bottom: 8px;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] .filters-container .tags .tag label {
  padding: 8px 26px;
  background: #eee;
  clip-path: polygon(10px 0px, 100% 0, calc(100% - 10px) 100%, 0 100%);
  -webkit-clip-path: polygon(10px 0px, 100% 0, calc(100% - 10px) 100%, 0 100%);
  font-size: 16px;
  color: #555;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.widget.dataset-view > .content[data-dataset-view-id="1"] .filters-container .tags .tag input:checked + label {
  background: #ff005e;
  z-index: 10;
  color: white;
}
.widget.info-block.style-image-left a,
.widget.info-block.style-image-right a {
  display: inline-block;
  padding: 16px 80px;
  background: #ff005e;
  color: #ffffff;
  align-self: flex-start;
  -webkit-align-self: flex-start;
  font-weight: 900;
  font-family: Tomica;
  font-size: 16px;
  margin-top: 24px;
  transition: background 0.25s;
}
.widget.info-block.style-image-left a:hover,
.widget.info-block.style-image-right a:hover {
  background: #b30042;
}
.widget.info-block.style-image-left h2,
.widget.info-block.style-image-right h2 {
  font-weight: 900;
  font-family: Tomica;
  font-size: 24px;
  margin-bottom: 4px;
  line-height: 1.333;
}
.widget.info-block.style-image-left h3,
.widget.info-block.style-image-right h3 {
  font-weight: 900;
  font-family: Tomica;
  font-size: 16px;
  margin-bottom: 12px;
}
.widget.info-block.style-image-left .content h3,
.widget.info-block.style-image-right .content h3 {
  color: #ff005e;
  line-height: 1.1875;
  margin-bottom: 8px;
}
.widget.info-block.style-image-left .content,
.widget.info-block.style-image-right .content {
  padding: 0;
  padding-top: 64px;
  padding-bottom: 64px;
}
.widget.info-block.style-image-left .content p,
.widget.info-block.style-image-right .content p {
  margin-top: 0;
}
.widget.info-block.style-image-left .content,
.widget.info-block.style-image-left .widget-icon,
.widget.info-block.style-image-right .content,
.widget.info-block.style-image-right .widget-icon {
  margin-bottom: 80px;
}
.widget.info-block.style-image-left .widget-icon {
  margin-right: 64px;
}
.widget.info-block.style-image-right .widget-icon {
  margin-left: 64px;
}
.widget.info-block.style-image-left:last-child .content,
.widget.info-block.style-image-left:last-child .widget-icon,
.widget.info-block.style-image-right:last-child .content,
.widget.info-block.style-image-right:last-child .widget-icon {
  margin-bottom: 0;
}
.widget.info-block.style-image-left a svg,
.widget.info-block.style-image-right a svg {
  display: none;
}
.layout-container[data-layout-name="vertical-page-header"] {
  background-size: 100% auto !important;
  background-repeat: no-repeat !important;
  background-position: top !important;
}
.layout-container[data-layout-name="vertical-page-header"] > .overlay {
  top: 100px;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(250, 250, 250, 0) 0%, #fafafa 500px);
  z-index: -1;
}
.layout-container[data-layout-name="vertical-page-header"] h1 {
  font-family: Tomica;
  color: #ffffff;
  font-size: 64px;
  line-height: 80px;
  font-weight: 800;
  text-shadow: 1px 2px rgba(0, 0, 0, 0.2);
}
.layout-container[data-layout-name="vertical-page-header"] .widget.text p {
  font-size: 18px;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}
.layout-container[data-layout-name="vertical-page-header"] .widget.text {
  margin-top: 12px;
}
.layout-container[data-layout-name="vertical-page-header"] > .wrapper {
  padding-top: 120px;
}
.layout-container[data-layout-name="vertical-page-header"] > .background {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 600px;
  background-position: top center;
  z-index: -2;
}
.layout-container[data-layout-name="vertical-page-header"] .widget.content-grid:nth-child(3) .content ul li.type-blogpost.style-default {
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
}
.layout-container[data-layout-name="vertical-page-header"] .widget.content-grid:nth-child(3) .content ul li.type-blogpost.style-default .item-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding: 8px 20px;
}
.layout-container[data-layout-name="vertical-page-header"] .widget.content-grid:nth-child(3) .content ul li.type-blogpost.style-default figure {
  padding-top: 64%;
}
.layout-container[data-layout-name="vertical-page-header"] .widget.content-grid:nth-child(3) .content li.type-blogpost .title {
  height: auto !important;
  position: relative;
  padding: 20px 0;
  --wc-title-font-size: 24px;
  --wc-title-line-height: 2;
  --wc-title-font-color: white;
  text-align: left;
}
.layout-container[data-layout-name="vertical-page-header"] .widget.content-grid:nth-child(3) .content li.type-blogpost .title .inner {
  --kinder-skew-pixels: 12px;
  --line-height: 48px;
  line-height: var(--line-height);
  max-height: calc(var(--line-height) * 3);
  padding: 0 30px;
  clip-path: polygon(var(--kinder-skew-pixels) 0, 100% 0, calc(100% - var(--kinder-skew-pixels)) var(--line-height), 100% var(--line-height), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 2), 100% calc(var(--line-height) * 2), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 3), 100% calc(var(--line-height) * 3), 0 calc(var(--line-height) * 3), var(--kinder-skew-pixels) calc(var(--line-height) * 2), 0 calc(var(--line-height) * 2), var(--kinder-skew-pixels) calc(var(--line-height) * 1), 0 calc(var(--line-height) * 1));
  -webkit-clip-path: polygon(var(--kinder-skew-pixels) 0, 100% 0, calc(100% - var(--kinder-skew-pixels)) var(--line-height), 100% var(--line-height), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 2), 100% calc(var(--line-height) * 2), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 3), 100% calc(var(--line-height) * 3), 0 calc(var(--line-height) * 3), var(--kinder-skew-pixels) calc(var(--line-height) * 2), 0 calc(var(--line-height) * 2), var(--kinder-skew-pixels) calc(var(--line-height) * 1), 0 calc(var(--line-height) * 1));
  background: rgba(0, 0, 0, 0.8);
  font-family: Tomica;
  font-size: 24px;
  font-weight: 900;
}
.layout-container[data-layout-name="vertical-page-header"] .widget.content-grid:nth-child(4) .content ul li.type-blogpost.style-default {
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}
html.mobile .layout-container[data-layout-name="vertical-page-header"] .widget.content-grid:nth-child(3) .content li.type-blogpost .title {
  padding: 0;
}
html.mobile .layout-container[data-layout-name="vertical-page-header"] .widget.content-grid:nth-child(3) .content li.type-blogpost .title .inner {
  font-size: 18px;
  --line-height: 42px;
  padding: 0 24px;
}
html.mobile .layout-container[data-layout-name="vertical-page-header"] h1 {
  font-size: 24px;
  line-height: 1.7;
}
html.mobile .layout-container[data-layout-name="vertical-page-header"] .widget.text p {
  font-size: 14px;
}
html.mobile .layout-container[data-layout-name="vertical-page-header"] .widget.text {
  margin-top: 8px;
}
html.mobile .layout-container[data-layout-name="vertical-page-header"] .widget.content-grid:nth-child(3) {
  --widget-margin-top: 48px !important;
}
html.mobile .layout-container[data-layout-name="vertical-page-header"] .widget.content-grid:nth-child(3) .content ul li.type-blogpost.style-default .item-content {
  padding: 8px;
}
html.mobile .layout-container[data-layout-name="vertical-page-header"] > .background {
  height: 300px;
}
html.mobile .layout-container[data-layout-name="vertical-page-header"] > .overlay {
  top: 50;
  background: linear-gradient(to bottom, rgba(250, 250, 250, 0) 0%, #fafafa 200px);
}
body[data-page="company-overview-static"] .layout-2columns .layout-item.column-1 {
  max-width: 640px;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
body[data-page="company-overview-static"] .layout-2columns .layout-item.column-2 {
  flex-grow: unset;
  -webkit-flex-grow: unset;
  flex-shrink: unset;
  -webkit-flex-shrink: unset;
}
body[data-page="company-overview-static"] .content-area[data-layout-name="visual-kinder"] p::after {
  content: ' ';
  display: block;
  height: 2px;
  width: 112px;
  background: #ff005e;
  margin-top: 24px;
}
body[data-page="company-overview-static"] .content-area[data-layout-name="visual-kinder"] > .wrapper {
  padding-top: 160px;
  padding-bottom: 112px;
}
body[data-page="company-overview-static"] .content-area[data-layout-name="visual-kinder-bottom"] > .wrapper {
  padding-bottom: 96px;
}
body[data-page="company-overview-static"] .content-area:not([data-layout-name="visual-kinder-bottom"]):not([data-layout-name="visual-kinder"]) > .wrapper {
  padding-top: 96px;
  padding-bottom: 96px;
}
body[data-page="company-overview-static"] .content-area[data-layout-name="kinder-updates"] {
  border-top: 1px solid #eaeaea;
}
header#header.style-tall {
  height: 104px;
}
.widget.info-block.style-image-right .content {
  padding-left: 0;
}
.widget.info-block.style-image-left .content {
  padding-right: 0;
}
.widget.info-block.style-image-left .content a.link,
.widget.info-block.style-image-right .content a.link {
  margin-top: 24px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper {
  background-image: ;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 80px;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left h2 {
  font-family: Tomica;
  font-weight: 900;
  font-size: 24px;
  color: #242424;
}
footer#footer.bigfoot > .wrapper .newsletter .newsletter-header {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
footer#footer.bigfoot > .wrapper .newsletter .newsletter-header h2 {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  padding-right: 16px;
}
footer#footer.bigfoot > .wrapper .newsletter .newsletter-header img {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  max-width: 48px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
body[data-page="company-overview-static"] .content-area[data-layout-name="visual-kinder"] > .wrapper::after {
  content: 'Photo: Sightsavers';
  display: block;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 24px;
  right: calc((100vw - 1024px)/2);
  color: white;
  font-size: 16px;
  font-weight: 600;
}
html.desktop .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(1).type-blogpost.style-default .item-content .title,
html.desktop .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(6n).type-blogpost.style-default .item-content .title,
html.desktop .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(6n+7).type-blogpost.style-default .item-content .title {
  position: relative;
  padding: 20px 0;
}
html.desktop .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(1).type-blogpost.style-default .item-content .group,
html.desktop .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(6n).type-blogpost.style-default .item-content .group,
html.desktop .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(6n+7).type-blogpost.style-default .item-content .group {
  clip-path: polygon(var(--kinder-skew-pixels) 0px, 100% 0, calc(100% - var(--kinder-skew-pixels)) 100%, 0 100%);
  -webkit-clip-path: polygon(var(--kinder-skew-pixels) 0px, 100% 0, calc(100% - var(--kinder-skew-pixels)) 100%, 0 100%);
  --kinder-skew-pixels: 14px;
  padding: 10px 22px;
}
html.desktop .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(1).type-blogpost.style-default .item-content .title .inner,
html.desktop .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(6n).type-blogpost.style-default .item-content .title .inner,
html.desktop .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(6n+7).type-blogpost.style-default .item-content .title .inner {
  --kinder-skew-pixels: 12px;
  --line-height: 48px;
  line-height: var(--line-height);
  max-height: calc(var(--line-height) * 3);
  padding: 0 30px;
  clip-path: polygon(var(--kinder-skew-pixels) 0, 100% 0, calc(100% - var(--kinder-skew-pixels)) var(--line-height), 100% var(--line-height), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 2), 100% calc(var(--line-height) * 2), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 3), 100% calc(var(--line-height) * 3), 0 calc(var(--line-height) * 3), var(--kinder-skew-pixels) calc(var(--line-height) * 2), 0 calc(var(--line-height) * 2), var(--kinder-skew-pixels) calc(var(--line-height) * 1), 0 calc(var(--line-height) * 1));
  -webkit-clip-path: polygon(var(--kinder-skew-pixels) 0, 100% 0, calc(100% - var(--kinder-skew-pixels)) var(--line-height), 100% var(--line-height), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 2), 100% calc(var(--line-height) * 2), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 3), 100% calc(var(--line-height) * 3), 0 calc(var(--line-height) * 3), var(--kinder-skew-pixels) calc(var(--line-height) * 2), 0 calc(var(--line-height) * 2), var(--kinder-skew-pixels) calc(var(--line-height) * 1), 0 calc(var(--line-height) * 1));
  background: rgba(0, 0, 0, 0.8);
  font-family: Tomica;
  font-size: 24px;
}
@media (max-width: 1240px) {
  .widget.share-buttons {
    margin-bottom: 24px;
    width: 100% !important;
    float: none;
    position: static;
    top: 0;
    margin-left: 0;
  }
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter .newsletter-header img {
  position: relative;
  transform: none;
  left: unset;
  top: unset;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper {
  background-position: calc(100% - 16px) 32px;
  background-size: auto 56px;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left h2 {
  padding-right: 64px;
}
html.mobile body[data-page="company-overview-static"] .content-area[data-layout-name="visual-kinder"] > .wrapper::after {
  content: 'Photo: Sightsavers';
  display: block;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 24px;
  right: 24px;
  color: white;
  font-size: 16px;
  font-weight: 600;
}
html.mobile header#header.style-tall {
  height: 64px;
}
html.mobile body[data-page="company-overview-static"] .content-area > .wrapper {
  overflow: unset;
}
html.mobile body[data-page="company-overview-static"] .layout.layout-3columns > .layout-item {
  flex-grow: unset;
  -webkit-flex-grow: unset;
  flex-basis: unset;
  -webkit-flex-basis: unset;
}
html.mobile .content-area[data-layout-name="visual-kinder"] {
  background-position: 75% center;
}
html.mobile .content-area[data-layout-name="visual-kinder"] .layout-item.column-1 {
  margin-bottom: 48px;
}
html.mobile .content-area[data-layout-name="visual-kinder"] .layout-item.column-2 {
  display: none;
}
html.mobile body[data-page="company-overview-static"] section#content .widget.info-block .widget-icon {
  flex-grow: unset;
  -webkit-flex-grow: unset;
  flex-basis: unset;
  -webkit-flex-basis: unset;
}
html.mobile body[data-page="company-overview-static"] section#content .widget.info-block .widget-icon img {
  width: 100%;
  height: auto;
}
html.mobile body[data-page="company-overview-static"] .layout-2columns .widget-header {
  font-size: 48px;
}
html.mobile .widget.info-block.style-image-left:last-child .content,
html.mobile .widget.info-block.style-image-left:last-child .widget-icon,
html.mobile .widget.info-block.style-image-right:last-child .content,
html.mobile .widget.info-block.style-image-right:last-child .widget-icon {
  margin-bottom: 48px;
}
html.mobile h1 {
  font-size: 24px;
}
html.mobile .widget.cms-cover > .content.base-default .item-content h1 {
  font-size: 22px;
  --line-height: 44px;
  --kinder-skew-pixels: 14px;
  padding-left: 24px;
  padding-right: 24px;
}
html.mobile .layout-sidebar > .main > .layout-item-container .widget.cms-metadata {
  order: -2;
}
html.mobile .layout-sidebar > .main > .layout-item-container .widget.share-buttons {
  order: -1;
}
html.mobile .widget.cms-metadata {
  margin-bottom: 24px;
}
html.mobile header#header > .container .identity img {
  max-height: 24px;
}
html.mobile header#header > .container .right .search button > div svg {
  font-size: 20px;
  color: inherit;
}
html.mobile .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(1).type-blogpost.style-default .item-content .group,
html.mobile .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(6n).type-blogpost.style-default .item-content .group {
  clip-path: polygon(var(--kinder-skew-pixels) 0px, 100% 0, calc(100% - var(--kinder-skew-pixels)) 100%, 0 100%);
  -webkit-clip-path: polygon(var(--kinder-skew-pixels) 0px, 100% 0, calc(100% - var(--kinder-skew-pixels)) 100%, 0 100%);
  --kinder-skew-pixels: 14px;
  padding: 10px 22px;
}
html.mobile .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(1).type-blogpost.style-default .item-content .title .inner,
html.mobile .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(6n).type-blogpost.style-default .item-content .title .inner {
  --kinder-skew-pixels: 12px;
  --line-height: 42px;
  line-height: var(--line-height);
  max-height: calc(var(--line-height) * 3);
  padding: 0 24px;
  clip-path: polygon(var(--kinder-skew-pixels) 0, 100% 0, calc(100% - var(--kinder-skew-pixels)) var(--line-height), 100% var(--line-height), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 2), 100% calc(var(--line-height) * 2), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 3), 100% calc(var(--line-height) * 3), 0 calc(var(--line-height) * 3), var(--kinder-skew-pixels) calc(var(--line-height) * 2), 0 calc(var(--line-height) * 2), var(--kinder-skew-pixels) calc(var(--line-height) * 1), 0 calc(var(--line-height) * 1));
  -webkit-clip-path: polygon(var(--kinder-skew-pixels) 0, 100% 0, calc(100% - var(--kinder-skew-pixels)) var(--line-height), 100% var(--line-height), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 2), 100% calc(var(--line-height) * 2), calc(100% - var(--kinder-skew-pixels)) calc(var(--line-height) * 3), 100% calc(var(--line-height) * 3), 0 calc(var(--line-height) * 3), var(--kinder-skew-pixels) calc(var(--line-height) * 2), 0 calc(var(--line-height) * 2), var(--kinder-skew-pixels) calc(var(--line-height) * 1), 0 calc(var(--line-height) * 1));
  background: rgba(0, 0, 0, 0.8);
  font-family: Tomica;
  font-size: 18px;
}
html.mobile .widget.content-popular .content.base-default ul li:first-child .item-content .title {
  padding: 20px 0 0 0;
}
html.mobile .widget.content-popular .content.base-default ul li:first-child .item-content .title .inner {
  font-size: 22px;
  --line-height: 44px;
}
html.mobile .widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content .title {
  --wc-mobile-title-font-size: 18px;
}
html.mobile .widget.content-popular .content.base-default ul li .item-content .title {
  --wc-mobile-title-font-size: 18px;
  font-size: var(--wc-mobile-title-font-size);
}
html.mobile body[data-template-id="206"] section#content > .content-area:first-child .widget.cms-cover {
  height: 55vh;
  min-height: 240px;
}
html.mobile .content-area > .wrapper {
  padding: 32px 16px;
}
html.mobile .widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li {
  width: 100%;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.fragment.cms-embed iframe.embed-domain-embed-joinkinder-org {
  width: 100%  !important;
  max-width: 800px !important;
  min-width: 576px !important;
  height: 200px !important;
}
@media (max-width: 640px) {
  .fragment.cms-embed iframe.embed-domain-embed-joinkinder-org {
    max-width: 465px !important;
    min-width: 304px !important;
    height: 340px !important;
  }
}
@media (max-width: 335px) {
  .fragment.cms-embed iframe.embed-domain-embed-joinkinder-org {
    max-width: 465px !important;
    min-width: 243px !important;
    height: 364px !important;
  }
}
@media (max-width: 360px) {
  html.mobile .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(1).type-blogpost.style-default .item-content .title .inner,
  .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(6n).type-blogpost.style-default .item-content .title .inner {
    font-size: 15px !important;
    --line-height: 36px !important;
  }
  html.mobile .widget.content-popular .content.base-default ul li:first-child .item-content .title .inner {
    font-size: 15px !important;
    --line-height: 36px !important;
  }
  html.mobile .widget.content-popular .content.base-default ul li .item-content .title {
    --wc-mobile-title-font-size: 14px;
  }
  html.mobile .widget.cms-cover > .content.base-default .item-content h1 {
    font-size: 16px !important;
    --line-height: 38px;
    --kinder-skew-pixels: 10px;
  }
}
html.mobile .widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info {
  height: auto;
}
html.mobile .widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info > .container {
  flex-direction: column;
}
html.mobile .widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .image .tags {
  display: none;
}
html.mobile .widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .info {
  order: 2;
}
html.mobile .widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .info > .wrapper {
  position: relative;
}
html.mobile .widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li.big-info .info .social {
  position: relative;
  padding-left: 0;
  padding-right: 0;
}
html.mobile .widget.dataset-view > .content[data-dataset-view-id="1"] .filters-container .tags .tag label {
  font-size: 13px;
}
@keyframes animatedBackground {
  0% {
    background-position-y: 9%;
  }
  50% {
    background-position-y: 82%;
  }
  100% {
    background-position-y: 9%;
  }
}
@-moz-keyframes animatedBackground {
  0% {
    background-position-y: 9%;
  }
  50% {
    background-position-y: 82%;
  }
  100% {
    background-position-y: 9%;
  }
}
@-webkit-keyframes animatedBackground {
  0% {
    background-position-y: 9%;
  }
  50% {
    background-position-y: 82%;
  }
  100% {
    background-position-y: 9%;
  }
}
@-ms-keyframes animatedBackground {
  0% {
    background-position-y: 9%;
  }
  50% {
    background-position-y: 82%;
  }
  100% {
    background-position-y: 9%;
  }
}
@-o-keyframes animatedBackground {
  0% {
    background-position-y: 9%;
  }
  50% {
    background-position-y: 82%;
  }
  100% {
    background-position-y: 9%;
  }
}
body[data-page="team-page-cms-page"] .widget.cms-cover figure {
  animation: animatedBackground 120s linear infinite;
  -moz-animation: animatedBackground 120s linear infinite;
  -webkit-animation: animatedBackground 120s linear infinite;
  -ms-animation: animatedBackground 120s linear infinite;
  -o-animation: animatedBackground 120s linear infinite;
}
