/* Theme CSS */

html {
  --page-width: 978px;
  --input-placeholder-font-color: #ccc;
}
* {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}
html {
  width: 100%;
  height: 100%;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  vertical-align: top;
}
input[type="text"],
input[type="email"],
input[type="date"],
input[type="password"],
input[type="button"],
input[type="submit"],
button,
textarea,
select {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-transform: inherit;
  text-decoration: inherit;
}
input[type="text"],
input[type="email"],
input[type="date"],
input[type="password"],
textarea,
select {
  padding: 10px 14px;
  border: 1px solid #ddd;
  background: white;
}
input[type="button"],
input[type="submit"],
button {
  padding: 10px 14px;
  border: 1px solid #ddd;
}
button {
  background: none;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  overflow: visible;
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
}
h1 > strong {
  font-weight: inherit;
  font-style: inherit;
}
.content-area {
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: 50% 50%;
}
.content-area > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 32px 0;
}
.content-area > .wrapper > .widget:last-child {
  margin-bottom: 0;
}
.content-area > .wrapper > h1,
.layout-container .layout-item-container > h1 {
  margin-bottom: 24px;
}
.content-area.mini-height > .wrapper,
.content-area.small-height > .wrapper,
.content-area.medium-height > .wrapper {
  height: 100%;
}
.content-area.full-height > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 100vh;
}
.content-area.hero.full-height {
  height: 100%;
}
.content-area.hero.three-quarters-height {
  height: 75vh;
}
.content-area.hero.three-quarters-height > .wrapper {
  height: 75vh;
}
.content-area.hero.eighty-percent-height {
  height: 80vh;
}
.content-area.hero.eighty-percent-height > .wrapper {
  height: 80vh;
}
.content-area.hero.medium-height {
  height: 600px;
}
.content-area.hero.small-height {
  height: 400px;
}
.content-area.hero.mini-height {
  height: 300px;
}
.content-area.hero.fixed-position > .wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.content-area.hero.style-center {
  display: flex;
  display: -webkit-flex;
}
.content-area.hero.style-center > .wrapper {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.content-area.hero > .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.content-area.hero > .background-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  object-fit: cover;
}
.content-area.hero > .wrapper {
  z-index: 10;
}
.content-area.full-width > .wrapper {
  width: 100%;
  max-width: 100%;
}
.content-area.full-width > .wrapper > h1 {
  max-width: var(--page-width);
  margin: 0 auto;
  margin-bottom: 24px;
}
.content-area.min-padding > .wrapper {
  padding: 12px 0;
}
.content-area.max-padding > .wrapper {
  padding: 32px 96px;
}
.content-area.no-padding > .wrapper {
  padding: 0;
}
.content-area.article {
  padding-top: 240px;
}
.content-area.page-width-thin > .wrapper > * {
  width: 100%;
  max-width: 720px;
}
/*.content-area.page-width-thin.center-contents > .wrapper {
	.display-flex();
	.flex-direction(column);
	.align-items(center);
}*/
.content-area.page-width-dialog {
  min-height: 100vh;
  padding-top: 180px;
}
.content-area.page-width-dialog > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  width: 100%;
  max-width: 580px;
  padding: 32px;
  margin-bottom: 32px;
}
.content-area-header {
  margin-bottom: 24px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}
.content-area.no-top-padding > .wrapper {
  padding-top: 0;
}
.content-area.no-bottom-padding > .wrapper {
  padding-bottom: 0;
}
.content-area.bg-carousel > .backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.content-area.bg-carousel > .backgrounds .bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-position: center center;
  transition: opacity 2s;
}
.content-area.bg-carousel[data-bg-index="0"] > .backgrounds .bg:nth-child(1) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="1"] > .backgrounds .bg:nth-child(2) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="2"] > .backgrounds .bg:nth-child(3) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="3"] > .backgrounds .bg:nth-child(4) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="4"] > .backgrounds .bg:nth-child(5) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="5"] > .backgrounds .bg:nth-child(6) {
  opacity: 1;
}
/* Mobile */
html.mobile .content-area > .wrapper {
  max-width: unset;
  padding: 32px 16px;
  width: 100%;
  overflow: hidden;
}
html.mobile .content-area.full-width.no-padding > .wrapper > h1 {
  width: 100%;
  margin-left: 16px;
  margin-right: 16px;
}
html.mobile .content-area.page-width-dialog {
  padding-bottom: 32px;
  padding-top: 120px;
}
html.mobile .content-area.page-width-dialog > .wrapper {
  margin-left: var(--mobile-gutter, 16px);
  margin-right: var(--mobile-gutter, 16px);
  width: calc(100% - (2 * var(--mobile-gutter, 16px)));
  margin-bottom: 0;
}
html.mobile .content-area.hero.style-center > .wrapper {
  padding-left: 32px;
  padding-right: 32px;
}
html.mobile .content-area.no-padding > .wrapper {
  padding: 0;
}
/* General */
.layout-container > .overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
/* Desktop */
.layout-container.page-width.widgets-center.direction-horizontal > .wrapper .layout-item-container {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout-container.page-width.widgets-center > .wrapper .layout-item.container {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.layout-container.page-width.widgets-center.direction-horizontal > .wrapper .layout-item-container {
  align-items: unset;
  -webkit-align-items: unset;
  justify-content: center;
  -webkit-justify-content: center;
}
.layout-container.page-width .layout-item-container > .widget,
.layout-container.page-width .layout-item-container > .mfe-edit-container > .widget {
  margin-bottom: var(--widget-spacing, 0);
}
.layout-container.page-width .layout-item-container > .widget:last-child,
.layout-container.page-width .layout-item-container > .mfe-edit-container > .widget:last-child {
  margin-bottom: 0px;
}
.layout-sidebar {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout-sidebar > .main {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: var(--main-sidebar-spacing, 80px);
  padding: 24px;
  z-index: 100;
  background: white;
}
.layout-sidebar.main-widget-stretch > .main {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.layout-sidebar.main-widget-stretch > .main .layout-item-container {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.layout-sidebar > .main > .layout-item-container {
  /*.display-flex();
	.flex-direction(column);*/
  display: block;
}
.layout.layout-sidebar > .layout-item.sidebar {
  flex-basis: 320px;
  -webkit-flex-basis: 320px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  padding: var(--padding, 0) !important;
  z-index: 100;
  margin-bottom: 0;
  overflow: hidden;
}
.layout.layout-sidebar > .layout-item.sidebar .layout-item-container {
  background: none;
}
.layout.layout-sidebar .layout-item-container > .widget {
  margin-bottom: var(--widget-margin-bottom, var(--widget-spacing, 0));
}
.layout.layout-sidebar .layout-item-container > .widget:last-child {
  margin-bottom: 0px;
}
.layout-sidebar[data-sticky-sidebar="true"] > .sidebar {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  position: sticky;
  top: 0;
}
.layout-3columns {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout.layout-3columns > .layout-item {
  display: flex;
  display: -webkit-flex;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 80px;
  margin-bottom: 0px;
  padding: 24px;
  z-index: 100;
  background: none;
}
.layout.layout-3columns > .layout-item .layout-item-container {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  width: 100%;
  background: none;
}
.layout-3columns > .layout-item:last-child {
  margin-right: 0;
}
.layout-trinity {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout.layout-trinity > .left {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 32px;
  margin-bottom: 0;
  padding: 24px;
  z-index: 100;
  background: white;
}
.layout-trinity > .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 320px;
  -webkit-flex-basis: 320px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.layout-trinity > .right .layout-item:last-child {
  margin-bottom: 0;
}
.layout-trinity > .right .top {
  z-index: 100;
  margin-bottom: 32px;
}
.layout.layout-trinity > .right .bottom {
  z-index: 100;
}
.layout .layout-item {
  background: white;
  padding: 24px;
}
.layout .layout-item > h1,
.layout .layout-item-container > h1 {
  margin-bottom: 14px;
}
.layout .layout-item.no-padding,
.layout .layout-item .layout-item-container.no-padding {
  padding: 0 !important;
}
.layout .layout-item.no-margin,
.layout .layout-item .layout-item-container.no-margin {
  margin: 0 !important;
}
.layout .layout-item.no-bg {
  background: none !important;
}
.layout .layout-item-container {
  padding: 24px;
  margin-bottom: 24px;
}
.layout .layout-item.layout-grow,
.layout .layout-item .layout-item-container.layout-grow {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
.layout-2columns {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout-2columns > .layout-item .layout-item-container {
  background: none;
}
.layout-2columns > .layout-item {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 80px;
  padding: 24px;
  z-index: 100;
  background: none;
  margin-bottom: 0;
}
.layout-2columns > .layout-item.align-center-vertical {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
}
.layout-2columns > .layout-item:last-child {
  margin-right: 0;
}
.layout-pyramid-1-3 {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.layout-pyramid-1-3 .top {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.layout-pyramid-1-3 .bottom {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout-pyramid-1-3 .bottom .layout-item {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 80px;
  padding: 24px;
  z-index: 100;
  background: none;
  margin-bottom: 0;
}
.layout-pyramid-1-3 .bottom .layout-item:last-child {
  margin-right: 0;
}
.layout {
  height: var(--layout-height, auto);
}
/* Mobile */
html.mobile .layout-sidebar {
  display: block;
}
html.mobile .layout-sidebar > .main {
  margin-right: 0;
}
html.mobile .layout-sidebar > .sidebar {
  display: none;
}
html.mobile .layout {
  margin-left: 0;
  margin-right: 0;
}
html.mobile .layout-3columns {
  flex-direction: column;
  -webkit-flex-direction: column;
  height: auto;
}
html.mobile .layout.layout-3columns > .layout-item {
  margin-right: 0;
  margin-bottom: 64px;
  flex-basis: unset;
  -webkit-flex-basis: unset;
}
html.mobile .layout.layout-3columns > .layout-item:last-child {
  margin-bottom: 0;
}
html.mobile .layout-2columns {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile .layout.layout-2columns > .layout-item {
  margin-right: 0;
  flex-basis: unset;
  -webkit-flex-basis: unset;
  margin-bottom: 32px;
}
html.mobile .layout.layout-2columns > .layout-item:last-child {
  margin-bottom: 0;
}
.ui-accordion {
  background: #fafafa;
  width: 100%;
}
.ui-accordion .group .header {
  padding: 16px;
  font-weight: bold;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}
.ui-accordion .group .header svg {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 16px;
}
.ui-accordion .group .items {
  display: none;
}
.ui-accordion .group.open .items {
  display: block;
}
.ui-accordion .group:not(.open) .header .icon-open {
  display: none;
}
.ui-accordion .group.open .header .icon-open {
  display: block;
}
.ui-accordion .group:not(.open) .header .icon-closed {
  display: block;
}
.ui-accordion .group.open .header .icon-closed {
  display: none;
}
.ui-accordion .group .items {
  background: white;
}
.ui-accordion .group .items .widget.menu .content .menu {
  display: flex;
  flex-direction: column;
}
:root {
  --mobile-gutter: 16px;
}
html {
  overflow-y: scroll;
}
#page-dim {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#page-dim.show {
  opacity: 1;
  pointer-events: all;
}
#hero-widget > .widget {
  height: 100vh;
}
header#header {
  height: var(--header-height, 48px);
}
header#header > .placeholder {
  height: inherit;
}
header#header > .container {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 50000;
  height: inherit;
  background-color: var(--background-color, var(--header-background-color));
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 4px 0px;
}
header#header > .container > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  max-width: var(--page-width);
  height: 100%;
  margin: 0 auto;
}
header#header.full-width > .container > .wrapper {
  max-width: 100%;
  width: 100%;
}
header#header > .container > .wrapper .left {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  height: 100%;
}
header#header > .container .right {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
header#header > .container .right .search {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  overflow: hidden;
}
header#header > .container .search button {
  height: 100%;
}
header#header > .container .search button > div {
  padding: 0 16px;
}
header#header > .container .search button > div svg {
  font-size: var(--menu-item-font-size, 16px);
  color: var(--menu-item-font-color, var(--link-font-color));
}
header#header > .container .widget.menu li.search button > div svg {
  font-size: inherit;
  color: inherit;
}
header#header > .container .search-input-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 32px 0;
  opacity: 0;
  pointer-events: none;
}
header#header > .container .search-input-container.open {
  opacity: 1;
  pointer-events: all;
  z-index: 999999999999;
}
header#header > .container .search-input-container > .wrapper {
  display: flex;
  display: -webkit-flex;
  margin: 0 auto;
  max-width: var(--page-width);
  padding-bottom: 32px;
}
header#header > .container .search-input-container > .wrapper .widget.search-input {
  width: 100%;
}
header#header .identity {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 100%;
  margin-right: 24px;
}
header#header .identity .logo,
header#header .identity .logo > a,
header#header .identity .title {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
header#header .identity img {
  height: calc(100% - 8px);
  margin-right: 12px;
  max-height: 98px;
  max-width: 240px;
}
header#header .identity h1 {
  font-family: var(--title-font-family, "Source Sans Pro", Arial, sans-serif);
  font-size: var(--title-font-size, 24px);
  color: var(--title-font-color, black);
  font-weight: var(--title-font-weight, 900);
  text-transform: var(--title-font-transform, uppercase);
}
header#header .identity h1 a {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  text-transform: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-style: inherit;
}
header#header .wrapper nav {
  height: 100%;
}
header#header .wrapper nav ul {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
header#header .left .widget.menu,
header#header .left .widget.menu .content,
header#header .right .widget.menu,
header#header .right .widget.menu .content {
  height: 100%;
}
header#header .left .menu-left,
header#header .right .menu-right {
  height: 100%;
}
header#header .wrapper nav ul li.item {
  display: block;
}
header#header .wrapper nav ul li.item.icon svg {
  font-size: 16px;
  margin-right: 6px;
}
header#header .wrapper nav ul li.item a,
header#header .wrapper nav ul li > button > div {
  display: flex;
  text-transform: uppercase;
  height: 100%;
  align-items: center;
  padding: 0 12px;
  /* Use H3 as fallback */
  font-family: var(--menu-item-font-family, var(--h3-font-family));
  color: var(--menu-item-font-color, var(--h3-font-color));
  font-size: var(--menu-item-font-size, var(--h3-font-size));
  text-transform: var(--menu-item-text-transform, var(--h3-text-transform));
  line-height: var(--menu-item-line-height, var(--h3-line-height));
  font-weight: var(--menu-item-font-weight, var(--h3-font-weight));
  font-style: var(--menu-item-font-style, var(--h3-font-style));
}
header#header .wrapper nav ul li.search-input > div {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 100%;
}
header#header .wrapper nav ul li.item:not(.selected) a:hover,
header#header .wrapper nav ul li:not(.selected) > button > div:hover {
  color: #ff0032;
  /* Use normal item, then H3 as fallback */
  font-family: var(--menu-item-hover-font-family, var(--menu-item-font-family, var(--h3-font-family)));
  color: var(--menu-item-hover-font-color, var(--menu-item-font-color, var(--h3-font-color)));
  font-size: var(--menu-item-hover-font-size, var(--menu-item-font-size, var(--h3-font-size)));
  text-transform: var(--menu-item-hover-text-transform, var(--menu-item-text-transform, var(--h3-text-transform)));
  line-height: var(--menu-item-hover-line-height, var(--menu-item-line-height, var(--h3-line-height)));
  font-weight: var(--menu-item-hover-font-weight, var(--menu-item-font-weight, var(--h3-font-weight)));
  font-style: var(--menu-item-hover-font-style, var(--menu-item-font-style, var(--h3-font-style)));
}
header#header .wrapper nav ul li.selected {
  /* box-shadow: 0px -3px 0px 0px rgb(255, 0, 50) inset; */
}
header#header .wrapper nav ul li.selected a {
  /* Use normal item, then H3 as fallback */
  font-family: var(--menu-item-selected-font-family, var(--menu-item-font-family, var(--h3-font-family)));
  color: var(--menu-item-selected-font-color, var(--menu-item-font-color, var(--h3-font-color)));
  font-size: var(--menu-item-selected-font-size, var(--menu-item-font-size, var(--h3-font-size)));
  text-transform: var(--menu-item-selected-text-transform, var(--menu-item-text-transform, var(--h3-text-transform)));
  line-height: var(--menu-item-selected-line-height, var(--menu-item-line-height, var(--h3-line-height)));
  font-weight: var(--menu-item-selected-font-weight, var(--menu-item-font-weight, var(--h3-font-weight)));
  font-style: var(--menu-item-selected-font-style, var(--menu-item-font-style, var(--h3-font-style)));
}
/*
  Header - Large
*/
header#header.large {
  position: relative;
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 266px;
}
header#header.large > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding-top: 32px;
}
header#footer.large .left {
  flex-grow: 0;
  -webkit-flex-grow: 0;
  justify-content: center;
  -webkit-justify-content: center;
  display: block;
  overflow: hidden;
}
header#header.large .right {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  height: 48px;
}
header#header.large .identity {
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}
header#header.large .wrapper .identity h1 {
  margin-top: 14px;
}
header#header.large .identity img {
  width: unset;
  height: unset;
  object-fit: unset;
  margin-right: 0;
  max-height: 100%;
  border-radius: 3px;
}
/*
  Header - Hero
*/
header#header.style-hero {
  height: 106px;
  position: absolute;
}
header#header.style-hero > .placeholder {
  height: 0;
}
header#header.style-hero > .container {
  background: none;
  box-shadow: none;
  transition: height 0.4s, background 0.4s;
}
header#header.style-hero > .container > .wrapper {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
body.mfe-theme-header-small header#header.style-hero > .container > .wrapper .identity img {
  max-height: calc(100% - 8px);
}
body.mfe-theme-header-small header#header.style-hero > .container {
  height: 48px;
  background-color: var(--background-color);
}
/*
  Header - Tall
*/
header#header.style-tall {
  height: 106px;
}
header#header.style-tall > .placeholder {
  height: 106px;
}
footer#footer {
  padding: 36px 0;
  background-color: #c0bdbf;
  color: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
footer#footer > .wrapper {
  display: flex;
  display: -webkit-flex;
  max-width: var(--page-width);
  margin: 0 auto;
}
footer#footer .powered-by .mfe-icon {
  margin-right: 8px;
}
footer#footer .powered-by a {
  font-size: inherit;
}
footer#footer.style-social-logos > .wrapper .menu-social > h2,
footer#footer.style-social-logos > .wrapper .logos > h2 {
  margin-bottom: 16px;
}
footer#footer.style-social-logos > .wrapper .menu-social {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
footer#footer.style-social-logos > .wrapper .menu-social ul {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon a {
  width: 48px;
  height: 48px;
  display: flex;
  display: -webkit-flex;
  font-size: 26px;
  background: rgba(93, 93, 93, 0.09);
  border-radius: 48px;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  color: #7a7a7a;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon {
  margin-right: 8px;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon:last-child {
  margin-right: 0;
}
footer#footer.style-social-logos > .wrapper .logos {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
footer#footer.style-social-logos > .wrapper .logos .links {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  align-items: center;
  -webkit-align-items: center;
}
footer#footer.style-social-logos > .wrapper .logos figure {
  margin-left: 32px;
}
footer#footer.style-social-logos > .wrapper .logos figure img {
  max-width: 120px;
  max-height: 120px;
}
footer#footer.style-social-logos > .wrapper:nth-child(2) {
  margin-top: 16px;
  font-size: 14px;
}
footer#footer.style-social-logos > .wrapper:nth-child(2) .powered-by .mfe-icon {
  margin-right: 0;
  margin-left: 4px;
}
footer#footer.style-default > .wrapper > div {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  margin-right: 32px;
}
footer#footer.style-default > .wrapper > div:last-child {
  align-items: flex-end;
  -webkit-align-items: flex-end;
  margin-right: 0;
}
footer#footer.style-default > .wrapper > div > div {
  margin-bottom: 32px;
}
footer#footer.style-default > .wrapper > div > div > h1,
footer#footer.style-default > .wrapper > div > div > h2 {
  margin-bottom: 10px;
}
footer#footer.style-default > .wrapper > div > div:last-child {
  margin-bottom: 0;
}
footer#footer.style-simple > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
}
footer#footer.style-simple .widget.menu ul.menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
footer#footer.style-simple .widget.menu ul.menu li {
  padding: 12px;
}
footer#footer.style-simple .menu-top {
  margin-bottom: 16px;
}
footer#footer.bigfoot {
  padding: 0;
  color: white;
}
footer#footer.bigfoot > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  max-width: unset;
}
footer#footer.bigfoot > .wrapper a:hover {
  opacity: 0.6;
}
footer#footer.bigfoot > .wrapper .newsletter,
footer#footer.kinder-v2 > .wrapper .newsletter {
  background-color: #fafafa;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper {
  display: flex;
  display: -webkit-flex;
  width: var(--page-width);
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  width: 100%;
  max-width: 440px;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left h2,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left h2 {
  margin-bottom: 8px;
}
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left p,
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left p {
  color: #222;
  font-size: 16px;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right form .email input,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right form .email input {
  background: white;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right form input[type="submit"],
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right form input[type="submit"] {
  background-color: #bbbbbb;
  border-color: #bbbbbb;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right form input[type="submit"]:hover,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right form input[type="submit"]:hover {
  background-color: #777777;
  border-color: #777777;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right .intro,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right .intro {
  margin-bottom: 0;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right .intro img,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right .intro img {
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translate(-50%);
  margin-left: 0;
  max-width: 120px;
  max-height: 120px;
}
footer#footer.bigfoot > .wrapper .top {
  background-color: #444;
}
footer#footer.bigfoot > .wrapper .top > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  padding: 48px 0;
}
footer#footer.bigfoot > .wrapper .top .logo {
  display: flex;
  display: -webkit-flex;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
footer#footer.bigfoot > .wrapper .top .logo img {
  max-height: 32px;
}
footer#footer.bigfoot > .wrapper .top .social {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
footer#footer.bigfoot .top .social .widget.menu ul {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
footer#footer.bigfoot .top .social .widget.menu .item a {
  padding: 0 16px;
  color: inherit;
}
footer#footer.bigfoot > .wrapper .bottom {
  background-color: #222;
}
footer#footer.bigfoot > .wrapper .bottom h2 {
  color: inherit;
  margin-bottom: 16px;
  font-size: 18px;
}
footer#footer.bigfoot > .wrapper .bottom > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  padding-top: 64px;
}
footer#footer.bigfoot > .wrapper .bottom > .powered-by {
  max-width: var(--page-width);
  margin: 0 auto;
  padding-bottom: 64px;
  text-align: right;
  font-size: 14px;
  margin-top: 32px;
}
footer#footer.bigfoot > .wrapper .bottom > .powered-by .mfe-icon {
  margin-right: 8px;
}
footer#footer.bigfoot > .wrapper .bottom > .powered-by a {
  font-size: inherit;
}
footer#footer.bigfoot > .wrapper .bottom .column {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  margin-right: 32px;
}
footer#footer.bigfoot > .wrapper .bottom .column:last-child {
  margin-right: 0;
}
footer#footer.bigfoot .bottom .widget.menu .item a {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  color: inherit;
}
footer#footer.bigfoot .top .social .widget.menu .item.icon a svg {
  font-size: 32px;
}
section#content.with-background {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0)), var(--background-image);
  background-attachment: fixed, var(--background-attachment, fixed);
  background-position: 0 0, var(--background-position, 50% 50%);
  background-size: 100% 200px, var(--background-size, cover);
  background-repeat: no-repeat;
  background-color: var(--background-color);
}
section.thin > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
}
section.thin.bg-1 {
  background-color: #032c3a;
  color: white;
}
section.thin.bg-2 {
  background-color: #a7a7a7;
  color: white;
}
section.thin.bg-3 {
  background-color: #1d1d1d;
  color: white;
}
.bg-4 {
  background-color: #a9caf5;
}
b.mfe-menu-icon {
  display: block;
  width: 21px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
b.mfe-menu-icon > span,
b.mfe-menu-icon::after,
b.mfe-menu-icon::before {
  border-radius: 0;
  content: "";
  display: block;
  height: 2px;
  margin: 5px 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  width: 100%;
  background-color: #ffffff;
}
b.mfe-menu-icon > span {
  text-indent: -9999px;
}
header#header.menu-open .right b.mfe-menu-icon::before {
  -webkit-transform: rotate(45deg) translate3d(5px, 5px, 0);
  transform: rotate(45deg) translate3d(5px, 5px, 0);
}
header#header.menu-open .right b.mfe-menu-icon::after {
  -webkit-transform: rotate(-45deg) translate3d(5px, -5px, 0);
  transform: rotate(-45deg) translate3d(5px, -5px, 0);
}
header#header.menu-open .right b.mfe-menu-icon > span {
  opacity: 0;
}
.ui-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-regular-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-italic-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-italic-webfont.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-medium-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-medium-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-mediumitalic-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-mediumitalic-webfont.woff') format('woff');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-bolditalic-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-bolditalic-webfont.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-bold-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-light-webfont.eot');
  src: url('/static/webfonts/europa/europa-light-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-light-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-light-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-light-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-light-webfont.svg#europalight') format('svg');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-lightitalic-webfont.eot');
  src: url('/static/webfonts/europa/europa-lightitalic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-lightitalic-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-lightitalic-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-lightitalic-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-lightitalic-webfont.svg#europalightitalic') format('svg');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-regular-webfont.eot');
  src: url('/static/webfonts/europa/europa-regular-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-regular-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-regular-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-regular-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-regular-webfont.svg#europaregular') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-regularitalic-webfont.eot');
  src: url('/static/webfonts/europa/europa-regularitalic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-regularitalic-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-regularitalic-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-regularitalic-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-regularitalic-webfont.svg#europaitalic') format('svg');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-bold-webfont.eot');
  src: url('/static/webfonts/europa/europa-bold-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-bold-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-bold-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-bold-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-bold-webfont.svg#europabold') format('svg');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-bolditalic-webfont.eot');
  src: url('/static/webfonts/europa/europa-bolditalic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-bolditalic-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-bolditalic-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-bolditalic-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-bolditalic-webfont.svg#europabolditalic') format('svg');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Bold.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Bold.woff') format('woff'), url('/static/webfonts/futura/Futura-Bold.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Bold.svg#webfont') format('svg');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Bold-Italic.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Bold-Italic.woff') format('woff'), url('/static/webfonts/futura/Futura-Bold-Italic.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Bold-Italic.svg#webfont') format('svg');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Book.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Book.woff') format('woff'), url('/static/webfonts/futura/Futura-Book.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Book.svg#webfont') format('svg');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Book-Italic.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Book-Italic.woff') format('woff'), url('/static/webfonts/futura/Futura-Book-Italic.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Book-Italic.svg#webfont') format('svg');
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Light.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Light.woff') format('woff'), url('/static/webfonts/futura/Futura-Light.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Light.svg#webfont') format('svg');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Light-Italic.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Light-Italic.woff') format('woff'), url('/static/webfonts/futura/Futura-Light-Italic.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Light-Italic.svg#webfont') format('svg');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Medium.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Medium.woff') format('woff'), url('/static/webfonts/futura/Futura-Medium.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Medium.svg#webfont') format('svg');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Medium-Italic.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Medium-Italic.woff') format('woff'), url('/static/webfonts/futura/Futura-Medium-Italic.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Medium-Italic.svg#webfont') format('svg');
  font-weight: 500;
  font-style: italic;
}
header#header.standard-header-v2 {
  height: var(--header-height, 48px);
}
header#header.standard-header-v2 .identity .logo.hide {
  display: none;
}
header#header.standard-header-v2 .identity .title a,
header#header.standard-header-v2 .identity .sub-title a {
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}
header#header.standard-header-v2 .identity {
  margin-right: 8px;
}
header#header.standard-header-v2 .identity .title {
  font-family: var(--title-font-family);
  color: var(--title-font-color);
  font-size: var(--title-font-size);
  text-transform: var(--title-text-transform);
  line-height: var(--title-line-height);
  font-weight: var(--title-font-weight);
  font-style: var(--title-font-style);
}
header#header.standard-header-v2 .identity .sub-title {
  font-family: var(--sub-title-font-family);
  color: var(--sub-title-font-color);
  font-size: var(--sub-title-font-size);
  text-transform: var(--sub-title-text-transform);
  line-height: var(--sub-title-line-height);
  font-weight: var(--sub-title-font-weight);
  font-style: var(--sub-title-font-style);
}
body > .default-body-v2 {
  background-color: var(--body-background-color);
  background-image: var(--body-background-image);
}
header#header[data-setting-width="full-width"] > .container > .wrapper {
  max-width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
:root {
  --body-font-family: '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: 'Tomica';
  --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: 700;
  --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,
header#header.classy .mobile-menu {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
html.mobile header#header .right .mobile-menu button > div,
header#header.classy .mobile-menu button > div {
  padding: 12px;
  font-size: 24px;
}
html.mobile header#header.search-open .right .mobile-search {
  display: flex;
  display: -webkit-flex;
}
html.mobile header#header.menu-open .right .widget.menu {
  display: block;
}
html.mobile header#header .right .widget.menu ul {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header .right .widget.menu ul li {
  border-bottom: 1px solid #eee;
}
html.mobile header#header .right .widget.menu ul li:last-child {
  border-bottom: none;
}
html.mobile header#header .right .widget.menu ul li a {
  padding: 12px;
}
html.mobile header#header > .container > .wrapper .right .search button > div {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
  padding: 12px;
  font-size: 24px;
}
html.mobile header#header > .container > .wrapper .right .search button > div svg {
  font-size: inherit;
  color: inherit;
}
html.mobile footer#footer.style-social-logos > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  margin-left: 16px;
  margin-right: 16px;
  text-align: center;
}
html.mobile footer#footer.style-social-logos > .wrapper .menu-social {
  margin-bottom: 32px;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos figure {
  margin-bottom: 16px;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos figure img {
  max-height: unset;
  width: 100%;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos .links figure:first-child {
  margin-left: 0;
}
html.mobile footer#footer.bigfoot {
  padding: 0;
  color: white;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom .column {
  min-width: 34%;
  margin-bottom: 32px;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom .column:nth-child(2) {
  margin-right: 0;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom .column:nth-child(3),
html.mobile footer#footer.bigfoot > .wrapper .bottom .column:nth-child(4) {
  margin-bottom: 0;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom > .wrapper {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding: 32px 16px 0 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom > .powered-by {
  text-align: left;
  padding: 0 16px 16px 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .top > .wrapper {
  padding: 32px 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter {
  padding-left: 16px;
  padding-right: 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  width: 100%;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left,
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right {
  width: 100%;
  max-width: 100%;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right {
  margin-left: 0;
  margin-bottom: 64px;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left p,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left p {
  margin-bottom: 16px;
}
footer .logo-svg-ttl {
  height: 1.8em;
  width: auto;
  vertical-align: middle;
  margin-bottom: 2px;
}
footer#footer .powered-by a {
  font-size: inherit;
  color: inherit;
}
footer#footer.footer-coral {
  padding: 0;
}
footer#footer.footer-coral > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  max-width: 100%;
}
footer.footer-coral .top > .wrapper,
footer.footer-coral .bottom > .wrapper,
footer.footer-coral .powered-by > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
}
footer.footer-coral .top,
footer.footer-coral .bottom,
footer.footer-coral .powered-by {
  padding: 32px 0;
}
footer.footer-coral .top > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
footer.footer-coral .top > .wrapper .left,
footer.footer-coral .top > .wrapper .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
footer.footer-coral .top > .wrapper .left {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
footer.footer-coral .top > .wrapper .left .newsletter-description {
  margin-bottom: 8px;
}
footer.footer-coral .top > .wrapper .right {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
footer.footer-coral #mc-embedded-subscribe-form {
  display: flex;
  display: -webkit-flex;
}
footer.footer-coral .widget.menu ul li.icon a {
  width: 52px;
  height: 52px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-left: 16px;
  border-radius: 99px;
  font-size: 24px;
}
footer#footer.large {
  padding: 0;
  color: #ffffff;
  background-color: #161616;
  margin-top: 84px;
}
footer#footer.large .logos {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}
footer#footer.large .logos a {
  margin-right: 64px;
}
footer#footer.large .logos img {
  height: 80px;
}
footer#footer.large .logos a:last-child {
  margin-right: 0;
}
footer#footer.large > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  max-width: 100%;
}
footer#footer.large .menus-row {
  display: flex;
  display: -webkit-flex;
  max-width: var(--page-width);
  width: 100%;
}
footer#footer.large .menus-row .menu-social {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: var(--page-width);
}
footer#footer.large .menus-row .menu-social ul.menu {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
footer#footer.large .menu-social {
  max-width: var(--page-width);
}
footer#footer.large .menu-social ul.menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  padding-top: 72px;
  padding-bottom: 32px;
}
footer#footer.large .menu-social ul.menu li a {
  padding-left: 16px;
  padding-right: 16px;
}
footer#footer.large .menu-top {
  max-width: var(--page-width);
  width: 100%;
}
footer#footer.large .menu-top ul.menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  padding-top: 24px;
  padding-bottom: 24px;
}
footer#footer.large .menu-top ul.menu li a {
  padding-left: 16px;
  padding-right: 16px;
}
footer#footer.large .menus-row > .menu-top {
  width: auto;
  max-width: unset;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
footer#footer.large .contact {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  max-width: var(--page-width);
  width: 100%;
  color: #808080;
  font-size: 14px;
  line-height: 1.575;
  font-weight: 500;
  padding: 32px 0;
}
footer#footer.large .contact .left,
footer#footer.large .contact .right {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
footer#footer.large .contact .left {
  margin-right: 84px;
}
footer#footer.large .contact .right {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
footer#footer.large .bottom {
  width: 100%;
  padding: 16px 0;
  background: black;
  font-size: 12px;
  font-weight: 100;
  color: #808080;
}
footer#footer.large .bottom > .wrapper {
  max-width: var(--page-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li:not(.icon) {
  margin-right: 14px;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon {
  margin-right: 10px;
}
html.mobile footer.footer-coral .top > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile footer.footer-coral .top > .wrapper .left {
  align-items: center;
  -webkit-align-items: center;
  padding: 0 16px;
  margin-bottom: 32px;
  flex-grow: unset;
  -webkit-flex-grow: unset;
  flex-shrink: unset;
  -webkit-flex-shrink: unset;
  flex-basis: unset;
  -webkit-flex-basis: unset;
}
html.mobile footer.footer-coral .top > .wrapper .right {
  align-items: center;
  -webkit-align-items: center;
  padding: 0 16px;
  flex-grow: unset;
  -webkit-flex-grow: unset;
  flex-shrink: unset;
  -webkit-flex-shrink: unset;
  flex-basis: unset;
  -webkit-flex-basis: unset;
}
html.mobile footer.footer-coral .powered-by {
  padding: 32px 16px;
  text-align: center;
}
footer.footer-coral .widget.newsletter-signup {
  width: 100%;
}
footer.footer-coral .widget.newsletter-signup .content.mailchimp-email .email {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
footer.footer-coral .widget.newsletter-signup .content.mailchimp-email .email input[type="email"] {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  width: 100%;
}
#footer.kinder-v2 {
  padding: 0;
}
#footer.kinder-v2.kinder:not(.with-bottom-bar) {
  height: 72px !important;
}
#footer.kinder-v2 h2 {
  font-size: 18px;
  color: white;
  line-height: 1.8;
  font-weight: 700;
}
#footer.kinder-v2 > .wrapper {
  max-width: unset;
  flex-direction: column;
}
#footer.kinder-v2 .top > .wrapper,
#footer.kinder-v2 .bottom > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
}
#footer.kinder-v2 .top {
  background-color: #222;
}
#footer.kinder-v2 .top .column.mobile {
  display: none;
}
#footer.kinder-v2 .top .column .widget.menu ul li a {
  padding: 2px 0;
  display: inline-block;
  font-weight: 500;
}
#footer.kinder-v2 .top .social .widget.menu ul li a {
  font-size: 20px;
}
#footer.kinder-v2 .top > .wrapper {
  padding: 80px 0;
  display: flex;
}
#footer.kinder-v2 .top > .wrapper > * {
  flex-basis: 0%;
  flex-grow: 1;
  flex-shrink: 1;
}
#footer.kinder-v2 .bottom {
  background-color: #444;
}
#footer.kinder-v2 .bottom > .wrapper {
  padding: 48px 0;
  display: flex;
  align-items: center;
}
#footer.kinder-v2 .bottom .logo {
  margin-right: 42px;
}
#footer.kinder-v2 .bottom .logo img {
  height: 30px;
}
#footer.kinder-v2 .bottom .note {
  color: white;
  font-size: 12px;
  line-height: 1.8;
}
#footer.kinder-v2 .bottom .note a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
#footer.kinder-v2 .bottom .powered-by {
  color: white;
  font-size: 13px;
  margin-left: auto;
}
#footer.kinder-v2 .bottom .powered-by svg {
  height: 24px;
}
@media (max-width: 1200px) {
  #footer.kinder-v2 .bottom > .wrapper {
    flex-direction: column;
  }
  #footer.kinder-v2 .bottom .logo {
    margin-right: unset;
  }
  #footer.kinder-v2 .bottom .powered-by {
    margin-left: unset;
  }
  #footer.kinder-v2 .bottom .note {
    padding: 32px 0;
  }
}
@media (max-width: 1062px) {
  #footer.kinder-v2 > .wrapper {
    flex-direction: column;
  }
  #footer.kinder-v2 .top > .wrapper {
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
    max-width: unset;
  }
  #footer.kinder-v2 .bottom > .wrapper {
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 786px) {
  #footer.kinder-v2 .top > .wrapper {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 360px;
    flex-wrap: wrap;
  }
  #footer.kinder-v2 .top > .wrapper > * {
    min-width: 160px;
  }
  #footer.kinder-v2 .top .column {
    margin-bottom: 32px;
  }
  #footer.kinder-v2 .top .column.mobile {
    display: block;
  }
  #footer.kinder-v2 .top .social h2 {
    display: none;
  }
  #footer.kinder-v2 .top .social .widget.menu ul {
    justify-content: center;
  }
  #footer.kinder-v2 .bottom .note span {
    display: none;
  }
}
@media (max-width: 960px) {
  footer#footer.large .contact,
  footer#footer.large .menus-row,
  footer#footer.large .bottom > .wrapper {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  footer#footer.large .bottom > .wrapper {
    align-items: center;
    -webkit-align-items: center;
  }
  footer#footer.large .menus-row .menu-social ul.menu,
  footer#footer.large .menus-row .menu-top ul.menu {
    justify-content: center;
    -webkit-justify-content: center;
  }
  footer#footer.large .menus-row > .menu-top {
    justify-content: center;
    -webkit-justify-content: center;
  }
  footer#footer.large .contact {
    padding: 0 0 32px 0;
  }
  footer#footer.large .contact .left {
    margin-right: 0;
    padding: 0 16px;
    margin-bottom: 24px;
  }
  footer#footer.large .contact .right {
    justify-content: center;
    -webkit-justify-content: center;
    padding: 0 16px;
  }
  footer#footer.large .contact .left,
  footer#footer.large .contact .right {
    flex-basis: unset;
    -webkit-flex-basis: unset;
    flex-grow: unset;
    -webkit-flex-grow: unset;
    flex-shrink: unset;
    -webkit-flex-shrink: unset;
  }
  footer#footer.bigfoot > .wrapper .top .logo,
  footer#footer.kinder-v2 > .wrapper .top .logo {
    display: flex;
    display: -webkit-flex;
    flex-grow: unset;
    -webkit-flex-grow: unset;
    flex-basis: unset;
    -webkit-flex-basis: unset;
    justify-content: center;
    -webkit-justify-content: center;
    margin-bottom: 32px;
  }
  footer#footer.bigfoot .top .social .widget.menu ul,
  footer#footer.kinder-v2.top .social .widget.menu ul {
    justify-content: center;
    -webkit-justify-content: center;
  }
  footer#footer.bigfoot > .wrapper .top > .wrapper,
  footer#footer.kinder-v2 > .wrapper .top > .wrapper {
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
  }
}
header#header.classy .left .menu {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
  width: 100%;
}
header#header.classy > .menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 420px;
  background: #383838;
  z-index: 50000;
  transform: translateX(-420px);
  transition: transform 0.2s;
}
header#header.classy .menu-left {
  position: absolute;
  right: 50%;
  transform: translateX(-50px);
}
header#header.classy .menu-right {
  position: absolute;
  left: 50%;
  transform: translateX(50px);
}
header#header.classy > .container > .wrapper .middle {
  width: 100%;
}
header#header.classy.menu-open b.mfe-menu-icon::before {
  -webkit-transform: rotate(45deg) translate3d(5px, 5px, 0);
  transform: rotate(45deg) translate3d(5px, 5px, 0);
}
header#header.classy.menu-open b.mfe-menu-icon::after {
  -webkit-transform: rotate(-45deg) translate3d(5px, -5px, 0);
  transform: rotate(-45deg) translate3d(5px, -5px, 0);
}
header#header.classy.menu-open b.mfe-menu-icon > span {
  opacity: 0;
}
html.desktop.header-menu-open {
  overflow: hidden;
}
html.desktop header#header.classy > .menu,
html.desktop header#header.classy > .container,
html.desktop section#content,
html.desktop footer#footer {
  transition: transform 0.2s;
}
header#header .identity .logo.hide {
  display: none;
}
html.desktop.header-menu-open header#header.classy > .menu {
  transform: translateX(0);
}
html.desktop.header-menu-open header#header.classy > .container,
html.desktop.header-menu-open section#content,
html.desktop.header-menu-open footer#footer {
  transform: translateX(420px);
}
header#header.kinder {
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 142px !important;
}
header#header.kinder:not(.with-bottom-bar) {
  height: 56px !important;
}
header#header.kinder .mobile h2 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
header#header.kinder > .container .mobile .widget.menu .item a {
  padding: 8px 0;
  font-size: 14px;
}
header#header.kinder > .container .mobile .widget.menu .item:not(.selected):not(:hover) a {
  color: #9b9b9b;
}
html.mobile header#header.kinder .right .widget.menu ul li {
  border-bottom: none;
}
html.mobile header#header.kinder .mobile .left .widget.menu ul,
html.mobile header#header.kinder .mobile .right .widget.menu ul {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header.kinder {
  height: 124px !important;
}
html.mobile header#header.kinder:not(.with-bottom-bar) {
  height: 56px !important;
}
html.mobile header#header.kinder .container .wrapper > .bottom .search {
  display: none;
}
html.mobile header#header.kinder b.mfe-menu-icon > span,
html.mobile header#header.kinder b.mfe-menu-icon::after,
html.mobile header#header.kinder b.mfe-menu-icon::before {
  background-color: #222222;
}
html.mobile header#header.kinder.with-bottom-bar > .container .right .search button > div svg {
  color: #222222;
}
header#header.kinder > .container > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  max-width: unset;
}
html.mobile header#header.kinder > .container > .wrapper {
  height: auto;
}
header#header.kinder .top,
header#header.kinder .bottom {
  display: flex;
  display: -webkit-flex;
  width: 100%;
}
header#header.kinder .top > .wrapper,
header#header.kinder .bottom > .wrapper {
  display: flex;
  display: -webkit-flex;
  width: 100%;
}
header#header.kinder .bottom > .wrapper {
  align-items: center;
  -webkit-align-items: center;
}
header#header.kinder:not(.with-bottom-bar) > .container > .wrapper .identity img {
  filter: none;
}
html.mobile header#header.kinder > .container > .wrapper > .bottom .widget.menu .item a {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
html.mobile header#header.kinder > .container > .wrapper > .bottom > .wrapper {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
header#header.kinder .top {
  height: 56px;
}
header#header.kinder .bottom {
  height: 86px;
}
html.mobile header#header.kinder .bottom {
  height: 68px;
}
html.mobile header#header.kinder .mobile .bottom {
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
html.mobile header#header.kinder > .container > .wrapper > .bottom {
  overflow-y: scroll;
}
html.mobile header#header.kinder > .container .right .search {
  display: flex;
  display: -webkit-flex;
}
header#header.kinder .top {
  background: #fafafa;
  border-bottom: 1px solid #eaeaea;
}
header#header.kinder .bottom {
  border-bottom: 1px solid #eaeaea;
}
header#header.kinder:not(.with-bottom-bar) .top {
  background: white;
  border-bottom: none;
}
html.cookie-hide-kinder-header-explanation header#header .quick-explanation {
  display: none;
}
html.mobile header#header.kinder .container > .wrapper > .mobile .right .widget.menu {
  position: static;
}
html.mobile header#header.kinder .container > .wrapper > .mobile .left,
html.mobile header#header.kinder .container > .wrapper > .mobile .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  padding-top: 48px;
  padding-left: 24px;
}
header#header .quick-explanation {
  height: 48px;
  background: #fafafa;
  color: #242424;
  font-size: 12px;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}
header#header .quick-explanation img {
  height: 14px;
  margin-right: 8px;
}
html.mobile header#header .quick-explanation img {
  position: absolute;
  left: 16px;
  bottom: 18px;
}
html.mobile header#header .quick-explanation {
  height: 94px;
}
header#header .quick-explanation .wrapper {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  max-width: var(--page-width);
  margin: 0 auto;
  position: relative;
  height: 100%;
}
html.mobile header#header .quick-explanation .wrapper {
  text-align: center;
  padding: 12px 16px 0 16px;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
header#header .quick-explanation .hide {
  position: absolute;
  right: 0;
  color: #bbb;
  font-weight: 600;
  padding-top: 16px;
  padding-left: 16px;
  padding-bottom: 16px;
}
html.mobile header#header .quick-explanation .hide {
  padding-top: 12px;
  padding-left: 16px;
  padding-bottom: 16px;
  padding-right: 24px;
  bottom: 0;
}
header#header .quick-explanation a {
  display: none;
}
html.mobile header#header .quick-explanation a {
  position: absolute;
  right: 0;
  color: #ff005e;
  bottom: 14px;
  left: 0;
  font-size: 12px;
  z-index: 0;
  display: block;
}
header#header .quick-explanation .hide svg {
  margin-left: 8px;
}
html.mobile:not(.cookie-hide-kinder-header-explanation) header#header.kinder {
  /*height: 218px !important;*/
}
html.desktop header#header > .container .top .widget.menu .item.selected a {
  box-shadow: 0 -2px 0px 0px #ff005e inset !important;
}
header#header.kinder .container .wrapper > .mobile {
  display: none;
  flex-direction: column;
  -webkit-flex-direction: column;
  position: fixed;
  left: 0;
  top: 56px;
  right: 0;
  height: auto;
  bottom: 0;
  background: #ffffff;
}
header#header.kinder.menu-open .container .wrapper > .mobile {
  display: flex;
  display: -webkit-flex;
  z-index: 9999999999;
}
html.desktop header#header.kinder.with-bottom-bar > .container .top .search button {
  display: none;
}
html.mobile header#header.kinder.menu-open .container > .wrapper > .top .right .widget.menu {
  display: none;
}
header#header > .container .search-input-container {
  border-top: 1px solid #eaeaea;
}
header#header.kinder .container .wrapper > .mobile {
  border-top: 1px solid #eaeaea;
}
html.mobile:not(.cookie-hide-kinder-header-explanation) header#header.kinder:not(.with-bottom-bar) {
  height: 56px !important;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu,
html.mobile header#header.kinder .mobile .bottom .widget.menu .content,
html.mobile header#header.kinder .mobile .bottom .widget.menu nav,
html.mobile header#header.kinder .mobile .bottom .widget.menu ul {
  width: 100%;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu ul li.icon {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu ul li.item.icon svg {
  font-size: 24px;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu ul li.item.icon a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
header#header.network-header > .container {
  transition: transform 0.25s;
}
body.mfe-theme-header-small header#header.network-header > .container {
  transform: translateY(-48px);
}
header#header.network-header > .container > .network > .wrapper,
header#header.network-header > .container > .site > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  max-width: var(--page-width);
  height: 100%;
  margin: 0 auto;
}
header#header.network-header.full-width > .container > .network > .wrapper,
header#header.network-header.full-width > .container > .site > .wrapper {
  max-width: 100%;
}
header#header.network-header > .container {
  flex-direction: column;
  -webkit-flex-direction: column;
}
header#header.network-header > .container > .network > .wrapper .left,
header#header.network-header > .container > .site > .wrapper .left {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  height: 100%;
}
header#header.network-header > .container > .network > .wrapper .right,
header#header.network-header > .container > .site > .wrapper .right {
  display: flex;
  display: -webkit-flex;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  height: 100%;
}
header#header.network-header > .container > .network {
  height: 48px;
  background-color: var(--background-color, transparent);
}
header#header.network-header .site .mobile-network {
  background-color: var(--background-color, transparent);
}
header#header.network-header > .container > .network .left {
  font-family: var(--network-title-font-family);
  color: var(--network-title-font-color);
  font-size: var(--network-title-font-size);
  line-height: var(--network-title-line-height);
  text-transform: var(--network-title-text-transform);
  font-weight: var(--network-title-font-weight);
}
header#header.network-header > .container > .site {
  height: 104px;
}
header#header.network-header .mobile-network {
  display: none;
}
header#header.network-header .site .right .widget.menu {
  position: relative;
  top: unset;
  background: none;
  width: 100%;
}
header#header.network-header .site .right .menu-container {
  position: relative;
  height: 100%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header.network-header .network {
  display: none;
}
html.mobile body.mfe-theme-header-small header#header.network-header > .container {
  transform: translateY(0);
}
html.mobile header#header.network-header .right .search-input-container > .wrapper {
  padding-left: 16px;
  padding-right: 16px;
}
html.mobile header#header.network-header .right .search-input-container {
  padding-top: 0;
  padding-bottom: 0;
}
html.mobile header#header.network-header .right .search-input-container .widget.search-input .input .icon {
  display: none;
}
html.mobile header#header.network-header {
  height: 64px;
}
html.mobile header#header.network-header > .container > .site {
  height: 100%;
}
html.mobile header#header.network-header .site > .wrapper > .left {
  padding-left: 10px;
}
html.mobile header#header.network-header .site > .wrapper > .right {
  padding-right: 10px;
}
html.mobile header#header.network-header .mobile-network {
  display: flex;
  display: -webkit-flex;
}
html.mobile header#header.network-header .mobile-network > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul {
  flex-direction: row;
  -webkit-flex-direction: row;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li {
  border-bottom: none;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li {
  border-right: 1px solid #777;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li:last-child {
  border-right: none;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item a,
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item.selected a {
  text-decoration: none;
  text-align: center;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item.selected a {
  box-shadow: 0 -3px 0px 0px #ff005e inset;
}
html.mobile header#header.network-header .site .right .menu-container {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  height: auto;
  background: white;
  display: none;
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header.network-header.menu-open .site .right .menu-container {
  display: flex;
  display: -webkit-flex;
}
header#header.kinder-v4 {
  height: 136px !important;
}
header#header.kinder-v4.kinder:not(.with-bottom-bar) {
  height: 72px !important;
}
header#header.kinder-v4 > .container .top .left .widget.menu .item a {
  padding: 0 12px;
}
header#header.kinder-v4 > .container .top .left .widget.menu .item:first-child a {
  padding-left: 0;
}
header#header.kinder-v4 .wrapper .right .user .signup {
  padding-right: 0;
}
header#header.kinder-v4 .identity {
  margin-right: 0;
}
header#header.kinder-v4 .identity .logo {
  width: 100%;
}
header#header.kinder-v4 .identity .logo > a {
  width: 100%;
  pointer-events: all;
}
header#header.kinder-v4 .top > .wrapper {
  position: relative;
  padding: 0 56px;
}
header#header > .container > .wrapper .center {
  position: absolute;
  pointer-events: none;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
  width: 120px;
}
header#header.kinder-v4 > .container > .wrapper .identity img {
  max-width: unset;
  margin-right: 0;
  width: 100%;
  height: auto;
  max-height: 30px;
}
header#header.kinder-v4 .bottom {
  height: 64px;
  background: #fafafa;
}
header#header.kinder-v4 .bottom > .wrapper .search {
  margin-left: 0 !important;
}
header#header.kinder-v4 .bottom > .wrapper {
  justify-content: center;
}
header#header.kinder-v4 .top {
  height: 72px;
  background: white;
  flex-shrink: 0;
  position: relative;
  z-index: 20;
}
header#header.kinder-v4 .login-container,
header#header.kinder-v4 .signup-container {
  position: absolute;
  top: 73px;
  left: 0;
  right: 0;
  background: #fafafa;
  padding: 80px 148px 0 148px;
  opacity: 0;
  pointer-events: none;
  height: calc(100vh - 73px);
  transform: translateY(-100%);
  transition: transform 0.6s ease 0s;
}
header#header.kinder-v4 .login-container .close,
header#header.kinder-v4 .signup-container .close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
}
header#header.kinder-v4 .login-container > .wrapper,
header#header.kinder-v4 .signup-container > .wrapper {
  position: relative;
}
header#header.kinder-v4 .login-container.open,
header#header.kinder-v4 .signup-container.open {
  opacity: 1;
  pointer-events: all;
  z-index: 10;
  transform: translateY(0);
}
header#header.kinder-v4 .login-container .columns,
header#header.kinder-v4 .signup-container .columns {
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
}
header#header.kinder-v4 .login-container a.column:hover h1,
header#header.kinder-v4 .signup-container a.column:hover h1 {
  color: #ff005e;
}
header#header.kinder-v4 .login-container .column,
header#header.kinder-v4 .signup-container .column {
  max-width: 500px;
  display: block;
  margin: 0 32px;
  color: #222;
  font-weight: 500;
}
header#header.kinder-v4 .login-container .column h1,
header#header.kinder-v4 .signup-container .column h1 {
  font-size: 32px;
  line-height: 48px;
  font-family: Tomica;
  font-weight: 900;
}
header#header.kinder-v4 .login-container .column h1::after,
header#header.kinder-v4 .signup-container .column h1::after {
  content: ' ';
  height: 2px;
  display: block;
  background: #eaeaea;
  margin-top: 24px;
  margin-bottom: 24px;
}
header#header.kinder-v4 .login-container .column p,
header#header.kinder-v4 .signup-container .column p {
  font-size: 16px;
  line-height: 28px;
  color: #222222;
  font-weight: 400;
}
header#header.kinder-v4 .login-container .column ul,
header#header.kinder-v4 .signup-container .column ul {
  list-style: disc;
  list-style-position: inside;
}
header#header.kinder-v4 .login-container .column ul li,
header#header.kinder-v4 .signup-container .column ul li {
  padding-left: 8px;
}
header#header.kinder-v4 .mobile-menu {
  display: none;
}
header#header.kinder-v4 .login-container .column figure,
header#header.kinder-v4 .signup-container .column figure {
  margin-bottom: 24px;
}
header#header.kinder-v4 .login-container .column figure img,
header#header.kinder-v4 .signup-container .column figure img {
  height: 106px;
}
header#header.kinder-v4 .login-container .column h1 svg,
header#header.kinder-v4 .signup-container .column h1 svg {
  margin-left: 24px;
}
html.mobile header#header.kinder-v4 .identity .logo {
  width: auto;
}
html.mobile header#header.kinder-v4 .identity .logo > a {
  width: auto;
}
html.mobile header#header.kinder-v4 > .container > .wrapper .identity img {
  width: auto;
  height: 24px;
  max-height: unset;
}
html.mobile header#header.kinder-v4 .top .left .widget.menu {
  display: none;
}
html.mobile header#header.kinder-v4 .top .wrapper .left {
  flex-grow: 0;
  margin-right: 12px;
}
html.mobile header#header.kinder-v4 > .container > .wrapper .center {
  position: relative;
  left: unset;
  top: unset;
  transform: unset;
  width: auto;
}
html.mobile header#header.kinder-v4 .mobile-menu {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
html.mobile header#header.kinder-v4 > .container > .wrapper .right {
  margin-left: auto;
}
html.mobile header#header.kinder-v4 > .container .right .search {
  display: none;
}
html.mobile header#header.kinder-v4 .mobile-menu button {
  width: 48px;
}
html.mobile header#header.kinder-v4 .mobile-menu button div {
  display: flex;
  align-items: center;
  justify-content: center;
}
html.mobile header#header.kinder-v4 .top {
  height: 56px;
}
html.mobile header#header.kinder-v4 .container .wrapper > .mobile {
  border-top: none;
}
html.mobile header#header.kinder-v4 .mobile .top {
  height: 56px;
  overflow-y: scroll;
  flex-direction: column;
}
html.mobile header#header.kinder-v4 .top > .wrapper {
  padding: 0 !important;
}
html.mobile header#header.kinder-v4 .login-container,
html.mobile header#header.kinder-v4 .signup-container {
  padding: 0;
  top: 56px;
  height: calc(100vh - 56px);
}
html.mobile header#header.kinder-v4 .login-container .columns,
html.mobile header#header.kinder-v4 .signup-container .columns {
  flex-direction: column;
}
html.mobile header#header.kinder-v4 .login-container .column,
html.mobile header#header.kinder-v4 .signup-container .column {
  display: flex;
  margin: 0;
  padding: 16px 16px;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  max-width: unset;
}
html.mobile header#header.kinder-v4 .login-container .column svg,
html.mobile header#header.kinder-v4 .signup-container .column svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
html.mobile header#header.kinder-v4 .login-container .column p,
html.mobile header#header.kinder-v4 .login-container .column ul,
html.mobile header#header.kinder-v4 .signup-container .column p,
html.mobile header#header.kinder-v4 .signup-container .column ul {
  display: none;
}
html.mobile header#header.kinder-v4 .login-container .column img,
html.mobile header#header.kinder-v4 .signup-container .column img {
  height: 60px;
}
html.mobile header#header.kinder-v4 .login-container .column h1,
html.mobile header#header.kinder-v4 .signup-container .column h1 {
  margin-left: 108px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
}
html.mobile header#header.kinder-v4 .login-container .column h1::after,
html.mobile header#header.kinder-v4 .signup-container .column h1::after {
  display: none;
}
html.mobile header#header.kinder-v4 .login-container .column figure,
html.mobile header#header.kinder-v4 .signup-container .column figure {
  width: 0;
}
html.mobile header#header.kinder-v4 .login-container .column figure,
html.mobile header#header.kinder-v4 .signup-container .column figure {
  margin-bottom: 0;
}
html.mobile header#header.kinder-v4 .login-container .column figure img,
html.mobile header#header.kinder-v4 .signup-container .column figure img {
  height: 56px;
}
html.mobile header#header.kinder-v4 > .container > .wrapper > .bottom {
  position: relative;
  z-index: 5;
}
html.mobile header#header.kinder-v4 .login-container .close,
html.mobile header#header.kinder-v4 .signup-container .close {
  display: none;
}
html.mobile header#header.kinder-v4 .ui-accordion .group .items .widget.menu .content .menu .item a {
  padding: 12px 16px;
  border-bottom: 1px solid #eaeaea;
}
html.mobile header#header.kinder-v4 > .container .mobile .search-input-container {
  position: relative;
  top: unset;
  opacity: 1;
  padding: 0;
  pointer-events: all;
  border: none;
}
html.mobile header#header.kinder-v4 > .container .mobile .search-input-container > .wrapper {
  padding-bottom: 0;
}
html.mobile header#header.kinder-v4 > .container .mobile .search-input-container .widget.search-input .input {
  padding-left: 0;
  padding-right: 16px;
  border-bottom: 1px solid #eaeaea;
}
html.mobile header#header.kinder-v4 > .container .mobile .search-input-container .widget.search-input .input .icon {
  order: 2;
}
html.mobile header#header.kinder-v4 > .container .mobile .search-input-container .widget.search-input .input input {
  padding: 24px 16px;
}
header#header.kinder-v4.menu-open b.mfe-menu-icon::before {
  -webkit-transform: rotate(45deg) translate3d(5px, 5px, 0);
  transform: rotate(45deg) translate3d(5px, 5px, 0);
}
header#header.kinder-v4.menu-open b.mfe-menu-icon::after {
  -webkit-transform: rotate(-45deg) translate3d(5px, -5px, 0);
  transform: rotate(-45deg) translate3d(5px, -5px, 0);
}
header#header.kinder-v4.menu-open b.mfe-menu-icon > span {
  opacity: 0;
}
#page.body-header-left {
  padding-left: 300px;
}
#page.body-header-left > nav {
  width: 300px;
  position: fixed;
  left: 0;
  bottom: 0;
  top: 0;
}
#page.body-header-left .mfe-edit-container[data-setting-type="block"][data-setting-sub-type="header"] {
  width: 300px;
  position: fixed;
  left: 0;
  bottom: 0;
  top: 0;
}


/* Site custom CSS */

@keyframes explore-arrow {
  0% {
    transform: rotate(90deg) translateX(0px);
  }
  25% {
    transform: rotate(90deg) translateX(8px);
  }
  75% {
    transform: rotate(90deg) translateX(-8px);
  }
  100% {
    transform: rotate(90deg) translateX(0px);
  }
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6u8w4BMUTPHjxsAUi-qJCY.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6u8w4BMUTPHjxsAXC-q.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6u_w4BMUTPHjxsI5wq_FQft1dw.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6u_w4BMUTPHjxsI5wq_Gwft.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6uyw4BMUTPHjxAwXjeu.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6uyw4BMUTPHjx4wXg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6u9w4BMUTPHh6UVSwaPGR_p.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6u9w4BMUTPHh6UVSwiPGQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.widget.html.name-load-more-html {
  text-align: center;
}
header#header .wrapper .right .user button.selected {
  box-shadow: none !important;
}
header#header .wrapper .right .user button.selected::after {
  content: ' ';
  display: block;
  background: red;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
body {
  --page-width: 1144px;
  --body-font-family: 'Lato';
  --body-font-size: 16px;
  --body-font-color: #71778a;
  --body-tiny-font-size: 14px;
  --link-font-family: 'Lato';
  --link-hover-font-family: 'Lato';
  --link-font-size: 16px;
  --link-hover-font-size: 16px;
  --h1-font-family: 'Lato';
  --h1-font-size: 48px;
  --h1-font-size-mobile: 32px;
  --h1-font-color: #2a3555;
  --h2-font-family: 'Lato';
  --h2-font-size: 32px;
  --h2-font-color: #2a3555;
  --h2-font-size-mobile: 28px;
  --h3-font-family: 'Lato';
  --h3-font-color: #2a3555;
  --h3-font-size: 24px;
  --h3-font-size-mobile: 22px;
  --h3-font-weight: 700;
  --h3-line-height: 1.3;
  --menu-item-font-family: 'Lato';
  --wc-title-font-family: 'Lato';
  --wc-title-font-size: 24px;
  --wc-title-font-color: #2a3555;
  --wc-title-fullimage-font-family: 'Lato';
  --wc-summary-font-family: 'Lato';
  --wc-category-block-484-bg-color: #ff6c9a;
  --wc-category-block-484-fg-color: white;
  --wc-category-text-484-fg-color: #ff6c9a;
  --wc-category-block-485-bg-color: #fd966d;
  --wc-category-block-485-fg-color: white;
  --wc-category-text-485-fg-color: #fd966d;
  --wc-category-block-486-bg-color: #4fcf99;
  --wc-category-block-486-fg-color: white;
  --wc-category-text-486-fg-color: #4fcf99;
  --wc-category-block-487-bg-color: #9278fd;
  --wc-category-block-487-fg-color: white;
  --wc-category-text-487-fg-color: #9278fd;
  --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: #fd966d !important;
  --link-special-hover-font-color: #2a3555 !important;
  --link-special-font-color: #FD966D !important;
  /* Homepage */
  /* Widgets */
  /* Layouts */
  /*
        Frontpage
    */
  /* Widget - Form */
  /* About page */
  /* How we make appeals */
  /* Vertical page */
  /* Team page */
  /* Contact page */
  /* 
    Mobile stuff */
}
body ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #A0A1AD;
  opacity: 1;
}
body ::-moz-placeholder {
  /* Firefox 19+ */
  color: #A0A1AD;
  opacity: 1;
}
body :-ms-input-placeholder {
  /* IE 10+ */
  color: #A0A1AD;
  opacity: 1;
}
body :-moz-placeholder {
  /* Firefox 18- */
  color: #A0A1AD;
  opacity: 1;
}
body :placeholder {
  color: #A0A1AD;
  opacity: 1;
}
body #cookie-bar .description h1 {
  color: #2a3555 !important;
  font-family: unset !important;
}
body #cookie-bar a {
  font-size: inherit;
  color: #fd966d;
}
body #cookie-bar a:hover {
  font-size: inherit;
  color: #2a3555;
}
body .ui-arrow-link {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #2a3555;
}
body .ui-arrow-link::after {
  content: ' ';
  display: block;
  width: 24px;
  height: 14px;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/brand-arrow-right.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-left: 8px;
}
body .ui-paragraph-list {
  list-style: disc;
  padding-left: 24px;
}
body .ui-accordion {
  background: none !important;
}
body .ui-accordion .group .header {
  padding: 32px 16px;
  font-size: 22px;
  color: #2a3555;
  line-height: 1.3;
  background: white;
  display: flex;
  border-bottom: 1px solid #d4d7dd;
}
body .ui-accordion .group .header svg {
  font-size: 16px;
  width: 24px;
}
body header#header.kinder-v4 .ui-accordion .group .items .widget.menu .content .menu .item a {
  padding: 20px 32px;
  font-size: 16px;
  font-weight: normal;
  color: #2a3555;
}
body .widget.share-buttons .buttons > * {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #A0A1AD;
}
body .widget.share-buttons .buttons a svg {
  color: white;
}
body .widget.share-buttons .buttons .facebook-share:hover,
body .widget.share-buttons .buttons .facebook-like:hover {
  background: #2E6AC0;
}
body .widget.share-buttons .buttons .twitter:hover {
  background: #3BAFED;
}
body .widget.share-buttons .buttons .linkedin:hover {
  background: #007BB5;
}
body .widget.info-block.style-image-left h2,
body .widget.info-block.style-image-right h2 {
  font-family: inherit !important;
}
body .widget-content-title-large {
  font-size: var(--h3-font-size);
}
body .widget-content-description-large {
  font-size: var(--body-font-size);
  color: var(--body-font-color);
  font-weight: var(--body-font-weight);
}
body .widget.external-data-widget.name-appeals-slider > div {
  display: flex;
  grid-gap: 32px;
  overflow-x: scroll;
  padding: 0 100px 16px 16px;
}
body .widget.external-data-widget.name-appeals-slider > div .united-action-card {
  min-width: 310px;
  min-height: 410px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
body .widget.external-data-widget.name-appeals-slider > div .united-action-card figure {
  height: 166px;
}
body .widget.external-data-widget.name-appeals-slider > div .united-action-card figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
body .widget.external-data-widget.name-appeals-slider > div .united-action-card .info {
  padding: 24px 32px 32px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
body .widget.external-data-widget.name-appeals-slider > div .united-action-card .info h3 {
  margin-bottom: 8px;
}
body .widget.external-data-widget.name-appeals-slider > div .united-action-card .info .intro-description {
  margin-bottom: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
body .widget.external-data-widget.name-appeals-slider > div .united-action-card .info .ui-arrow-link {
  margin-top: auto;
}
body .widget.external-data-widget.name-appeals-slider > div .united-action-card:hover .ui-arrow-link {
  color: #fd966d;
}
body .more-links header {
  margin-bottom: 32px;
}
body .more-links header::after {
  background: var(--link-special-font-color) !important;
}
body .ui-input,
body .ui-input-container input[type="text"],
body .ui-input-container input[type="email"],
body .ui-input-container input[type="number"] {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #606376;
  height: 50px;
  line-height: 1.8;
}
body .ui-input:focus,
body .ui-input-container input[type="text"]:focus,
body .ui-input-container input[type="email"]:focus,
body .ui-input-container input[type="number"]:focus {
  border-color: #7A60E5;
}
body .ui-input::-webkit-input-placeholder,
body .ui-input-container input[type="text"]::-webkit-input-placeholder,
body .ui-input-container input[type="email"]::-webkit-input-placeholder,
body .ui-input-container input[type="number"]::-webkit-input-placeholder,
body .ui-input::-moz-placeholder,
body .ui-input-container input[type="text"]::-moz-placeholder,
body .ui-input-container input[type="email"]::-moz-placeholder,
body .ui-input-container input[type="number"]::-moz-placeholder,
body .ui-input:-ms-input-placeholder,
body .ui-input-container input[type="text"]:-ms-input-placeholder,
body .ui-input-container input[type="email"]:-ms-input-placeholder,
body .ui-input-container input[type="number"]:-ms-input-placeholder,
body .ui-input::-ms-input-placeholder,
body .ui-input-container input[type="text"]::-ms-input-placeholder,
body .ui-input-container input[type="email"]::-ms-input-placeholder,
body .ui-input-container input[type="number"]::-ms-input-placeholder,
body .ui-input::placeholder,
body .ui-input-container input[type="text"]::placeholder,
body .ui-input-container input[type="email"]::placeholder,
body .ui-input-container input[type="number"]::placeholder {
  color: #a0a1ad !important;
}
body .ui-button {
  clip-path: none !important;
  -webkit-clip-path: none !important;
  border-radius: 8px !important;
  border: 1px solid #D4D7DD !important;
  color: #606376 !important;
  font-family: inherit !important;
  background: none !important;
  padding: 14px 16px !important;
  height: 48px;
  display: inline-flex;
  align-items: center;
}
body .ui-button.center {
  margin: 0 auto;
}
body .ui-button.light {
  background: #F5F6F8 !important;
}
body .ui-button:hover {
  color: #2a3555 !important;
  border-color: #2a3555 !important;
}
body .ui-button.special,
body a.button.cta,
body #cookie-bar .continue button {
  background: linear-gradient(180deg, #FD966D 0%, #FF6C9A 100%) !important;
  border-radius: 8px !important;
  color: white !important;
  font-family: inherit !important;
  padding: 14px 16px !important;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: none !important;
  border: none !important;
  transition: background-image 0.2s ease-in-out;
}
body .ui-button.special:hover,
body a.button.cta:hover,
body #cookie-bar .continue button:hover {
  /*background: linear-gradient(180deg,#e86e5a,#ff6c9a) !important;*/
  background: linear-gradient(180deg, #e86e5a, #ff6c9a) !important;
  /*radial-gradient(82.78% 82.78% at 31.15% -2.04%,#ffcc17 0,#ff6c9a 100%) !important;*/
}
body .ui-checkbox input:checked + label > span {
  border-color: #2a3555;
  background: #2a3555;
}
body a.button.alt,
body button.load-more > div {
  border-radius: 8px !important;
  border: 1px solid #D4D7DD !important;
  color: #606376 !important;
  font-family: inherit !important;
  background: none !important;
  padding: 14px 16px !important;
  height: 48px;
  display: inline-flex;
  align-items: center;
}
body a.button.alt:hover,
body button.load-more > div:hover {
  color: #2a3555 !important;
  border-color: #2a3555 !important;
}
body .content-area > .wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}
body .content-area.no-padding > .wrapper {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body .content-area[data-layout-name="section-welcome-new"] {
  background-repeat: repeat !important;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/bg-wave-transparant.png);
  background-size: auto auto !important;
  text-align: center;
  min-height: calc(100vh - 80px);
  position: relative;
}
body .content-area[data-layout-name="section-welcome-new"] > .wrapper {
  padding-top: 0 !important;
}
body .content-area[data-layout-name="section-welcome-new"] > .overlay {
  background: radial-gradient(50% 89.98% at 50% 47.09%, #F5F6F8 39.46%, rgba(245, 246, 248, 0.81) 86.76%);
}
body .content-area[data-layout-name="section-welcome-new"] > .wrapper > .layout-item-container {
  align-items: center;
}
body .content-area[data-layout-name="section-welcome-new"] .widget.heading {
  max-width: 752px;
}
body .content-area[data-layout-name="section-welcome-new"] .widget.html p {
  max-width: 556px;
  margin-bottom: 16px;
}
body .content-area[data-layout-name="section-welcome-new"] .widget.html .scroll-for-more {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #2a3555;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}
body .content-area[data-layout-name="section-welcome-new"] .widget.html .scroll-for-more img {
  transform: rotate(90deg);
  width: 24px;
  margin-top: 16px;
  animation: explore-arrow 2s linear infinite;
}
body .content-area[data-layout-name="section-welcome-new"] .widget.html .ui-button-group {
  margin-top: 24px;
}
body b.mfe-menu-icon > span,
body b.mfe-menu-icon::after,
body b.mfe-menu-icon::before {
  height: var(--thickness, 2px);
}
body b.mfe-menu-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30px;
  --spacing: 6px;
  --thickness: 2px;
  --color: #000;
}
body b.mfe-menu-icon > span:nth-child(2) {
  margin-top: calc(0px - var(--thickness, 2px)) !important;
}
body b.mfe-menu-icon > span,
body b.mfe-menu-icon::after,
body b.mfe-menu-icon::before {
  margin: var(--spacing, 4px) 0 0 0 !important;
  background-color: #2a3555 !important;
}
body b.mfe-menu-icon::before {
  margin-top: 0 !important;
}
body header#header.kinder-v4.menu-open b.mfe-menu-icon::before,
body header#header.kinder-v4.menu-open b.mfe-menu-icon::after {
  opacity: 0;
  align-self: center;
}
body header#header.kinder-v4.menu-open b.mfe-menu-icon::before {
  transform: translateY(calc(var(--spacing, 6px) + var(--thickness, 2px))) !important;
  width: 0px;
}
body header#header.kinder-v4.menu-open b.mfe-menu-icon::after {
  transform: translateY(calc(0px - var(--spacing, 6px) + var(--thickness, 2px))) !important;
  width: 0px;
}
body header#header.kinder-v4.menu-open b.mfe-menu-icon > span {
  opacity: 1;
}
body header#header.kinder-v4.menu-open b.mfe-menu-icon > span:first-child {
  transform: rotate(45deg);
}
body header#header.kinder-v4.menu-open b.mfe-menu-icon > span:nth-child(2) {
  transform: rotate(-45deg);
}
body header#header.kinder-v4.menu-open b.mfe-menu-icon::before {
  transform: rotate(45deg) translate3d(4px, 4px, 0);
}
body .kinder-search-input {
  border-radius: 5px;
  border: 1px solid #eee;
  position: relative;
  z-index: 1000;
}
body .kinder-search-input .text-input {
  display: flex;
  height: 48px;
}
body .kinder-search-input input,
body .kinder-search-input button {
  border: none;
  background: none;
}
body .kinder-search-input input {
  width: 100%;
  flex-grow: 1;
  flex-basis: 0;
}
body .kinder-search-input button {
  flex-shrink: 0;
  padding: 0 16px;
}
body .kinder-search-input button svg {
  font-size: 22px;
}
body .kinder-search-input .autocomplete-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 99999999;
  background: white;
  flex-direction: column;
  height: auto;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #eee;
  display: none;
}
body .kinder-search-input .autocomplete-suggestions.show {
  display: flex;
}
body .kinder-search-input .autocomplete-suggestions > .item {
  color: black;
  padding: 6px 8px;
  font-weight: normal;
}
body .kinder-search-input .autocomplete-suggestions > .item.selected {
  background: #eee;
}
body .kinder-search-input .autocomplete-suggestions > .item span {
  font-weight: bold;
}
body .content-area.page-width > .wrapper > .layout-item-container {
  display: flex;
  flex-direction: column;
}
body .content-area.page-width > .wrapper > .layout-item-container > p {
  order: -1;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  color: #ff986f;
}
body .content-area.page-width > .wrapper > .layout-item-container > h1 {
  order: 0;
}
body .content-area.page-width > .wrapper > .layout-item-container > h2 {
  margin-bottom: 8px;
}
body .content-area.page-width > .wrapper > .layout-item-container > h1,
body .content-area.page-width > .wrapper > .layout-item-container > h2 {
  max-width: 556px;
  margin-left: auto;
  margin-right: auto;
}
body .content-area.page-width > .wrapper > .layout-item-container > p,
body .content-area.page-width > .wrapper > .layout-item-container > h1,
body .content-area.page-width > .wrapper > .layout-item-container > h2 {
  text-align: center;
}
body #footer.kinder-v2 .bottom {
  background: #2a3555;
  color: white;
}
body #footer.kinder-v2 h2 {
  font-size: 20px;
}
body section#content .spotlight {
  content: ' ';
  display: block;
  position: absolute;
  top: -122px;
  left: 0;
  right: 0;
  width: 100%;
  height: 122px;
  text-align: center;
  display: flex;
}
body section#content .spotlight img {
  max-width: 556px;
  min-width: 266px;
  width: 80%;
}
body .kinder-search-input {
  border: none;
}
body .kinder-search-input .text-input {
  position: relative;
  background: white;
  margin-left: auto;
  margin-right: auto;
}
body .kinder-search-input .text-input button {
  position: absolute;
  right: 2px;
  height: calc(100% - 4px);
  background: white;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 6px;
}
body .kinder-search-input .text-input button svg {
  font-size: 21px;
  color: #A0A1AD;
}
body .kinder-search-input .autocomplete-suggestions {
  top: calc(100% + 8px);;
  border: 1px solid #d4d7dd;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow-y: hidden;
  max-height: unset;
}
body .kinder-search-input .autocomplete-suggestions > .item {
  padding: 8px 16px;
  color: #606376;
}
body .kinder-search-input .autocomplete-suggestions > .item:hover {
  background: #D4D7DD;
}
body .kinder-search-input .autocomplete-suggestions > .item.special {
  color: #fd966d;
  font-size: 13px;
}
body .kinder-search-input .autocomplete-suggestions > .item.special:hover {
  color: #2a3555;
  background: none;
}
body section#content .kinder-search-input .text-input {
  max-width: 444px;
}
body header#header.kinder-v4 .search-input-container > .wrapper {
  flex-direction: column !important;
  max-width: unset;
  width: 90%;
  position: relative;
}
body header#header.kinder-v4 .search-input-container > .wrapper h3 {
  margin-bottom: 16px;
  line-height: 1.5;
  /*color: black;*/
}
body header#header.kinder-v4 .search-input-container > .wrapper .kinder-search-input .text-input button svg {
  font-size: 21px;
  color: #A0A1AD;
}
body header#header.kinder-v4 .search-input-container > .wrapper .widget.search-input .input {
  padding: 0;
  border-bottom: none;
}
body header#header.kinder-v4 .search-input-container > .wrapper .widget.search-input .input .icon {
  order: 2;
  text-align: center;
  width: 32px;
  position: absolute;
  right: 8px;
}
body header#header.kinder-v4 .search-input-container > .wrapper .widget.search-input .input .icon svg {
  color: #a0a1ad;
  margin-right: none;
  font-size: 21px;
}
body header#header.kinder-v4 .search-input-container > .wrapper .widget.search-input .input input {
  order: 1;
}
body header#header.kinder-v4 .search-input-container > .wrapper .widget.search-input .actions {
  position: absolute;
  top: 0;
  right: 0;
}
body header#header.kinder-v4 > .container .search-input-container {
  background: #f5f6f8;
  border-top: none !important;
}
body header#header .wrapper nav ul li.item a,
body header#header .wrapper .right .user,
body header#header .wrapper .right .session {
  --menu-item-font-family: 'Lato', sans-serif;
  --menu-item-selected-font-family: 'Lato', sans-serif;
  --menu-item-hover-font-family: 'Lato', sans-serif;
}
body header#header .wrapper nav ul li.item a,
body header#header .wrapper .right .user button {
  --menu-item-font-color: #606376;
  --menu-item-hover-font-color: #2a3555;
  --menu-item-selected-font-color: #2a3555;
}
body header#header .wrapper .right .user button:first-child {
  padding-right: 8px;
}
body header#header > .container .top .widget.menu .item.selected a {
  box-shadow: none !important;
}
body header#header > .container .top .widget.menu .item.selected a span {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body header#header > .container .top .widget.menu .item.selected a span::after {
  content: ' ';
  display: block;
  position: absolute;
  bottom: 0;
  height: 2px;
  left: 0;
  right: 0;
  background: linear-gradient(#fd966d, #ff6c9a);
}
body header#header.kinder-v4 .button.header-donate {
  align-self: center;
  padding: 10px 16px !important;
}
body header#header.kinder-v4 .button.header-donate span {
  padding-left: 32px;
  padding-right: 32px;
  line-height: 1.8;
}
body header#header.kinder.with-bottom-bar > .container .top .search button {
  display: flex !important;
}
body header#header.kinder-v4 > .container .search button > div {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 24px !important;
  height: 100%;
}
body header#header.kinder-v4 > .container > .wrapper > .mobile .social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
}
body header#header.kinder-v4 > .container > .wrapper > .mobile .social .widget.menu .item a {
  padding: 0;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  margin-right: 4px;
}
body header#header.kinder-v4 > .container > .wrapper > .mobile .social nav ul li.item.icon svg {
  font-size: 24px;
  margin-right: 0;
  color: #d4d7dd;
}
body header#header.kinder-v4 .bottom {
  display: none;
}
body header#header.kinder-v4 {
  height: 80px !important;
}
body header#header.kinder-v4 .login-container,
body header#header.kinder-v4 .signup-container {
  background: #f5f6f8;
}
body header#header.kinder-v4 .login-container > .wrapper,
body header#header.kinder-v4 .signup-container > .wrapper {
  position: static;
}
body header#header.kinder-v4 .login-container .close,
body header#header.kinder-v4 .signup-container .close {
  top: 22px;
  right: 138px;
  color: #777;
}
body header#header.kinder-v4 .login-container .close:hover,
body header#header.kinder-v4 .signup-container .close:hover {
  color: #222;
}
body header#header.kinder-v4 .login-container .columns,
body header#header.kinder-v4 .signup-container .columns {
  max-width: unset;
  justify-content: center;
}
body header#header.kinder-v4 .login-container .column,
body header#header.kinder-v4 .signup-container .column {
  padding: 0 40px;
  width: 50%;
  flex-basis: 50%;
  flex-shrink: 1;
  max-width: 611px;
  margin: 0;
}
body header#header.kinder-v4 .login-container .column h3,
body header#header.kinder-v4 .signup-container .column h3 {
  display: flex;
  align-items: center;
  font-family: inherit;
  font-size: 18px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #D4D7DD;
}
body header#header.kinder-v4 .login-container .column h3 img,
body header#header.kinder-v4 .signup-container .column h3 img {
  margin-left: 16px;
  width: 24px;
}
body header#header.kinder-v4 .login-container .column p,
body header#header.kinder-v4 .signup-container .column p,
body header#header.kinder-v4 .login-container .column ul,
body header#header.kinder-v4 .signup-container .column ul,
body header#header.kinder-v4 .login-container .column ol,
body header#header.kinder-v4 .signup-container .column ol {
  color: #606376;
}
body header#header.kinder-v4 .login-container .column:hover h3,
body header#header.kinder-v4 .signup-container .column:hover h3 {
  color: #fd966d;
}
body header#header.kinder {
  height: 80px !important;
}
body header#header.kinder-v4 .top {
  height: 80px !important;
  border-bottom: 1px solid #d4d7dd !important;
}
body header#header > .container .search button > div svg {
  font-size: 24px;
  color: #606376;
}
body #footer.kinder-v2 .bottom > .wrapper {
  border-top: 1px solid white;
}
body footer#footer.bigfoot > .wrapper .newsletter,
body footer#footer.kinder-v2 > .wrapper .newsletter {
  background: #2a3555;
  color: white;
  background-image: linear-gradient(32deg, #9278fd 72%, #16daed 100%);
  position: relative;
}
body footer#footer.bigfoot > .wrapper .newsletter::before,
body footer#footer.kinder-v2 > .wrapper .newsletter::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/noise-v1-blue.png);
  mask-image: linear-gradient(-110deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 67%);
  -webkit-mask-image: linear-gradient(-110deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 67%);
}
body footer#footer.bigfoot > .wrapper .newsletter .ui-button,
body footer#footer.kinder-v2 > .wrapper .newsletter .ui-button {
  clip-path: none !important;
}
body .widget.newsletter-signup .small-print {
  display: none;
}
body #footer.kinder-v2 .top {
  background: #2a3555;
  color: white;
}
body footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left h2,
body footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left h2 {
  color: white;
  font-family: inherit;
}
body footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left p,
body footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left p {
  color: white;
}
body footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right,
body footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right {
  justify-content: center;
  -webkit-justify-content: center;
}
body footer#footer.bigfoot > .wrapper .newsletter .newsletter-header img,
body footer#footer.kinder-v2 > .wrapper .newsletter .newsletter-header img {
  display: none;
}
body #footer.kinder-v2 .bottom .logo {
  display: none;
}
body .widget.content-scroller.style-default .content ul li.type-blogpost.style-default,
body .widget.content-grid.style-default .content ul li.type-blogpost.style-default {
  border-radius: 8px;
}
body .widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content {
  text-align: left;
  padding: 24px 32px 42px 32px;
}
body .content-area[data-layout-name="search-box"] {
  background-image: linear-gradient(-39deg, #e86e5a 6%, #e86e5a00 100%), linear-gradient(to bottom, #ffcc17 14%, #ff6491 60%);
  position: relative;
  z-index: 999;
}
body .content-area[data-layout-name="search-box"]::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/noise-v1-orange.png);
  mask-image: linear-gradient(-190deg, black 0%, rgba(255, 255, 255, 0) 65%);
  -webkit-mask-image: linear-gradient(-190deg, black 0%, rgba(255, 255, 255, 0) 65%);
}
body .content-area[data-layout-name="search-box"] > .wrapper {
  padding: 80px 16px !important;
  padding-top: 170px !important;
}
body .content-area[data-layout-name="search-box"] > .wrapper > .layout-item-container {
  border-radius: 5px;
  background: white;
  padding: 48px;
  max-width: 752px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
body .content-area[data-layout-name="search-box"] > .wrapper > .layout-item-container > p {
  margin-bottom: 0 !important;
}
body .content-area[data-layout-name="search-box"] h2 {
  max-width: 556px;
  margin: 0 auto;
  margin-bottom: 8px;
}
body .content-area[data-layout-name="search-box"] p {
  max-width: 556px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  text-align: center;
  color: #606376;
}
body .content-area[data-layout-name="search-box"] p.popular {
  font-size: var(--body-tiny-font-size);
}
body .content-area[data-layout-name="search-box"] p span {
  margin-right: 8px;
}
body .content-area[data-layout-name="search-box"] p a {
  margin-right: 8px;
  font-size: inherit;
  color: #2a3555;
  font-weight: normal;
}
body .content-area[data-layout-name="search-box"] p a:hover {
  color: #fd966d;
}
body .content-area[data-layout-name="search-box"] .kinder-search-input {
  margin-bottom: 16px;
  max-width: 444px;
  margin-left: auto;
  margin-right: auto;
}
body .content-area[data-layout-name="search-box"] .spotlight {
  height: 90px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  top: -90px;
  width: 100%;
  left: 0;
}
body .content-area[data-layout-name="search-box"] .spotlight a {
  background: white;
  display: flex;
  height: 80px;
  width: 170px;
  overflow: hidden;
  border-top: 12px solid white;
}
body .content-area[data-layout-name="search-box"] .spotlight a img {
  flex-grow: 1;
  object-fit: cover;
}
body .content-area[data-layout-name="search-box"] .spotlight a:hover img {
  transition: transform 0.25s;
  transform: scale(1.1);
}
body .content-area[data-layout-name="search-box"] .spotlight a:nth-child(1) {
  border-radius: 8px 0 0 0;
}
body .content-area[data-layout-name="search-box"] .spotlight a:nth-child(2) {
  border-radius: 8px 8px 0 0;
  height: 90px;
  width: 232px;
}
body .content-area[data-layout-name="search-box"] .spotlight a:nth-child(3) {
  border-radius: 0 8px 0 0;
}
body .content-area[data-layout-name="search-box"] .spotlight > a {
  display: none !important;
}
body figure.figure-earth {
  /*width: 200px;
        height: 200px;*/
  position: relative;
  --progress: 0;
  animation: figure-earth 2s infinite alternate ease-in-out both;
  /*background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/globe-t.png);
        background-size: contain;
        background-repeat: no-repeat;*/
}
body figure.figure-earth img {
  width: 100%;
  margin-top: -10%;
}
body figure.figure-earth span.part-1-3 {
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/puzzle1.png);
  width: 82.5%;
  height: 62.9%;
  display: block;
  position: absolute;
  left: 1.7%;
  background-size: 100% 100%;
  transform: translateX( calc( 0px - ( ( (1 / 100) * var(--progress, 0) ) * 100px ) ) ) translateY( calc( 0px - ( ( (1 / 100) * var(--progress, 0) ) * 100px ) ) );
}
body figure.figure-earth span.part-2-3 {
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/puzzle2.png);
  width: 76.0%;
  height: 62.4%;
  display: block;
  position: absolute;
  top: 38.0%;
  background-size: 100% 100%;
  transform: translateX( calc( 0px - ( ( (1 / 100) * var(--progress, 0) ) * 100px ) ) ) translateY( calc( 0px + ( ( (1 / 100) * var(--progress, 0) ) * 100px ) ) );
}
body figure.figure-earth span.part-3-3 {
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/puzzle3.png);
  width: 49.4%;
  height: 84.4%;
  display: block;
  position: absolute;
  right: 0;
  top: 13.4%;
  background-size: 100% 100%;
  transform: translateX( calc( 0px + ( ( (1 / 100) * var(--progress, 0) ) * 100px ) ) ) translateY( calc( 0px + ( ( (1 / 100) * var(--progress, 0) ) * 100px ) ) );
}
body figure.figure-earth span {
  display: none !important;
}
body .widget.info-block h2 {
  color: #2a3555;
}
body .layout-container.page-width.bg-dark .widget.info-block h2 {
  color: white;
}
body .widget.cms-cover > .content.base-default .item-content .group {
  clip-path: none !important;
  -webkit-clip-path: none !important;
}
body .widget.content-popular .content.base-default ul li:first-child .item-content .title .inner {
  clip-path: none !important;
  -webkit-clip-path: none !important;
  background: #2a3555;
  font-family: inherit;
  text-shadow: none !important;
  padding-left: 16px;
  padding-right: 16px;
}
body .widget.content-popular .content.base-default ul li:first-child .item-content .group {
  clip-path: none !important;
  -webkit-clip-path: none !important;
}
body .layout.layout-sidebar .layout-item.sidebar .widget .widget-header {
  font-family: inherit;
}
body .widget.cms-cover > .content.base-default .item-content h1 {
  clip-path: none !important;
  -webkit-clip-path: none !important;
  font-family: inherit !important;
  background: #2a3555;
  text-shadow: none;
  padding-left: 32px;
  padding-right: 32px;
  font-size: var(--h1-font-size) !important;
  line-height: 1;
  padding-top: 16px;
  padding-bottom: 16px;
}
body .widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content .group,
body .widget.content-scroller.style-default .content ul li.type-blogpost.style-default .item-content .group {
  clip-path: none !important;
  -webkit-clip-path: none !important;
  margin-top: -46px;
}
body .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(1).type-blogpost.style-default .item-content .title,
body .widget.content-grid .content.base-default.style-pattern-1-2-2-1 ul li:nth-child(6n).type-blogpost.style-default .item-content .title,
body .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 {
  text-shadow: none;
  font-family: inherit !important;
}
body .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,
body .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,
body .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 {
  background: #2a3555;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  font-family: inherit !important;
}
body .widget.form .panel .field input[type="text"],
body .widget.form .panel .field input[type="email"],
body .widget.form .panel .field select,
body .widget.form .panel .field textarea {
  background: white;
  border-radius: 8px;
  border: 1px solid #606376;
  color: #2a3555;
  padding: 12px 16px;
}
body .widget.form .panel .field input[type="text"]:hover,
body .widget.form .panel .field input[type="email"]:hover,
body .widget.form .panel .field select:hover,
body .widget.form .panel .field textarea:hover,
body .widget.form .panel .field input[type="text"]:focus,
body .widget.form .panel .field input[type="email"]:focus,
body .widget.form .panel .field select:focus,
body .widget.form .panel .field textarea:focus {
  border: 1px solid #7A60E5;
}
body .widget.form .panel .field input[type="text"] option,
body .widget.form .panel .field input[type="email"] option,
body .widget.form .panel .field select option,
body .widget.form .panel .field textarea option {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
body[data-template-id="744"] .layout-container.page-width.bg-dark {
  background-color: #2a3555 !important;
}
body[data-template-id="744"] .ui-button.cta.special {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: inline-flex !important;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-register"] .join-organisation a {
  color: #fd966d;
}
body[data-template-id="744"] .more-links header::after {
  display: none !important;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-explanation"] > .wrapper p {
  font-size: 18px;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-explanation"] > .wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}
body #page-making-of-appeals section.main p::after {
  display: none !important;
}
body #page-making-of-appeals h2 {
  font-family: inherit;
}
body .layout-container[data-layout-name="vertical-page-header"] h1 {
  font-family: inherit;
  font-size: 48px;
}
body .layout-container[data-layout-name="vertical-page-header"] .widget.content-grid:nth-child(3) .content li.type-blogpost .title .inner {
  clip-path: none !important;
  -webkit-clip-path: none !important;
  background: #2a3555;
  font-family: inherit;
}
body .layout-container[data-layout-name="vertical-page-header"] .widget.content-grid .content ul li.type-blogpost.style-default {
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}
body .layout-container[data-layout-name="vertical-page-header"] .widget.content-grid:nth-child(4) .content ul li.type-blogpost.style-default {
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}
body .widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li .info .name,
body .widget.dataset-view > .content[data-dataset-view-id="1"] ul.members li .info .title {
  clip-path: none !important;
  font-family: inherit;
  background: #2a3555;
}
body .widget.dataset-view > .content[data-dataset-view-id="1"] .filters-container .tags .tag label {
  clip-path: none !important;
  border-radius: 8px !important;
  border: 1px solid #D4D7DD !important;
  color: #606376 !important;
  font-family: inherit !important;
  height: 48px;
  display: flex;
  align-items: center;
}
body .widget.dataset-view > .content[data-dataset-view-id="1"] .filters-container .tags .tag {
  margin-right: 8px;
  border-radius: 5px;
  overflow: hidden;
}
body .widget.dataset-view > .content[data-dataset-view-id="1"] .filters-container .tags .tag input:checked + label {
  background: linear-gradient(180deg, #FD966D 0%, #FF6C9A 100%) !important;
  border-radius: 8px !important;
  color: white !important;
  font-family: inherit !important;
  border-width: 0 0 0 0 !important;
}
body .widget.form .actions {
  text-align: right;
}
body footer.kinder-v3 {
  width: 100%;
  background-color: #2a3555;
}
body footer.kinder-v3 .widget.menu ul li a {
  padding: 0;
  line-height: 1.75;
  padding-bottom: 8px;
  display: block;
  font-weight: 500;
  color: #d4d7dd;
}
body footer.kinder-v3 .widget.menu ul li a:hover {
  color: #9b9b9b;
}
body footer.kinder-v3 > .container > .newsletter {
  background: linear-gradient(90deg, #7A60E5 0%, #16DAED 100%);
  color: white;
  position: relative;
}
body footer.kinder-v3 > .container > .newsletter::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/noise-purple.png);
  mask-image: linear-gradient(90deg, black, rgba(0, 0, 0, 0.1));
  -webkit-mask-image: linear-gradient(90deg, black, rgba(0, 0, 0, 0.1));
  opacity: 0.6;
}
body footer.kinder-v3 > .container > .newsletter > .wrapper {
  max-width: 1144px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
body footer.kinder-v3 > .container > .newsletter > .wrapper h2 {
  color: white;
  margin-bottom: 4px;
}
body footer.kinder-v3 > .container > .newsletter > .wrapper p {
  max-width: 556px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 32px;
}
body footer.kinder-v3 > .container > .newsletter > .wrapper .widget.newsletter-signup {
  flex-grow: 1;
  align-self: stretch;
  max-width: 470px;
  margin: 0 auto;
  width: 100%;
}
body footer.kinder-v3 > .container > .newsletter > .wrapper .widget.newsletter-signup .content.mailchimp-email form .email {
  display: flex;
  align-items: center;
}
body footer.kinder-v3 > .container > .newsletter > .wrapper .widget.newsletter-signup .content.mailchimp-email form .email input {
  margin-right: 8px;
  background: #ffffff;
  border: 1px solid #606376;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 150%;
}
body footer.kinder-v3 > .container > .newsletter > .wrapper .widget.newsletter-signup .content.mailchimp-email form .ui-button {
  background: #F5F6F8 !important;
  border-radius: 8px !important;
  color: #2a3555 !important;
  font-size: 16px;
}
body footer.kinder-v3 > .container .top {
  width: 1144px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% auto auto auto;
  grid-gap: 3.2rem;
  border-bottom: 1px solid #a0a1ad;
  padding: 72px 0 40px;
  color: white;
}
body footer.kinder-v3 > .container .top .info {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 90%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
body footer.kinder-v3 > .container .top .info .slogan {
  line-height: 1.8;
  margin-bottom: 8px;
}
body footer.kinder-v3 > .container .top .info .address {
  color: #a0a1ad;
  font-size: 14px;
}
body footer.kinder-v3 > .container .top .info .social {
  margin-top: 16px;
}
body footer.kinder-v3 > .container .top .info .social .menu li a {
  margin-right: 16px;
}
body footer.kinder-v3 > .container .top .info .social .menu li a svg {
  font-size: 28px;
  color: white;
}
body footer.kinder-v3 > .container .top .column > span {
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  line-height: 1.75;
  padding-bottom: 8px;
}
body footer.kinder-v3 > .container .bottom {
  max-width: 1144px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 0 24px;
}
body footer.kinder-v3 > .container .bottom .legal a,
body footer.kinder-v3 > .container .bottom .powered-by a {
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  margin-right: 16px;
  display: inline-block;
}
body footer.kinder-v3 > .container .bottom .legal a:hover,
body footer.kinder-v3 > .container .bottom .powered-by a:hover {
  color: #9b9b9b;
}
body footer.kinder-v3 > .container .bottom .powered-by {
  color: #d4d7dd;
  font-size: 14px;
}
body footer.kinder-v3 > .container .bottom .powered-by a {
  margin-left: 6px;
  margin-right: 0 !important;
}
body footer.kinder-v3 > .container .bottom .powered-by svg.logo-svg-ttl {
  height: 24px;
  color: inherit;
}
body html.mobile header#header.kinder-v4 > .container .mobile .search-input-container > .wrapper {
  width: 100% !important;
}
@media (max-width: 576px) {
  body footer.kinder-v3 > .container > .newsletter > .wrapper .widget.newsletter-signup .content.mailchimp-email form {
    flex-direction: column;
  }
  body footer.kinder-v3 > .container > .newsletter > .wrapper .widget.newsletter-signup .content.mailchimp-email form .email input {
    margin-right: 0;
  }
  body footer.kinder-v3 > .container > .newsletter > .wrapper .widget.newsletter-signup .content.mailchimp-email form .email {
    margin-bottom: 8px;
  }
}
@media (max-width: 1200px) {
  body footer.kinder-v3 > .container .top {
    width: calc(100% - 64px);
    margin: 0 32px;
    grid-template-columns: repeat(auto-fit, minmax(13.6rem, auto));
  }
  body footer.kinder-v3 > .container .bottom {
    margin-left: 32px;
    margin-right: 32px;
  }
  body header#header.kinder-v4 .login-container .column,
  body header#header.kinder-v4 .signup-container .column {
    width: unset;
    flex-grow: 1;
    flex-basis: unset !important;
    flex-shrink: unset;
  }
  body header#header.kinder-v4 .login-container .column figure,
  body header#header.kinder-v4 .signup-container .column figure {
    width: unset !important;
  }
  body header#header.kinder-v4 .login-container .column h3,
  body header#header.kinder-v4 .signup-container .column h3 {
    margin-left: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    flex-grow: 1;
  }
  body header#header.kinder-v4 .login-container .column h3 img,
  body header#header.kinder-v4 .signup-container .column h3 img {
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  body header#header.kinder-v4 .top > .wrapper {
    padding: 0 56px !important;
  }
}
@media (max-width: 567px) {
  body footer.kinder-v3 > .container .top {
    width: calc(100% - 64px);
    margin: 0 32px;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  body footer.kinder-v3 > .container .top {
    width: calc(100% - 64px);
    margin: 0 32px;
    grid-template-columns: repeat(auto-fit, minmax(24.6rem, auto));
  }
  body footer.kinder-v3 > .container .bottom {
    flex-direction: column;
    margin: 0 32px;
    padding-top: 32px;
  }
  body footer.kinder-v3 > .container .bottom .legal {
    margin-bottom: 24px;
  }
}
@media (max-width: 1200px) {
  body header#header.kinder-v4 .top .right .button.header-donate {
    display: none;
  }
  body header#header.kinder-v4 > .container .mobile .search-input-container .widget.search-input .input {
    padding-right: 0px !important;
  }
  body header#header.kinder .container .wrapper > .mobile {
    top: 80px;
  }
  html.mobile body header#header.kinder-v4 > .container > .wrapper .identity img {
    height: 16px !important;
  }
  html.mobile body header#header.kinder .container > .wrapper > .mobile {
    top: 64px !important;
  }
  html.mobile body header#header.kinder .login-container .wrapper > .mobile,
  html.mobile body header#header.kinder .signup-container .wrapper > .mobile {
    top: 0px !important;
  }
  html.mobile body header#header.kinder-v4 .mobile .button.header-donate {
    display: block;
    margin: 16px;
  }
  html.mobile body header#header.kinder {
    height: 64px !important;
  }
}
html.mobile body {
  --menu-item-font-size: 14px !important;
  --menu-item-hover-font-size: 14px !important;
  --menu-item-font-family: 'Lato', sans-serif !important;
  --menu-item-selected-font-family: 'Lato', sans-serif !important;
  --menu-item-hover-font-family: 'Lato', sans-serif !important;
}
html.mobile body header#header.kinder-v4 > .container .mobile .search-input-container > .wrapper {
  width: 100%;
}
html.mobile body h1,
html.mobile body .widget.heading h1,
html.mobile body .widget.heading h1 a {
  font-size: var(--h1-font-size-mobile);
}
html.mobile body h2 {
  font-size: var(--h2-font-size-mobile);
}
html.mobile body .widget.info-block.style-image-left h2 {
  font-size: var(--h2-font-size-mobile);
}
html.mobile body .widget.cms-cover > .content.base-default .item-content h1 {
  font-size: var(--h1-font-size-mobile) !important;
}
html.mobile body .layout-container[data-layout-name="about-register"] h2 {
  font-size: var(--h2-font-size-mobile) !important;
}
html.mobile body .content-area > .wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}
html.mobile body .content-area[data-layout-name="section-welcome-new"] {
  height: auto;
}
html.mobile body .content-area[data-layout-name="section-welcome-new"] .scroll-for-more {
  display: none !important;
}
html.mobile body .content-area[data-layout-name="section-welcome-new"] .ui-button-group {
  flex-direction: column;
}
html.mobile body .layout-container[data-layout-name="about-header"] h1 {
  font-size: var(--h1-font-size-mobile) !important;
}
html.mobile body .layout-container[data-layout-name="about-explanation"] > .wrapper {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
html.mobile body .content-area[data-layout-name="section-join-community"] .column-2 {
  order: 0;
}
html.mobile body .content-area[data-layout-name="section-join-community"] .column-1 {
  order: 1;
}
html.mobile body .ui-button-group {
  flex-direction: column;
}
html.mobile body .ui-button-group a {
  justify-content: center !important;
  margin-left: 0 !important;
  margin-bottom: 8px;
}
html.mobile body header#header.kinder-v4 .mobile .top {
  background: #f5f6f8 !important;
}
html.mobile body header#header.kinder-v4 > .container .mobile .search-input-container .widget.search-input .input input {
  padding: 32px 16px;
  height: 96px;
}
html.mobile body header#header.kinder-v4 > .container .mobile .search-input-container .widget.search-input .input icon svg {
  width: 24px;
  font-size: 24px;
}
html.mobile body header#header.kinder-v4 > .container > .wrapper .identity img {
  height: 24px;
}
html.mobile body header#header.kinder-v4 .mobile-menu button {
  width: 62px;
}
html.mobile body header#header.kinder-v4 .top .wrapper .left {
  margin-right: 10px;
}
html.mobile body header#header > .container > .wrapper .left {
  padding-left: 0;
}
html.mobile body header#header > .container > .wrapper .right {
  padding-right: 16px;
}
html.mobile body header#header.kinder-v4 .login-container,
html.mobile body header#header.kinder-v4 .signup-container {
  background: white;
}
html.mobile body header#header.kinder-v4 .signup-container .columns:not(.mobile) {
  display: none;
}
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile {
  display: block;
}
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile .column {
  flex-direction: column;
  align-items: stretch;
  border-bottom: none;
}
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile .column.user {
  padding-bottom: 0;
}
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile .column.charity {
  padding-top: 0;
}
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile .column.charity a {
  color: #fd966d;
  font-weight: normal;
  margin-top: 8px;
  font-size: 14px;
}
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile .column.charity a:hover {
  color: #2a3555 !important;
}
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile .column header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile .column header::after {
  content: ' ';
  display: block;
  height: 1px;
  background: #D4D7DD;
  left: 0;
  right: 0;
  width: 100%;
  clear: both;
  position: absolute;
  top: 100%;
}
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile .column h1 {
  font-size: var(--h3-font-size-mobile);
  margin-left: 20px;
}
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile .column h3 {
  color: #2a3555;
  font-size: 16px;
  margin-top: 40px;
  padding-top: 16px;
  position: relative;
  margin-bottom: 8px;
  margin-left: 0;
  font-weight: normal;
}
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile .column h3::after {
  content: ' ';
  display: block;
  height: 1px;
  background: #D4D7DD;
  left: 0;
  right: 0;
  width: 100%;
  clear: both;
  position: absolute;
  top: 0;
}
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile .column p,
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile .column ul {
  display: block;
}
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile .column ul {
  margin-bottom: 16px;
  color: #606376;
  font-size: 16px;
  list-style-position: outside;
}
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile .column ul li {
  margin-left: 18px;
  padding-left: 10px;
}
html.mobile body header#header.kinder-v4 .signup-container .columns.mobile .column p {
  font-size: 14px;
  line-height: 1.4;
  color: #A0A1AD;
}
@media (max-width: 576px) {
  body header#header.kinder-v4 {
    height: 64px !important;
  }
  body header#header.kinder-v4 .top {
    height: 64px !important;
  }
  html.mobile body header#header.kinder-v4 > .container > .wrapper .identity img {
    height: 16px !important;
  }
  html.mobile body header#header.kinder .container > .wrapper > .mobile {
    top: 64px !important;
  }
}
@media (min-width: 576px) {
  body html.mobile header#header.kinder-v4 {
    height: 80px;
  }
  body html.mobile header#header.kinder-v4 .top {
    height: 80px;
  }
}
/* About page mobile */
html.mobile body[data-template-id="744"] .widget.info-block.style-image-left h2,
html.mobile body[data-template-id="744"] .widget.info-block.style-image-right h2 {
  text-align: left !important;
}
body[data-template-id="744"] {
  --page-width: 1120px;
}
body[data-template-id="744"] .content-area > .wrapper {
  padding: 80px 0;
}
body[data-template-id="744"] .ui-button.cta.special {
  display: inline-block;
  padding: 10px 32px;
  background: #ff005e;
  color: #ffffff;
  align-self: flex-start;
  -webkit-align-self: flex-start;
  font-weight: 900;
  font-family: inherit;
  font-size: 16px;
  transition: background 0.25s;
  clip-path: none;
}
body[data-template-id="744"] .ui-button.cta.special:hover {
  background: #b30042;
}
body[data-template-id="744"] .layout-container.page-width.bg-dark {
  color: white;
}
body[data-template-id="744"] .more-links header {
  max-width: 752px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
body[data-template-id="744"] .more-links header::after {
  content: ' ';
  display: block;
  width: 132px;
  height: 2px;
  background: #ff005e;
  margin-top: 24px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}
body[data-template-id="744"] .more-links header p {
  line-height: 1.8;
  font-size: 16px;
}
body[data-template-id="744"] .more-links h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 0;
  line-height: 1.5;
}
body[data-template-id="744"] .more-links nav {
  display: flex;
}
body[data-template-id="744"] .more-links nav > * {
  flex-grow: 1;
  flex-basis: 0%;
  flex-shrink: 0;
  display: flex;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  margin-right: 32px;
}
body[data-template-id="744"] .more-links nav > * img {
  width: 140px;
  flex-shrink: 0;
  flex-basis: 140px;
  height: 164px;
  object-fit: cover;
}
body[data-template-id="744"] .more-links nav > * p {
  padding: 24px;
  font-weight: bold;
  line-height: 1.8;
  color: #262626;
  font-size: 16px;
}
body[data-template-id="744"] .layout-container.page-width .layout-item-container > h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 40px;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-header"] {
  /*height: var(--layout-height);*/
  color: white;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-header"] > .overlay {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
}
body[data-template-id="744"] .layout-container[data-layout-name="about-header"] h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.5;
  color: white;
  max-width: 552px;
  margin-left: auto;
  margin-right: auto;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-header"] p {
  max-width: 552px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 600;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-header"] .widget.html {
  text-align: center;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-header"] > .wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-header"] > .wrapper::after {
  content: 'Photo: Aflatoun';
  display: block;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 12px;
  right: calc((100vw - 1024px)/2);
  color: white;
  font-size: 14px;
  font-weight: 600;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-header"] > .wrapper .layout-item-container {
  /*display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                height: 100%;*/
}
body[data-template-id="744"] .layout-container[data-layout-name="about-explanation"] > .wrapper {
  padding-top: 96px;
  padding-bottom: 136px;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-explanation"] > .wrapper .widget.html {
  max-width: 752px;
  margin-left: auto;
  margin-right: auto;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-explanation"] > .wrapper p {
  text-align: center;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-pop-out"],
body[data-template-id="744"] .layout-container[data-layout-name="about-pop-in"],
body[data-template-id="744"] .layout-container[data-layout-name="about-pop-out-under"] {
  margin-top: 40px;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-pop-out"] > .wrapper,
body[data-template-id="744"] .layout-container[data-layout-name="about-pop-in"] > .wrapper,
body[data-template-id="744"] .layout-container[data-layout-name="about-pop-out-under"] > .wrapper {
  padding-bottom: 80px;
  padding-top: 0;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-pop-out-under"] > .wrapper {
  padding-bottom: 120px;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-pop-in"] {
  margin-top: 0;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-register"] > .wrapper {
  padding-top: 96px;
  padding-bottom: 136px;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-register"] h2 {
  max-width: 654px;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: bold;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-register"] .join {
  margin-bottom: 16px;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-register"] .join-organisation a {
  font-size: 14px;
}
body[data-template-id="744"] .layout-container[data-layout-name="about-register"] .widget.html div {
  text-align: center;
}
body[data-template-id="744"] .widget.info-block.style-image-left h2,
body[data-template-id="744"] .widget.info-block.style-image-right h2 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 24px;
}
body[data-template-id="744"] .widget.info-block.style-image-left .content,
body[data-template-id="744"] .widget.info-block.style-image-right .content {
  padding-top: calc(80px);
  flex-grow: 57;
  flex-basis: 0%;
  flex-shrink: 57;
}
body[data-template-id="744"] .widget.info-block.style-image-left .widget-icon,
body[data-template-id="744"] .widget.info-block.style-image-right .widget-icon {
  flex-grow: 43;
  flex-basis: 0%;
  flex-shrink: 43;
  margin-top: -40px;
}
body[data-template-id="744"] .widget.info-block.style-image-left .widget-icon {
  margin-right: 32px;
}
body[data-template-id="744"] .widget.info-block.style-image-right .widget-icon {
  margin-left: 32px;
}
body[data-template-id="744"] .widget.info-block p,
body[data-template-id="744"] .widget.info-block .text {
  font-size: 16px;
  line-height: 1.8;
}
body[data-template-id="744"] .widget.info-block.style-image-left .content a.link,
body[data-template-id="744"] .widget.info-block.style-image-right .content a.link {
  background: none;
  color: inherit;
  padding: 0;
  box-shadow: none;
  font-weight: 600;
  font-family: inherit;
}
body[data-template-id="744"] .widget.info-block.style-image-left .content a.link span,
body[data-template-id="744"] .widget.info-block.style-image-right .content a.link span {
  display: flex;
  align-items: center;
}
body[data-template-id="744"] .widget.info-block.style-image-left .content a.link svg,
body[data-template-id="744"] .widget.info-block.style-image-right .content a.link svg {
  display: inline;
  font-size: 20px;
}
html.mobile body[data-template-id="744"] .widget.info-block.style-image-left .widget-icon {
  margin-right: 0;
}
html.mobile body[data-template-id="744"] .widget.info-block.style-image-right .widget-icon {
  margin-left: 0;
}
html.mobile body[data-template-id="744"] .content-area > .wrapper {
  overflow: visible;
}
html.mobile body[data-template-id="744"] .widget.info-block.style-image-left .content,
html.mobile body[data-template-id="744"] .widget.info-block.style-image-right .content {
  padding-top: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 0;
}
html.mobile body[data-template-id="744"] .layout-container[data-layout-name="about-explanation"] > .wrapper {
  /*padding-top: 60px;
        padding-bottom: 60px;*/
}
html.mobile body[data-template-id="744"] .layout-container[data-layout-name="about-header"] h1 {
  font-size: 48px;
  line-height: 1.35;
  margin-bottom: 16px;
}
html.mobile body[data-template-id="744"] .widget.info-block.style-image-left:last-child .content,
html.mobile body[data-template-id="744"] .widget.info-block.style-image-left:last-child .widget-icon,
html.mobile body[data-template-id="744"] .widget.info-block.style-image-right:last-child .content,
html.mobile body[data-template-id="744"] .widget.info-block.style-image-right:last-child .widget-icon {
  margin-bottom: 32px;
}
html.mobile body[data-template-id="744"] .widget.info-block.style-image-left h2,
html.mobile body[data-template-id="744"] .widget.info-block.style-image-right h2 {
  text-align: center;
}
html.mobile body[data-template-id="744"] .more-links nav {
  flex-direction: column;
}
html.mobile body[data-template-id="744"] .more-links nav > * {
  margin-right: 0;
  margin-bottom: 16px;
}
@keyframes link-hover-chevron {
  0% {
    transform: translateX(0px);
  }
  25% {
    transform: translateX(8px);
  }
  75% {
    transform: translateX(-8px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes bubble-up {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY( calc(0px - var(--transition-height, 0px) ));
  }
}
@keyframes float {
  0% {
    transform: translatey(20px) rotate(3deg);
  }
  50% {
    transform: translatey(-20px) rotate(-3deg);
  }
  100% {
    transform: translatey(20px) rotate(3deg);
  }
}
@keyframes float-bottle {
  0% {
    transform: translatey(20px) rotate(-38deg);
  }
  50% {
    transform: translatey(0px) rotate(-48deg);
  }
  100% {
    transform: translatey(20px) rotate(-38deg);
  }
}
@keyframes float-cap {
  0% {
    transform: translatey(20px);
  }
  50% {
    transform: translatey(0px);
  }
  100% {
    transform: translatey(20px);
  }
}
@keyframes float-2 {
  0% {
    transform: translatey(10px) rotate(6deg);
  }
  50% {
    transform: translatey(-10px) rotate(-6deg);
  }
  100% {
    transform: translatey(10px) rotate(6deg);
  }
}
@keyframes fish-seahorse {
  0% {
    transform: translateX(200%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  55% {
    transform: translateX(calc(0px - 90vw)) translateY(-170px) scaleX(1);
    opacity: 0;
  }
  55.0001% {
    transform: translateX(calc(0px - 90vw)) translateY(-170px) scaleX(-1);
  }
  60% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  99.9999% {
    transform: translateX(200%) translateY(0) scaleX(-1);
    opacity: 1;
  }
  100% {
    transform: translateX(200%) translateY(0) scaleX(1);
    opacity: 0;
  }
}
@keyframes bobble {
  0% {
    margin-top: -20px;
  }
  16% {
    margin-top: 20px;
  }
  32% {
    margin-top: -20px;
  }
  48% {
    margin-top: 20px;
  }
  64% {
    margin-top: -20px;
  }
  80% {
    margin-top: 20px;
  }
  100% {
    margin-top: -20px;
  }
}
@keyframes fish-bobble {
  0% {
    margin-top: -20px;
    transform: translateX(0px);
    opacity: 1;
  }
  20% {
    margin-top: 20px;
    transform: translateX(400px);
    opacity: 1;
  }
  40% {
    margin-top: -20px;
    transform: translateX(800px);
    opacity: 1;
  }
  60% {
    margin-top: 20px;
    transform: translateX(1200px);
    opacity: 1;
  }
  80% {
    margin-top: -20px;
    transform: translateX(1600px);
    opacity: 1;
  }
  100% {
    margin-top: 20px;
    transform: translateX(2000px);
    opacity: 0;
  }
}
#page-making-of-appeals {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  --skew-pixels: 100px;
  --figure-scale: 1;
}
#page-making-of-appeals .mobile-steps,
#page-making-of-appeals .mobile-steps-list,
#page-making-of-appeals .mobile-rings,
#page-making-of-appeals .mobile-bag {
  display: none;
}
#page-making-of-appeals h1 {
  color: white;
  text-align: center;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.5;
  max-width: 948px;
  margin-left: auto;
  margin-right: auto;
}
#page-making-of-appeals h2 {
  color: white;
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.5;
  font-family: 'Tomica';
  max-width: 605px;
  margin-left: auto;
  margin-right: auto;
}
#page-making-of-appeals p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 556px;
  margin: 0 auto;
  margin-top: 16px;
  text-align: center;
}
#page-making-of-appeals section.main p {
  max-width: 784px;
  line-height: 1.8;
}
#page-making-of-appeals section.main p::after {
  content: ' ';
  display: block;
  width: 132px;
  height: 2px;
  background: #ff005e;
  margin-top: 32px;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-bottom: 64px;
}
#page-making-of-appeals section a {
  color: white;
  margin-top: 24px;
  font-weight: bold;
}
#page-making-of-appeals section a svg {
  margin-left: 16px;
}
#page-making-of-appeals section a:hover {
  color: #ccc;
}
#page-making-of-appeals section a:hover svg {
  animation: link-hover-chevron 1s linear infinite;
}
#page-making-of-appeals a.button {
  display: inline-block;
  background: #ff005e;
  color: white;
  padding: 8px 32px;
  margin-top: 24px;
  width: auto;
  align-self: flex-start;
}
#page-making-of-appeals a.button:hover {
  background: #DC0252;
  color: white !important;
}
#page-making-of-appeals section.bg-light h2 {
  color: #2a3555;
}
#page-making-of-appeals section.bg-light p {
  color: #2a3555;
}
#page-making-of-appeals section.bg-light a {
  color: #2a3555;
}
#page-making-of-appeals section > .wrapper {
  max-width: 1366px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
#page-making-of-appeals section.image-right > .wrapper {
  display: flex;
}
#page-making-of-appeals section.image-right > .wrapper .left {
  margin-right: 64px;
}
#page-making-of-appeals section.image-right.v-align-middle > .wrapper {
  align-items: center;
}
#page-making-of-appeals section.image-right > .wrapper > * {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0%;
}
#page-making-of-appeals section.image-right > .wrapper > *.no-flex {
  display: block;
  text-align: center;
}
#page-making-of-appeals section.image-right h2,
#page-making-of-appeals section.image-right p {
  text-align: left;
  margin-left: 0;
  margin-right: unset;
}
#page-making-of-appeals section.main {
  background: #2a3555;
  color: white;
  padding-top: 80px;
  padding-bottom: 207px;
}
#page-making-of-appeals section.main::after {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  top: 0;
  height: 14px;
  background: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/pattern-wave-blue-top.png);
}
#page-making-of-appeals section.complex-problems {
  z-index: 1;
  position: relative;
  color: white;
  padding-top: 342px;
  background-color: #11ACBA;
  background-image: linear-gradient(360deg, rgba(17, 181, 196, 0), #16DAED);
  background-size: auto 400px;
  background-repeat: no-repeat;
  /*mask-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/pattern-wave-blue-top-mask.png);
        */
  /*&::after {
            content: ' ';
            display: block;
            
            height: 140px;
            background: blue;
            
            background: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/noise-v1-orange.png);
            
            left: 0;
            right: 0;
            z-index: -1;
            top: 0;
        }*/
}
#page-making-of-appeals section.complex-problems > .bg {
  background: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/pattern-wave-blue-top.png);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
}
#page-making-of-appeals section.complex-problems::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  top: 0;
  height: 600px;
  background: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/noise-blue-ocean.png);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  pointer-events: none;
}
#page-making-of-appeals section.complex-problems::after {
  content: ' ';
  display: block;
  height: 14px;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/pattern-wave-oceangreen-top.png);
  background-repeat: repeat-x;
  position: absolute;
  bottom: -14px;
  width: 100%;
  left: 0;
  right: 0;
  pointer-events: none;
}
#page-making-of-appeals section.complex-problems .figures-top {
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
  transform: translateY(-348px);
}
#page-making-of-appeals section.complex-problems .figures-bottom {
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
  height: 474px;
}
#page-making-of-appeals section.approach-problem {
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  padding-top: 342px;
  padding-bottom: 474px;
  background-color: #2a3555;
  background-image: linear-gradient(360deg, rgba(17, 181, 196, 0), #404b6a);
  background-size: auto 500px;
  background-repeat: repeat-x;
  /*&::before {
            background: #354B88;
            content: ' ';
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
            background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/bubble-bg-t.png);
            background-size: auto;
            background-repeat: no-repeat;
            background-position: 50% calc(50% - 40px);
            background-size: auto 100%;
        }*/
}
#page-making-of-appeals section.approach-problem::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  top: 0;
  height: 600px;
  background: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/noise-navy.png);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  pointer-events: none;
}
#page-making-of-appeals section.approach-problem > .wrapper {
  padding: 32px;
  z-index: 99999999999;
  position: relative;
}
#page-making-of-appeals section.approach-problem > .wrapper > img.bubble {
  position: absolute;
  border-radius: 9999px;
  will-change: transform;
  animation: float-cap 6s ease-in-out infinite;
}
#page-making-of-appeals section.approach-problem > .wrapper > img.bubble.btowu {
  bottom: calc(100% + 231px - 32px);
  right: calc(100% + 21px - 32px);
  width: 120px;
  height: 120px;
  animation-delay: -1.2s;
}
#page-making-of-appeals section.approach-problem > .wrapper > img.bubble.oc {
  bottom: 20%;
  left: calc(100% + 90px);
  width: 100px;
  height: 100px;
  animation-delay: -0.6s;
}
#page-making-of-appeals section.approach-problem > .wrapper > img.bubble.fote {
  bottom: calc(100% + 113px - 32px);
  left: 40%;
  width: 100px;
  height: 100px;
  animation-delay: -2.6s;
}
#page-making-of-appeals section.approach-problem > .wrapper > img.bubble.gyres {
  bottom: calc(100% + 53px - 32px);
  left: -242px;
  width: 90px;
  height: 90px;
  animation-delay: -3.6s;
}
#page-making-of-appeals section.approach-problem > .wrapper > img.bubble.oceancleanup {
  top: calc(100% + 80px - 32px);
  left: 36%;
  width: 120px;
  height: 120px;
  animation-delay: -4.6s;
}
#page-making-of-appeals section.approach-problem > .wrapper > img.bubble.plasticsoup {
  top: calc(100% + 80px - 32px);
  left: 85%;
  width: 90px;
  height: 90px;
  animation-delay: -5.6s;
}
#page-making-of-appeals section.approach-problem > .wrapper > img.bubble.nrdc {
  top: calc(100% + 210px - 32px);
  right: calc(100% + 27px - 32px);
  width: 100px;
  height: 100px;
  animation-delay: -1.6s;
}
#page-making-of-appeals section.approach-problem > .wrapper > img.bubble.ppc {
  top: 65%;
  right: calc(100% + 126px - 32px);
  width: 120px;
  height: 120px;
  animation-delay: -1.6s;
}
#page-making-of-appeals section.vetting-framework {
  z-index: 3;
  position: relative;
  color: white;
  padding-top: 194px;
  padding-bottom: 194px;
  margin-top: calc(0px - 300px);
}
#page-making-of-appeals section.vetting-framework > .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(360deg, #FF6C9A 34.97%, #e86e5a 100.05%);
  clip-path: polygon(0% 0%, calc(50% + 380px) 300px, 100% 0, 100% 100%, 0 100%);
}
#page-making-of-appeals section.vetting-framework > .bg::before {
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/noise-v1-orange.png);
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 500px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}
#page-making-of-appeals section.vetting-framework > .wrapper {
  position: relative;
}
#page-making-of-appeals section.vetting-framework > .wrapper .right img {
  max-width: 478px;
  width: 100%;
}
#page-making-of-appeals section.create-appeal {
  z-index: 4;
  position: relative;
  padding-top: 342px;
  background-repeat: repeat !important;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/bg-wave-transparant.png);
  background-size: auto auto !important;
}
#page-making-of-appeals section.create-appeal > .wrapper {
  padding-bottom: 422px;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/brand-earth-t.png);
  background-repeat: no-repeat;
  background-size: auto 411px;
  background-position: bottom right;
  width: 100%;
}
#page-making-of-appeals section.create-appeal .right {
  align-items: center;
}
#page-making-of-appeals section.create-appeal::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: radial-gradient(50% 89.98% at 50% 47.09%, #F5F6F8 39.46%, rgba(245, 246, 248, 0.81) 86.76%);
}
#page-making-of-appeals section.create-appeal figure.earth {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 300px;
}
#page-making-of-appeals section.create-appeal figure.earth-mobile {
  display: none;
}
#page-making-of-appeals section.create-appeal figure.mobile-in-hand {
  position: absolute;
  height: 696px;
  width: 416px;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/brand-hand-phone-t.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#page-making-of-appeals section.kinder-review {
  z-index: 4;
  background: linear-gradient(to bottom, #13c8da, #11adba);
  position: relative;
  color: white;
  padding-top: 221px;
  padding-bottom: 220px;
}
#page-making-of-appeals section.kinder-review::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 800px;
  z-index: 0;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/noise-blue-darkocean-t.png);
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0));
}
#page-making-of-appeals section.kinder-review > .wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 654px;
  max-width: 1144px;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/brand-circle-of-kinder-t.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}
#page-making-of-appeals section.kinder-review > .wrapper .steps > * {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #00afff;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 16px;
  padding-top: 16px;
}
#page-making-of-appeals section.kinder-review > .wrapper .steps > * figure {
  display: block;
}
#page-making-of-appeals section.kinder-review > .wrapper .steps > * figure img {
  width: 100%;
  height: 100%;
}
#page-making-of-appeals section.kinder-review > .wrapper .steps > *:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#page-making-of-appeals section.kinder-review > .wrapper .steps > *:nth-child(1) figure {
  width: 175px;
  height: 161px;
}
#page-making-of-appeals section.kinder-review > .wrapper .steps > *:nth-child(2) {
  top: 14%;
  left: 10%;
  transform: translateX(-50%) translateY(-50%);
}
#page-making-of-appeals section.kinder-review > .wrapper .steps > *:nth-child(2) figure {
  width: 166px;
  height: 183px;
}
#page-making-of-appeals section.kinder-review > .wrapper .steps > *:nth-child(3) {
  bottom: 6%;
  left: 26%;
  transform: translateX(-50%) translateY(50%);
}
#page-making-of-appeals section.kinder-review > .wrapper .steps > *:nth-child(3) figure {
  width: 152px;
  height: 153px;
}
#page-making-of-appeals section.kinder-review > .wrapper .steps > *:nth-child(4) {
  bottom: 6%;
  right: 26%;
  transform: translateX(50%) translateY(50%);
}
#page-making-of-appeals section.kinder-review > .wrapper .steps > *:nth-child(4) figure {
  width: 150px;
  height: 160px;
}
#page-making-of-appeals section.kinder-review > .wrapper .steps > *:nth-child(5) {
  top: 14%;
  right: 10%;
  transform: translateX(50%) translateY(-50%);
}
#page-making-of-appeals section.kinder-review > .wrapper .steps > *:nth-child(5) figure {
  width: 150x;
  height: 156px;
}
#page-making-of-appeals section.kinder-review > .wrapper .arrows > * {
  position: absolute;
}
#page-making-of-appeals section.kinder-review > .wrapper .arrows > * figure {
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/triangle-copy.svg);
  background-size: 32px 32px;
  width: 32px;
  height: 32px;
}
#page-making-of-appeals section.kinder-review > .wrapper .arrows > *:nth-child(1) {
  top: 3%;
  left: 30%;
  transform: translateX(-50%) translateY(-50%) rotate(8deg);
}
#page-making-of-appeals section.kinder-review > .wrapper .arrows > *:nth-child(2) {
  bottom: 23%;
  left: 1.5%;
  transform: translateX(50%) translateY(-50%) rotate(-116deg);
}
#page-making-of-appeals section.kinder-review > .wrapper .arrows > *:nth-child(3) {
  bottom: -1.5%;
  left: 50%;
  transform: translateX(-50%) translateY(50%) rotate(-160deg);
}
#page-making-of-appeals section.kinder-review > .wrapper .arrows > *:nth-child(4) {
  bottom: 22%;
  right: 0.7%;
  transform: translateX(-50%) translateY(-50%) rotate(-206deg);
}
#page-making-of-appeals section.kinder-review > .wrapper .arrows > *:nth-child(5) {
  top: 2.5%;
  right: 30%;
  transform: translateX(50%) translateY(-50%) rotate(30deg);
}
#page-making-of-appeals section.explore-appeals {
  z-index: 5;
  position: relative;
  color: white;
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: linear-gradient(358.49deg, #FF6C9A 35.28%, #FFCC17 129.79%);
}
#page-making-of-appeals section.explore-appeals > .wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#page-making-of-appeals section.explore-appeals::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/noise-v1-orange.png);
  mask-image: linear-gradient(-190deg, black 0%, rgba(255, 255, 255, 0) 65%);
  -webkit-mask-image: linear-gradient(-190deg, black 0%, rgba(255, 255, 255, 0) 65%);
}
#page-making-of-appeals figure.org {
  background: white;
  border-radius: 9999px;
  position: absolute;
  z-index: 6;
  will-change: transform, opacity, left, top;
  width: var(--size);
  height: var(--size);
  padding: 5px;
}
#page-making-of-appeals figure.org img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9999px;
}
#page-making-of-appeals figure.org::after {
  content: ' ';
  display: block;
  width: 24px;
  height: 24px;
  background: #2cd9c5;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 9999px;
}
#page-making-of-appeals figure.bubble-1,
#page-making-of-appeals figure.bubble-2,
#page-making-of-appeals figure.bubble-3 {
  position: absolute;
  z-index: 5;
  /*animation: bobble 12s ease-in-out infinite;*/
  will-change: transform;
  pointer-events: none;
}
#page-making-of-appeals figure.turtle {
  position: absolute;
  left: 5%;
  top: 0;
  width: 364px;
  height: 220px;
  will-change: transform;
  transform-origin: 0 50%;
  transform: scale(var(--figure-scale));
}
#page-making-of-appeals figure.turtle span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/turtle.svg);
  background-repeat: no-repeat;
  background-size: 364px 220px;
  animation: float 8s ease-in-out infinite;
}
#page-making-of-appeals figure.pinkfish {
  position: absolute;
  right: 26%;
  top: 00px;
  width: 120px;
  will-change: transform;
  height: 120px;
  transform-origin: 0 50%;
  transform: scale(var(--figure-scale));
}
#page-making-of-appeals figure.pinkfish span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/pinkfish.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation: float-cap 6s ease-in-out infinite;
  animation-delay: -1.2s;
}
#page-making-of-appeals figure.seahorse-straw {
  position: absolute;
  right: 9%;
  top: 80px;
  will-change: transform;
  width: 215px;
  height: 142px;
  transform-origin: 0 50%;
  transform: scale(var(--figure-scale));
}
#page-making-of-appeals figure.seahorse-straw span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/seahorse-straw.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: translateX(-100%);
  opacity: 1;
  will-change: transform;
  animation: float 13s linear infinite;
}
#page-making-of-appeals figure.bottle {
  position: absolute;
  left: 31%;
  top: 0;
  will-change: transform;
  width: 184px;
  height: 151px;
  transform-origin: 0 50%;
  transform: scale(var(--figure-scale));
}
#page-making-of-appeals figure.bottle span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/bottle.svg);
  background-repeat: no-repeat;
  background-size: 184px 151px;
  will-change: transform;
  animation: float-bottle 3s ease-in-out infinite;
  animation-delay: -4s;
}
#page-making-of-appeals figure.cap {
  position: absolute;
  left: 48%;
  top: 140px;
  width: 48px;
  height: 48px;
  transform-origin: 0 50%;
  transform: scale(var(--figure-scale));
}
#page-making-of-appeals figure.cap span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/cap.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation: float-cap 3s ease-in-out infinite;
  animation-delay: -0.2s;
}
#page-making-of-appeals figure.cup {
  position: absolute;
  left: 7%;
  top: 240px;
  width: 120px;
  height: 120px;
  transform-origin: 0 50%;
  transform: scale(var(--figure-scale));
}
#page-making-of-appeals figure.cup span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/cup.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  will-change: transform;
  animation: float-cap 3s ease-in-out infinite;
  animation-delay: -2.2s;
}
#page-making-of-appeals figure.rings,
#page-making-of-appeals figure.mobile-rings {
  position: absolute;
  right: 6%;
  top: 280px;
  width: 250px;
  height: 240px;
  will-change: transform;
  transform-origin: 0% 50%;
  transform: scale(var(--figure-scale));
}
#page-making-of-appeals figure.rings span,
#page-making-of-appeals figure.mobile-rings span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/rings.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  will-change: transform;
  animation: float-cap 3s ease-in-out infinite;
  animation-delay: -1.2s;
}
#page-making-of-appeals figure.rings-mini {
  position: absolute;
  left: 15%;
  top: 404px;
  width: 120px;
  height: 130px;
  transform-origin: 0% 50%;
  transform: scale(var(--figure-scale));
}
#page-making-of-appeals figure.rings-mini span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/rings-2.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation: float-cap 3s ease-in-out infinite;
  animation-delay: -1.2s;
}
#page-making-of-appeals figure.bag,
#page-making-of-appeals figure.mobile-bag {
  position: absolute;
  right: 4%;
  top: 100px;
  width: 180px;
  height: 170px;
  transform-origin: 100% 50%;
  transform: scale(var(--figure-scale));
}
#page-making-of-appeals figure.bag span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/bag-1.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation: float-cap 3s ease-in-out infinite;
  animation-delay: -2.2s;
}
#page-making-of-appeals figure.bag-fish {
  position: absolute;
  left: 0;
  top: 0;
  width: 440px;
  height: 440px;
  z-index: 5;
  transform-origin: 0 50%;
  transform: translateX(-40px) scale(var(--figure-scale));
}
#page-making-of-appeals figure.bag-fish span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/bag.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#page-making-of-appeals figure.bag-fish-fish {
  position: absolute;
  transform-origin: 0 50%;
  transform: translateX(-40px) scale(var(--figure-scale));
  width: 140px;
  height: 40px;
}
#page-making-of-appeals figure.bag-fish-fish span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/fish-1.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation: fish-bobble 9s linear infinite;
}
#page-making-of-appeals figure.bag-fish-fish-1 {
  left: 60px;
  top: 230px;
  width: 140px;
  height: 40px;
}
#page-making-of-appeals figure.bag-fish-fish-1 span {
  animation-duration: 8s;
  animation-delay: -1s;
}
#page-making-of-appeals figure.bag-fish-fish-2 {
  left: 60px;
  top: 190px;
  width: 120px;
  height: 30px;
}
#page-making-of-appeals figure.bag-fish-fish-2 span {
  animation-duration: 8.4s;
  animation-delay: -1.4s;
}
#page-making-of-appeals figure.bag-fish-fish-3 {
  left: 80px;
  top: 250px;
  width: 120px;
  height: 30px;
}
#page-making-of-appeals figure.bag-fish-fish-3 span {
  animation-duration: 8.9s;
  animation-delay: -1.6s;
}
#page-making-of-appeals img#vetting-machine-overlay {
  position: absolute;
  z-index: 5555;
}
#page-making-of-appeals #mobile-in-hand-overlay {
  position: absolute;
  z-index: 5555;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/mobile-in-hand-copy@2x.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 768px) {
  #page-making-of-appeals {
    --skew-pixels: 40px;
  }
  #page-making-of-appeals h1 {
    font-size: var(--h1-font-size-mobile);
  }
  #page-making-of-appeals h2 {
    font-size: var(--h2-font-size-mobile);
  }
  #page-making-of-appeals p {
    font-size: 16px;
  }
  #page-making-of-appeals a {
    font-size: 16px;
  }
  #page-making-of-appeals figure.pinkfish {
    top: 62px;
    right: -6%;
  }
  #page-making-of-appeals figure.bottle {
    left: 50%;
    right: unset;
  }
  #page-making-of-appeals figure.turtle {
    top: 22px;
  }
  #page-making-of-appeals figure.bag {
    display: none;
  }
  #page-making-of-appeals figure.cap {
    display: none;
  }
  #page-making-of-appeals figure.rings {
    display: none;
  }
  #page-making-of-appeals figure.bag-fish {
    display: none;
  }
  #page-making-of-appeals figure.bag {
    display: none;
  }
  #page-making-of-appeals figure.cup {
    display: none;
  }
  #page-making-of-appeals figure.rings-mini {
    display: none;
  }
  #page-making-of-appeals .bubble-1,
  #page-making-of-appeals .bubble-2,
  #page-making-of-appeals .bubble-3 {
    display: none;
  }
  #page-making-of-appeals figure.seahorse-straw {
    top: 0px;
    left: 50%;
    right: unset;
    transform: scale(var(--figure-scale)) translateX(-50%);
  }
  #page-making-of-appeals figure.seahorse-straw span {
    opacity: 1;
    animation: float 8s ease-in-out infinite;
  }
  #page-making-of-appeals section.main {
    padding-bottom: 96px;
  }
  #page-making-of-appeals section.main > .wrapper {
    max-width: 352px;
    padding-left: 16px;
    padding-right: 16px;
  }
  #page-making-of-appeals section.create-appeal {
    padding-top: 96px;
  }
  #page-making-of-appeals section.create-appeal > .wrapper {
    background: none;
    position: relative;
  }
  #page-making-of-appeals section.create-appeal figure.earth {
    display: none;
  }
  #page-making-of-appeals section.create-appeal figure.earth-mobile {
    display: block;
    position: absolute;
    height: 253px;
    width: 253px;
    background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/group-72@2x-t.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    bottom: 52px;
  }
  #page-making-of-appeals section.create-appeal figure.mobile-in-hand {
    height: 400px;
    width: 281px;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-position: top right;
    transform: scale(0.7);
    transform-origin: 100% 100%;
  }
  #page-making-of-appeals section.complex-problems {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  #page-making-of-appeals section.complex-problems > .wrapper {
    max-width: 352px;
    padding-left: 16px;
    padding-right: 16px;
  }
  #page-making-of-appeals section.complex-problems .figures-bottom {
    height: auto;
  }
  #page-making-of-appeals section.complex-problems .figures-top {
    transform: translateY(-214px);
  }
  #page-making-of-appeals section.vetting-framework {
    padding-bottom: 96px;
    padding-top: 0;
  }
  #page-making-of-appeals section.vetting-framework > .wrapper {
    max-width: 352px;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: -72px;
  }
  #page-making-of-appeals section.vetting-framework > .wrapper > .right {
    margin-bottom: 42px;
  }
  #page-making-of-appeals section.vetting-framework > .wrapper > .right img {
    max-width: 300px;
  }
  #page-making-of-appeals section.create-appeal > .wrapper {
    max-width: 352px;
    padding-left: 16px;
    padding-right: 16px;
  }
  #page-making-of-appeals section.explore-appeals {
    padding-bottom: 40px;
    padding-top: 96px;
  }
  #page-making-of-appeals section.explore-appeals > .wrapper {
    max-width: 352px;
    padding-left: 16px;
    padding-right: 16px;
  }
  #page-making-of-appeals section.explore-appeals a {
    width: 100%;
    text-align: center;
  }
  #page-making-of-appeals section.explore-appeals .right img {
    margin-bottom: 24px;
  }
  #page-making-of-appeals section.approach-problem {
    padding-top: 180px;
    padding-bottom: 334px;
  }
  #page-making-of-appeals section.approach-problem > .wrapper {
    max-width: 352px;
    padding-left: 16px;
    padding-right: 16px;
  }
  #page-making-of-appeals section.approach-problem > .wrapper > img.bubble {
    position: absolute;
    border-radius: 9999px;
    will-change: transform;
    animation: float-cap 6s ease-in-out infinite;
  }
  #page-making-of-appeals section.approach-problem > .wrapper > img.bubble.btowu {
    bottom: calc(100% + 82px - 32px);
    left: 6px;
    right: unset;
    width: 72px;
    height: 72px;
    animation-delay: -1.2s;
  }
  #page-making-of-appeals section.approach-problem > .wrapper > img.bubble.fote {
    bottom: calc(100% + 52px - 32px);
    left: 40%;
    width: 66px;
    height: 66px;
    animation-delay: -2.6s;
  }
  #page-making-of-appeals section.approach-problem > .wrapper > img.bubble.gyres {
    bottom: calc(100% + 80px - 32px);
    left: unset;
    right: 4px;
    width: 50px;
    height: 50px;
    animation-delay: -3.6s;
  }
  #page-making-of-appeals section.approach-problem > .wrapper > img.bubble.oc {
    top: calc(100% + 80px - 32px);
    left: 70px;
    right: unset;
    bottom: unset;
    width: 90px;
    height: 90px;
    animation-delay: -0.6s;
  }
  #page-making-of-appeals section.approach-problem > .wrapper > img.bubble.oceancleanup {
    display: none;
  }
  #page-making-of-appeals section.approach-problem > .wrapper > img.bubble.plasticsoup {
    top: calc(100% + 54px - 32px);
    right: 83px;
    left: unset;
    width: 60px;
    height: 60px;
    animation-delay: -5.6s;
  }
  #page-making-of-appeals section.approach-problem > .wrapper > img.bubble.nrdc {
    display: none;
  }
  #page-making-of-appeals section.approach-problem > .wrapper > img.bubble.ppc {
    display: none;
  }
  #page-making-of-appeals section.kinder-review {
    padding-top: 96px;
    padding-bottom: 128px;
  }
  #page-making-of-appeals section.kinder-review h2 {
    margin-bottom: 32px;
  }
  #page-making-of-appeals section.kinder-review .steps {
    display: none;
  }
  #page-making-of-appeals section.kinder-review .arrows {
    display: none;
  }
  #page-making-of-appeals section.kinder-review .wrapper {
    flex-direction: column;
    background-image: none;
    max-width: 352px;
    padding-left: 16px;
    padding-right: 16px;
  }
  #page-making-of-appeals section.kinder-review .mobile-steps {
    display: block;
  }
  #page-making-of-appeals section.kinder-review .mobile-steps img {
    width: 100%;
    max-width: 400px;
  }
  #page-making-of-appeals section.kinder-review .mobile-steps-list {
    display: block;
    margin-top: 36px;
  }
  #page-making-of-appeals section.kinder-review .mobile-steps-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
  }
  #page-making-of-appeals section.kinder-review .mobile-steps-list li span {
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    background: #317da4;
    color: white;
    font-weight: 600;
    font-size: 20px;
    margin-right: 8px;
    border-radius: 9999px;
  }
  #page-making-of-appeals section.kinder-review > .wrapper::before {
    display: none !important;
  }
  #page-making-of-appeals .image-right > .wrapper {
    flex-direction: column;
  }
  #page-making-of-appeals .image-right > .wrapper .left {
    margin-right: 0 !important;
  }
  #page-making-of-appeals .image-right > .wrapper .right {
    order: -1;
  }
}
html {
  font-variant-ligatures: none;
  overflow-x: hidden;
}
html.header-menu-open {
  overflow: hidden;
}
@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: #fd966d;
}
.share-selected-text-main-container .share-selected-text-inner {
  background: #2a3555;
  border-radius: 8px;
}
.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 {
  border-radius: 8px 0 0 8px;
}
.share-selected-text-main-container .share-selected-text-btn:last-child {
  border-radius: 0 8px 8px 0;
}
.share-selected-text-main-container .share-selected-text-inner::after {
  border-color: #2a3555 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;
}
#page-dim {
  z-index: 1000;
}
input[type="text"],
input[type="password"],
input[type="email"],
select {
  /*border-radius: 4px; MOEST VAN KOEN */
}
header#header.kinder .user.hidden {
  display: none !important;
}
/*html.desktop header#header.kinder .session:hover,*/
header#header.kinder .session.open .avatar {
  position: relative;
}
header#header.kinder .session.open .avatar::after {
  content: ' ';
  display: block;
  position: absolute;
  height: 2px;
  background: green;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(#fd966d, #ff6c9a);
}
header#header.kinder .session.open .session-menu > .wrapper {
  display: flex;
}
html.desktop header#header > .container .top .widget.menu .item.selected a {
  box-shadow: none !important;
}
header#header.kinder .session {
  display: none !important;
  position: relative;
}
header#header.kinder .session.show {
  display: flex !important;
}
header#header.kinder .session .avatar {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 14px;
  padding-right: 14px;
  cursor: pointer;
}
header#header.kinder .session .avatar > svg {
  font-size: 13px;
  color: #9e9e9e;
}
header#header.kinder .session .session-menu {
  position: absolute;
  top: 100%;
  padding-top: 8px;
  right: 2px;
  min-width: 240px;
}
header#header.kinder .session .session-menu > .wrapper {
  display: none;
  background: white;
  border: 1px solid #eaeaea;
  position: relative;
  flex-direction: column;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.2));
}
header#header.kinder .session .session-menu > .wrapper > span {
  width: 12px;
  height: 12px;
  position: absolute;
  top: -6px;
  background: white;
  transform: rotate(45deg);
  right: 12px;
  z-index: 0;
}
header#header.kinder .session .session-menu .item {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #9b9b9b;
  position: relative;
  z-index: 5;
}
header#header.kinder .session .session-menu .item:hover {
  background: #eaeaea;
}
header#header.kinder .session figure {
  margin-right: 6px;
}
header#header.kinder .session figure img {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
}
.widget.cms-fragments .fragment.cms-text h2 {
  margin-bottom: 12px;
  margin-top: 16px;
}
.widget.cms-fragments .fragment.cms-text p {
  margin-bottom: 24px;
}
.ui-button {
  color: #bbbbbb;
}
.layout-container[data-layout-name="three-pillars"] > .wrapper {
  padding-top: 96px;
  padding-bottom: 96px;
}
.layout-container[data-layout-name="three-pillars"] .widget.info-block {
  display: flex;
  flex-direction: column;
}
.layout-container[data-layout-name="three-pillars"] .widget.info-block .widget-icon {
  order: 0;
  text-align: center;
  margin-bottom: 24px;
}
.layout-container[data-layout-name="three-pillars"] .widget.info-block .widget-icon img {
  height: 64px;
}
.layout-container[data-layout-name="three-pillars"] .widget.info-block .widget-header {
  text-align: center;
  font-size: 24px;
  line-height: 36px;
  order: 1;
  color: white;
  margin-bottom: 4px;
  font-weight: 600;
}
.layout-container[data-layout-name="three-pillars"] .widget.info-block .content {
  order: 2;
}
.layout-container[data-layout-name="three-pillars"] .widget.info-block .content .text,
.layout-container[data-layout-name="three-pillars"] .widget.info-block p {
  font-size: 16px;
  line-height: 28px;
  color: white;
  text-align: center;
}
/*
	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: 0 16px;
}
header#header > .container .site .widget.menu .item.selected a {
  text-decoration: underline;
}
header#header > .container > .wrapper .identity img {
  max-height: 24px;
  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.kinder .top > .wrapper {
  padding: 0 48px 0 56px;
}
html.mobile header#header.kinder .top > .wrapper {
  padding: 0 24px 0 16px;
}
header#header.kinder .bottom > .wrapper {
  padding: 0 24px;
}
header#header.kinder .bottom > .wrapper .search {
  margin-left: auto;
}
.mfe-theme-header-small header#header > .container {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.05);
}
.widget.cms-summary {
  font-weight: 600;
  --widget-margin-bottom: 24px;
  color: #2a3555;
  font-size: 18px;
  font-style: italic;
}
/*
	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 {
  margin-bottom: 16px !important;
}
.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 {
  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 {
  --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;
  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;
}
a.button.cta {
  padding: 18px 32px;
  color: white;
  background-color: #ff005e;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
  display: inline-block;
  font-family: Tomica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  transition: all 0.25s;
}
a.button.cta:hover {
  background-color: #c70049;
}
a.button.alt {
  padding: 18px 32px;
  color: #777777;
  background-color: #eaeaea;
  display: inline-block;
  font-family: Tomica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  transition: all 0.25s;
}
a.button.alt:hover {
  background-color: #ddd;
}
.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;
}
section#content .layout-container.page-width:last-child > .wrapper {
  padding-bottom: 80px;
}
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.cms-fragments .fragment.cms-image .copyright {
  margin-top: 4px;
  padding: 2px;
}
.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-size: 24px;
  font-weight: bold;
  color: #111;
  line-height: 1.2;
  color: #2a3555;
}
.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: 8px;
  margin-bottom: 8px;
}
.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;
}
.widget.content-scroller.style-default .content.base-default ul li {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.05);
}
.layout-container[data-layout-name="last-layout-container"]::after {
  content: ' ';
  display: block;
  height: 1px;
  width: 100%;
  max-width: 1024px;
  background: #eaeaea;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.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"] > .background::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  content: ' ';
}
.layout-container[data-layout-name="vertical-page-header"] > .overlay {
  top: 100px;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 0) 15%, #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;
  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,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper {
  background-image: ;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 80px;
  padding-top: 64px;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left h2,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left h2 {
  font-family: Tomica;
  font-weight: 900;
  font-size: 24px;
  color: #242424;
}
footer#footer.bigfoot > .wrapper .newsletter .newsletter-header,
footer#footer.kinder-v2 > .wrapper .newsletter .newsletter-header {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
footer#footer.bigfoot > .wrapper .newsletter .newsletter-header h2,
footer#footer.kinder-v2 > .wrapper .newsletter .newsletter-header h2 {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  padding-right: 16px;
}
footer#footer.bigfoot > .wrapper .newsletter .newsletter-header img,
footer#footer.kinder-v2 > .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.name-frontpage-top-grid-full .content.base-default.style-pattern-1-2-2-1 ul li:not(.filler) {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.layout-container[data-layout-name="section-welcome"] {
  border-bottom: 1px solid #eaeaea;
  position: relative;
  overflow: hidden;
}
.layout-container[data-layout-name="section-welcome"] > .wrapper {
  position: relative;
  z-index: 50;
}
.layout-container[data-layout-name="section-welcome"] h1 {
  font-size: 64px;
  line-height: 86px;
  font-weight: 900;
  max-width: 674px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.layout-container[data-layout-name="section-welcome"] p {
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 16px;
}
.layout-container[data-layout-name="section-welcome"] p strong {
  font-weight: 600;
}
.layout-container[data-layout-name="section-welcome"] > .wrapper {
  padding: 96px 0;
}
.layout-container[data-layout-name="section-welcome"]::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 400px;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/kinder-bg-pink-left.svg);
  background-repeat: no-repeat;
  background-position: -60px 0;
  background-size: 100% auto !important;
}
.layout-container[data-layout-name="section-welcome"]::after {
  content: ' ';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 400px;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/kinder-bg-pink-right.svg);
  background-repeat: no-repeat;
  background-position: calc(100% ) 0;
  background-size: 100% auto !important;
}
html.mobile .layout-container[data-layout-name="section-welcome"]::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 68px;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/kinder-bg-pink-left.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto !important;
}
html.mobile .layout-container[data-layout-name="section-welcome"]::after {
  content: ' ';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 68px;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/kinder-bg-pink-right.svg);
  background-repeat: no-repeat;
  background-position: 13px calc(100% + 60px);
  background-size: 100% auto !important;
}
.layout-container[data-layout-name="section-pink"] {
  border-bottom: 1px solid #eaeaea;
  position: relative;
}
.layout-container[data-layout-name="section-pink"] > .wrapper {
  padding: 96px 0;
}
.layout-container[data-layout-name="section-pink"]::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 400px;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/kinder-bg-pink-left.svg);
  background-repeat: no-repeat;
  background-position: -160px 0;
  background-size: 100% auto !important;
}
.layout-container[data-layout-name="section-pink"]::after {
  content: ' ';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 400px;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/164/folder-642/kinder-bg-pink-right.svg);
  background-repeat: no-repeat;
  background-position: calc(100% + 70px) 0;
  background-size: 100% auto !important;
}
.layout-container[data-layout-name="section-pink"] .widget.html p.small-print {
  position: relative;
  padding-top: 64px;
  color: #777;
  font-style: italic;
  font-size: 14px;
}
.layout-container[data-layout-name="section-pink"] .widget.html p.small-print::before {
  content: ' ';
  display: block;
  height: 1px;
  position: relative;
  top: -32px;
  width: 100%;
  background: #eaeaea;
}
.layout-container[data-layout-name="section-pink"] .widget.html p.small-print a {
  color: #ff005e;
  text-decoration: underline;
  font-size: inherit;
  transition: all 0.25s;
}
.layout-container[data-layout-name="section-pink"] .widget.html p.small-print a:hover {
  color: #c70049;
}
header#header .quick-explanation {
  display: none !important;
}
header#header .wrapper .right .user,
header#header .wrapper .right .session {
  --menu-item-font-family: Open Sans;
  --menu-item-font-color: #989898;
  --menu-item-font-size: 14px;
  --menu-item-line-height: 1.00;
  --menu-item-font-weight: 600;
  --menu-item-selected-font-family: Open Sans;
  --menu-item-selected-font-color: #222222;
  --menu-item-selected-font-size: 14px;
  --menu-item-selected-line-height: 1.00;
  --menu-item-selected-font-weight: 600;
  --menu-item-hover-font-family: Open Sans;
  --menu-item-hover-font-color: #222222;
  --menu-item-hover-font-size: 14px;
  --menu-item-hover-line-height: 1.00;
  --menu-item-hover-font-weight: 600;
  display: flex;
}
header#header .wrapper .right .user button,
header#header .wrapper .right .session > a {
  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));
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
header#header .wrapper .right .user button.selected,
header#header .wrapper .right .session > a.selected {
  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)));
  /*box-shadow: 0 -2px 0px 0px rgb(255, 0, 94) inset !important;*/
}
header#header .wrapper .right .user button.selected::after,
header#header .wrapper .right .session > a.selected::after {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(#fd966d, #ff6c9a);
}
header#header .wrapper .right .user button:hover,
header#header .wrapper .right .session > a:hover {
  color: #ff0032;
  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)));
}
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 {
  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;
  background: rgba(0, 0, 0, 0.8);
  font-family: Tomica;
  font-size: 24px;
}
html.mobile .ui-button-group {
  display: flex;
}
html.mobile .ui-button-group a,
html.mobile .ui-button-group button {
  flex-grow: 1;
  flex-basis: 0%;
  text-align: center;
  padding: 18px 0;
}
html.mobile .layout-container[data-layout-name="section-welcome"] h1 {
  font-size: 48px;
  line-height: 65px;
}
html.mobile .layout-container[data-layout-name="section-welcome"] > .wrapper {
  padding: 96px 16px;
}
@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,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter .newsletter-header img {
  position: relative;
  transform: none;
  left: unset;
  top: unset;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper {
  background-position: calc(100% - 16px) 32px;
  background-size: auto 56px;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left h2,
html.mobile footer#footer.kinder-v2 > .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;
  max-height: unset !important;
  line-height: 1.2 !important;
}
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 {
  --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,
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 {
  position: relative;
}
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,
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 {
  background: #2a3555 !important;
  padding-top: 0 !important;
  margin-top: 16px !important;
}
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 16px;
  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 {
  padding: 16px !important;
}
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;*/
}
html.desktop #cookie-bar .choice .section {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (max-width: 1056px) {
  html.desktop #cookie-bar {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 1023px) {
  html.desktop #cookie-bar .scroll-area {
    flex-direction: row;
    -webkit-flex-direction: row;
  }
  html.desktop #cookie-bar {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  #cookie-bar {
    height: auto;
  }
  #cookie-bar .continue {
    margin-left: 0;
    padding-left: 0;
  }
  html.desktop #cookie-bar .description {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
