/* Theme CSS */

html {
  --page-width: 978px;
  --input-placeholder-font-color: #ccc;
}
* {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}
html {
  width: 100%;
  height: 100%;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  vertical-align: top;
}
input[type="text"],
input[type="email"],
input[type="date"],
input[type="password"],
input[type="button"],
input[type="submit"],
button,
textarea,
select {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-transform: inherit;
  text-decoration: inherit;
}
input[type="text"],
input[type="email"],
input[type="date"],
input[type="password"],
textarea,
select {
  padding: 10px 14px;
  border: 1px solid #ddd;
  background: white;
}
input[type="button"],
input[type="submit"],
button {
  padding: 10px 14px;
  border: 1px solid #ddd;
}
button {
  background: none;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  overflow: visible;
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
}
h1 > strong {
  font-weight: inherit;
  font-style: inherit;
}
.content-area {
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: 50% 50%;
}
.content-area > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 32px 0;
}
.content-area > .wrapper > .widget:last-child {
  margin-bottom: 0;
}
.content-area > .wrapper > h1,
.layout-container .layout-item-container > h1 {
  margin-bottom: 24px;
}
.content-area.mini-height > .wrapper,
.content-area.small-height > .wrapper,
.content-area.medium-height > .wrapper {
  height: 100%;
}
.content-area.full-height > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 100vh;
}
.content-area.hero.full-height {
  height: 100%;
}
.content-area.hero.medium-height {
  height: 600px;
}
.content-area.hero.small-height {
  height: 400px;
}
.content-area.hero.mini-height {
  height: 300px;
}
.content-area.hero.fixed-position > .wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.content-area.hero.style-center {
  display: flex;
  display: -webkit-flex;
}
.content-area.hero.style-center > .wrapper {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.content-area.hero > .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.content-area.hero > .wrapper {
  z-index: 10;
}
.content-area.full-width > .wrapper {
  width: 100%;
  max-width: 100%;
}
.content-area.full-width > .wrapper > h1 {
  max-width: var(--page-width);
  margin: 0 auto;
  margin-bottom: 24px;
}
.content-area.min-padding > .wrapper {
  padding: 12px 0;
}
.content-area.max-padding > .wrapper {
  padding: 32px 96px;
}
.content-area.no-padding > .wrapper {
  padding: 0;
}
.content-area.article {
  padding-top: 240px;
}
.content-area.page-width-thin > .wrapper > * {
  width: 100%;
  max-width: 720px;
}
/*.content-area.page-width-thin.center-contents > .wrapper {
	.display-flex();
	.flex-direction(column);
	.align-items(center);
}*/
.content-area.page-width-dialog {
  min-height: 100vh;
  padding-top: 180px;
}
.content-area.page-width-dialog > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  width: 100%;
  max-width: 580px;
  padding: 32px;
  margin-bottom: 32px;
}
.content-area-header {
  margin-bottom: 24px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}
.content-area.no-top-padding > .wrapper {
  padding-top: 0;
}
.content-area.no-bottom-padding > .wrapper {
  padding-bottom: 0;
}
.content-area.bg-carousel > .backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.content-area.bg-carousel > .backgrounds .bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-position: center center;
  transition: opacity 2s;
}
.content-area.bg-carousel[data-bg-index="0"] > .backgrounds .bg:nth-child(1) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="1"] > .backgrounds .bg:nth-child(2) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="2"] > .backgrounds .bg:nth-child(3) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="3"] > .backgrounds .bg:nth-child(4) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="4"] > .backgrounds .bg:nth-child(5) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="5"] > .backgrounds .bg:nth-child(6) {
  opacity: 1;
}
/* Mobile */
html.mobile .content-area > .wrapper {
  max-width: unset;
  padding: 32px 16px;
  width: 100%;
  overflow: hidden;
}
html.mobile .content-area.full-width.no-padding > .wrapper > h1 {
  width: 100%;
  margin-left: 16px;
  margin-right: 16px;
}
html.mobile .content-area.page-width-dialog {
  padding-bottom: 32px;
  padding-top: 120px;
}
html.mobile .content-area.page-width-dialog > .wrapper {
  margin-left: var(--mobile-gutter, 16px);
  margin-right: var(--mobile-gutter, 16px);
  width: calc(100% - (2 * var(--mobile-gutter, 16px)));
  margin-bottom: 0;
}
html.mobile .content-area.hero.style-center > .wrapper {
  padding-left: 32px;
  padding-right: 32px;
}
html.mobile .content-area.no-padding > .wrapper {
  padding: 0;
}
/* General */
.layout-container > .overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
/* Desktop */
.layout-container.page-width .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: 80px;
  padding: 24px;
  z-index: 100;
  background: white;
}
.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-spacing, 0);
}
.layout.layout-sidebar .layout-item-container > .widget:last-child {
  margin-bottom: 0px;
}
.layout-sidebar[data-sticky-sidebar="true"] > .sidebar {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  position: sticky;
  top: 0;
}
.layout-3columns {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout.layout-3columns > .layout-item {
  display: flex;
  display: -webkit-flex;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 80px;
  margin-bottom: 0px;
  padding: 24px;
  z-index: 100;
  background: none;
}
.layout.layout-3columns > .layout-item .layout-item-container {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  width: 100%;
  background: none;
}
.layout-3columns > .layout-item:last-child {
  margin-right: 0;
}
.layout-trinity {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout.layout-trinity > .left {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 32px;
  margin-bottom: 0;
  padding: 24px;
  z-index: 100;
  background: white;
}
.layout-trinity > .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 320px;
  -webkit-flex-basis: 320px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.layout-trinity > .right .layout-item:last-child {
  margin-bottom: 0;
}
.layout-trinity > .right .top {
  z-index: 100;
  margin-bottom: 32px;
}
.layout.layout-trinity > .right .bottom {
  z-index: 100;
}
.layout .layout-item {
  background: white;
  padding: 24px;
}
.layout .layout-item > h1,
.layout .layout-item-container > h1 {
  margin-bottom: 14px;
}
.layout .layout-item.no-padding,
.layout .layout-item .layout-item-container.no-padding {
  padding: 0 !important;
}
.layout .layout-item.no-margin,
.layout .layout-item .layout-item-container.no-margin {
  margin: 0 !important;
}
.layout .layout-item.no-bg {
  background: none !important;
}
.layout .layout-item-container {
  padding: 24px;
  margin-bottom: 24px;
}
.layout .layout-item.layout-grow,
.layout .layout-item .layout-item-container.layout-grow {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
.layout-2columns {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout-2columns > .layout-item .layout-item-container {
  background: none;
}
.layout-2columns > .layout-item {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 80px;
  padding: 24px;
  z-index: 100;
  background: none;
  margin-bottom: 0;
}
.layout-2columns > .layout-item.align-center-vertical {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
}
.layout-2columns > .layout-item:last-child {
  margin-right: 0;
}
.layout-pyramid-1-3 {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.layout-pyramid-1-3 .top {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.layout-pyramid-1-3 .bottom {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout-pyramid-1-3 .bottom .layout-item {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 80px;
  padding: 24px;
  z-index: 100;
  background: none;
  margin-bottom: 0;
}
.layout-pyramid-1-3 .bottom .layout-item:last-child {
  margin-right: 0;
}
.layout {
  height: var(--layout-height, auto);
}
/* Mobile */
html.mobile .layout-sidebar {
  display: block;
}
html.mobile .layout-sidebar > .main {
  margin-right: 0;
}
html.mobile .layout-sidebar > .sidebar {
  display: none;
}
html.mobile .layout {
  margin-left: 0;
  margin-right: 0;
}
html.mobile .layout-3columns {
  flex-direction: column;
  -webkit-flex-direction: column;
  height: auto;
}
html.mobile .layout.layout-3columns > .layout-item {
  margin-right: 0;
  margin-bottom: 64px;
  flex-basis: unset;
  -webkit-flex-basis: unset;
}
html.mobile .layout.layout-3columns > .layout-item:last-child {
  margin-bottom: 0;
}
html.mobile .layout-2columns {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile .layout.layout-2columns > .layout-item {
  margin-right: 0;
  flex-basis: unset;
  -webkit-flex-basis: unset;
  margin-bottom: 32px;
}
html.mobile .layout.layout-2columns > .layout-item:last-child {
  margin-bottom: 0;
}
:root {
  --mobile-gutter: 16px;
}
html {
  overflow-y: scroll;
}
#page-dim {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#page-dim.show {
  opacity: 1;
  pointer-events: all;
}
#hero-widget > .widget {
  height: 100vh;
}
header#header {
  height: var(--header-height, 48px);
}
header#header > .placeholder {
  height: inherit;
}
header#header > .container {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 50000;
  height: inherit;
  background-color: var(--background-color, var(--header-background-color));
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 4px 0px;
}
header#header > .container > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  max-width: var(--page-width);
  height: 100%;
  margin: 0 auto;
}
header#header.full-width > .container > .wrapper {
  max-width: 100%;
  width: 100%;
}
header#header > .container > .wrapper .left {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  height: 100%;
}
header#header > .container .right {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
header#header > .container .right .search {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  overflow: hidden;
}
header#header > .container .search button {
  height: 100%;
}
header#header > .container .search button > div {
  padding: 0 16px;
}
header#header > .container .search button > div svg {
  font-size: var(--menu-item-font-size, 16px);
  color: var(--menu-item-font-color, var(--link-font-color));
}
header#header > .container .widget.menu li.search button > div svg {
  font-size: inherit;
  color: inherit;
}
header#header > .container .search-input-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 32px 0;
  opacity: 0;
  pointer-events: none;
}
header#header > .container .search-input-container.open {
  opacity: 1;
  pointer-events: all;
  z-index: 999999999999;
}
header#header > .container .search-input-container > .wrapper {
  display: flex;
  display: -webkit-flex;
  margin: 0 auto;
  max-width: var(--page-width);
  padding-bottom: 32px;
}
header#header > .container .search-input-container > .wrapper .widget.search-input {
  width: 100%;
}
header#header .identity {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 100%;
  margin-right: 24px;
}
header#header .identity .logo,
header#header .identity .logo > a,
header#header .identity .title {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
header#header .identity img {
  height: calc(100% - 8px);
  margin-right: 12px;
  max-height: 98px;
  max-width: 240px;
}
header#header .identity h1 {
  font-family: var(--title-font-family, "Source Sans Pro", Arial, sans-serif);
  font-size: var(--title-font-size, 24px);
  color: var(--title-font-color, black);
  font-weight: var(--title-font-weight, 900);
  text-transform: var(--title-font-transform, uppercase);
}
header#header .identity h1 a {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  text-transform: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-style: inherit;
}
header#header .wrapper nav {
  height: 100%;
}
header#header .wrapper nav ul {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
header#header .left .widget.menu,
header#header .left .widget.menu .content,
header#header .right .widget.menu,
header#header .right .widget.menu .content {
  height: 100%;
}
header#header .left .menu-left,
header#header .right .menu-right {
  height: 100%;
}
header#header .wrapper nav ul li.item {
  display: block;
}
header#header .wrapper nav ul li.item.icon svg {
  font-size: 16px;
  margin-right: 6px;
}
header#header .wrapper nav ul li.item a,
header#header .wrapper nav ul li > button > div {
  display: flex;
  text-transform: uppercase;
  height: 100%;
  align-items: center;
  padding: 0 12px;
  /* Use H3 as fallback */
  font-family: var(--menu-item-font-family, var(--h3-font-family));
  color: var(--menu-item-font-color, var(--h3-font-color));
  font-size: var(--menu-item-font-size, var(--h3-font-size));
  text-transform: var(--menu-item-text-transform, var(--h3-text-transform));
  line-height: var(--menu-item-line-height, var(--h3-line-height));
  font-weight: var(--menu-item-font-weight, var(--h3-font-weight));
  font-style: var(--menu-item-font-style, var(--h3-font-style));
}
header#header .wrapper nav ul li.search-input > div {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 100%;
}
header#header .wrapper nav ul li.item:not(.selected) a:hover,
header#header .wrapper nav ul li:not(.selected) > button > div:hover {
  color: #ff0032;
  /* Use normal item, then H3 as fallback */
  font-family: var(--menu-item-hover-font-family, var(--menu-item-font-family, var(--h3-font-family)));
  color: var(--menu-item-hover-font-color, var(--menu-item-font-color, var(--h3-font-color)));
  font-size: var(--menu-item-hover-font-size, var(--menu-item-font-size, var(--h3-font-size)));
  text-transform: var(--menu-item-hover-text-transform, var(--menu-item-text-transform, var(--h3-text-transform)));
  line-height: var(--menu-item-hover-line-height, var(--menu-item-line-height, var(--h3-line-height)));
  font-weight: var(--menu-item-hover-font-weight, var(--menu-item-font-weight, var(--h3-font-weight)));
  font-style: var(--menu-item-hover-font-style, var(--menu-item-font-style, var(--h3-font-style)));
}
header#header .wrapper nav ul li.selected {
  /* box-shadow: 0px -3px 0px 0px rgb(255, 0, 50) inset; */
}
header#header .wrapper nav ul li.selected a {
  /* Use normal item, then H3 as fallback */
  font-family: var(--menu-item-selected-font-family, var(--menu-item-font-family, var(--h3-font-family)));
  color: var(--menu-item-selected-font-color, var(--menu-item-font-color, var(--h3-font-color)));
  font-size: var(--menu-item-selected-font-size, var(--menu-item-font-size, var(--h3-font-size)));
  text-transform: var(--menu-item-selected-text-transform, var(--menu-item-text-transform, var(--h3-text-transform)));
  line-height: var(--menu-item-selected-line-height, var(--menu-item-line-height, var(--h3-line-height)));
  font-weight: var(--menu-item-selected-font-weight, var(--menu-item-font-weight, var(--h3-font-weight)));
  font-style: var(--menu-item-selected-font-style, var(--menu-item-font-style, var(--h3-font-style)));
}
/*
  Header - Large
*/
header#header.large {
  position: relative;
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 266px;
}
header#header.large > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding-top: 32px;
}
header#footer.large .left {
  flex-grow: 0;
  -webkit-flex-grow: 0;
  justify-content: center;
  -webkit-justify-content: center;
  display: block;
  overflow: hidden;
}
header#header.large .right {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  height: 48px;
}
header#header.large .identity {
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}
header#header.large .wrapper .identity h1 {
  margin-top: 14px;
}
header#header.large .identity img {
  width: unset;
  height: unset;
  object-fit: unset;
  margin-right: 0;
  max-height: 100%;
  border-radius: 3px;
}
/*
  Header - Hero
*/
header#header.style-hero {
  height: 106px;
  position: absolute;
}
header#header.style-hero > .placeholder {
  height: 0;
}
header#header.style-hero > .container {
  background: none;
  box-shadow: none;
  transition: height 0.4s, background 0.4s;
}
header#header.style-hero > .container > .wrapper {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
body.mfe-theme-header-small header#header.style-hero > .container > .wrapper .identity img {
  max-height: calc(100% - 8px);
}
body.mfe-theme-header-small header#header.style-hero > .container {
  height: 48px;
  background-color: var(--background-color);
}
/*
  Header - Tall
*/
header#header.style-tall {
  height: 106px;
}
header#header.style-tall > .placeholder {
  height: 106px;
}
footer#footer {
  padding: 36px 0;
  background-color: #c0bdbf;
  color: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
footer#footer > .wrapper {
  display: flex;
  display: -webkit-flex;
  max-width: var(--page-width);
  margin: 0 auto;
}
footer#footer .powered-by .mfe-icon {
  margin-right: 8px;
}
footer#footer .powered-by a {
  font-size: inherit;
}
footer#footer.style-social-logos > .wrapper .menu-social > h2,
footer#footer.style-social-logos > .wrapper .logos > h2 {
  margin-bottom: 16px;
}
footer#footer.style-social-logos > .wrapper .menu-social {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
footer#footer.style-social-logos > .wrapper .menu-social ul {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon a {
  width: 48px;
  height: 48px;
  display: flex;
  display: -webkit-flex;
  font-size: 26px;
  background: rgba(93, 93, 93, 0.09);
  border-radius: 48px;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  color: #7a7a7a;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon {
  margin-right: 8px;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon:last-child {
  margin-right: 0;
}
footer#footer.style-social-logos > .wrapper .logos {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
footer#footer.style-social-logos > .wrapper .logos .links {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  align-items: center;
  -webkit-align-items: center;
}
footer#footer.style-social-logos > .wrapper .logos figure {
  margin-left: 32px;
}
footer#footer.style-social-logos > .wrapper .logos figure img {
  max-width: 120px;
  max-height: 120px;
}
footer#footer.style-social-logos > .wrapper:nth-child(2) {
  margin-top: 16px;
  font-size: 14px;
}
footer#footer.style-social-logos > .wrapper:nth-child(2) .powered-by .mfe-icon {
  margin-right: 0;
  margin-left: 4px;
}
footer#footer.style-default > .wrapper > div {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  margin-right: 32px;
}
footer#footer.style-default > .wrapper > div:last-child {
  align-items: flex-end;
  -webkit-align-items: flex-end;
  margin-right: 0;
}
footer#footer.style-default > .wrapper > div > div {
  margin-bottom: 32px;
}
footer#footer.style-default > .wrapper > div > div > h1,
footer#footer.style-default > .wrapper > div > div > h2 {
  margin-bottom: 10px;
}
footer#footer.style-default > .wrapper > div > div:last-child {
  margin-bottom: 0;
}
footer#footer.style-simple > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
}
footer#footer.style-simple .widget.menu ul.menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
footer#footer.style-simple .widget.menu ul.menu li {
  padding: 12px;
}
footer#footer.style-simple .menu-top {
  margin-bottom: 16px;
}
footer#footer.bigfoot {
  padding: 0;
  color: white;
}
footer#footer.bigfoot > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  max-width: unset;
}
footer#footer.bigfoot > .wrapper a:hover {
  opacity: 0.6;
}
footer#footer.bigfoot > .wrapper .newsletter {
  background-color: #fafafa;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper {
  display: flex;
  display: -webkit-flex;
  width: var(--page-width);
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  width: 100%;
  max-width: 440px;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left h2 {
  margin-bottom: 8px;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left p {
  color: #222;
  font-size: 16px;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right form .email input {
  background: white;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right form input[type="submit"] {
  background-color: #bbbbbb;
  border-color: #bbbbbb;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right form input[type="submit"]:hover {
  background-color: #777777;
  border-color: #777777;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right .intro {
  margin-bottom: 0;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right .intro img {
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translate(-50%);
  margin-left: 0;
  max-width: 120px;
  max-height: 120px;
}
footer#footer.bigfoot > .wrapper .top {
  background-color: #444;
}
footer#footer.bigfoot > .wrapper .top > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  padding: 48px 0;
}
footer#footer.bigfoot > .wrapper .top .logo {
  display: flex;
  display: -webkit-flex;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
footer#footer.bigfoot > .wrapper .top .logo img {
  max-height: 32px;
}
footer#footer.bigfoot > .wrapper .top .social {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
footer#footer.bigfoot .top .social .widget.menu ul {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
footer#footer.bigfoot .top .social .widget.menu .item a {
  padding: 0 16px;
  color: inherit;
}
footer#footer.bigfoot > .wrapper .bottom {
  background-color: #222;
}
footer#footer.bigfoot > .wrapper .bottom h2 {
  color: inherit;
  margin-bottom: 16px;
  font-size: 18px;
}
footer#footer.bigfoot > .wrapper .bottom > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  padding-top: 64px;
}
footer#footer.bigfoot > .wrapper .bottom > .powered-by {
  max-width: var(--page-width);
  margin: 0 auto;
  padding-bottom: 64px;
  text-align: right;
  font-size: 14px;
  margin-top: 32px;
}
footer#footer.bigfoot > .wrapper .bottom > .powered-by .mfe-icon {
  margin-right: 8px;
}
footer#footer.bigfoot > .wrapper .bottom > .powered-by a {
  font-size: inherit;
}
footer#footer.bigfoot > .wrapper .bottom .column {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  margin-right: 32px;
}
footer#footer.bigfoot > .wrapper .bottom .column:last-child {
  margin-right: 0;
}
footer#footer.bigfoot .bottom .widget.menu .item a {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  color: inherit;
}
footer#footer.bigfoot .top .social .widget.menu .item.icon a svg {
  font-size: 32px;
}
section#content.with-background {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0)), var(--background-image);
  background-attachment: fixed, var(--background-attachment, fixed);
  background-position: 0 0, var(--background-position, 50% 50%);
  background-size: 100% 200px, var(--background-size, cover);
  background-repeat: no-repeat;
  background-color: var(--background-color);
}
section.thin > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
}
section.thin.bg-1 {
  background-color: #032c3a;
  color: white;
}
section.thin.bg-2 {
  background-color: #a7a7a7;
  color: white;
}
section.thin.bg-3 {
  background-color: #1d1d1d;
  color: white;
}
.bg-4 {
  background-color: #a9caf5;
}
b.mfe-menu-icon {
  display: block;
  width: 21px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
b.mfe-menu-icon > span,
b.mfe-menu-icon::after,
b.mfe-menu-icon::before {
  border-radius: 0;
  content: "";
  display: block;
  height: 2px;
  margin: 5px 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  width: 100%;
  background-color: #ffffff;
}
b.mfe-menu-icon > span {
  text-indent: -9999px;
}
header#header.menu-open .right b.mfe-menu-icon::before {
  -webkit-transform: rotate(45deg) translate3d(5px, 5px, 0);
  transform: rotate(45deg) translate3d(5px, 5px, 0);
}
header#header.menu-open .right b.mfe-menu-icon::after {
  -webkit-transform: rotate(-45deg) translate3d(5px, -5px, 0);
  transform: rotate(-45deg) translate3d(5px, -5px, 0);
}
header#header.menu-open .right b.mfe-menu-icon > span {
  opacity: 0;
}
.ui-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-regular-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-italic-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-italic-webfont.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-medium-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-medium-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-mediumitalic-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-mediumitalic-webfont.woff') format('woff');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-bolditalic-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-bolditalic-webfont.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-bold-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-light-webfont.eot');
  src: url('/static/webfonts/europa/europa-light-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-light-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-light-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-light-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-light-webfont.svg#europalight') format('svg');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-lightitalic-webfont.eot');
  src: url('/static/webfonts/europa/europa-lightitalic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-lightitalic-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-lightitalic-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-lightitalic-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-lightitalic-webfont.svg#europalightitalic') format('svg');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-regular-webfont.eot');
  src: url('/static/webfonts/europa/europa-regular-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-regular-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-regular-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-regular-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-regular-webfont.svg#europaregular') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-regularitalic-webfont.eot');
  src: url('/static/webfonts/europa/europa-regularitalic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-regularitalic-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-regularitalic-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-regularitalic-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-regularitalic-webfont.svg#europaitalic') format('svg');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-bold-webfont.eot');
  src: url('/static/webfonts/europa/europa-bold-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-bold-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-bold-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-bold-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-bold-webfont.svg#europabold') format('svg');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-bolditalic-webfont.eot');
  src: url('/static/webfonts/europa/europa-bolditalic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-bolditalic-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-bolditalic-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-bolditalic-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-bolditalic-webfont.svg#europabolditalic') format('svg');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Bold.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Bold.woff') format('woff'), url('/static/webfonts/futura/Futura-Bold.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Bold.svg#webfont') format('svg');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Book.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Book.woff') format('woff'), url('/static/webfonts/futura/Futura-Book.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Book.svg#webfont') format('svg');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Light-Italic.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Light-Italic.woff') format('woff'), url('/static/webfonts/futura/Futura-Light-Italic.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Light-Italic.svg#webfont') format('svg');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Light.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Light.woff') format('woff'), url('/static/webfonts/futura/Futura-Light.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Light.svg#webfont') format('svg');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Medium.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Medium.woff') format('woff'), url('/static/webfonts/futura/Futura-Medium.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Medium.svg#webfont') format('svg');
  font-weight: 500;
  font-style: normal;
}
header#header.standard-header-v2 {
  height: var(--header-height, 48px);
}
header#header.standard-header-v2 .identity .logo.hide {
  display: none;
}
header#header.standard-header-v2 .identity .title a,
header#header.standard-header-v2 .identity .sub-title a {
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}
header#header.standard-header-v2 .identity {
  margin-right: 8px;
}
header#header.standard-header-v2 .identity .title {
  font-family: var(--title-font-family);
  color: var(--title-font-color);
  font-size: var(--title-font-size);
  text-transform: var(--title-text-transform);
  line-height: var(--title-line-height);
  font-weight: var(--title-font-weight);
  font-style: var(--title-font-style);
}
header#header.standard-header-v2 .identity .sub-title {
  font-family: var(--sub-title-font-family);
  color: var(--sub-title-font-color);
  font-size: var(--sub-title-font-size);
  text-transform: var(--sub-title-text-transform);
  line-height: var(--sub-title-line-height);
  font-weight: var(--sub-title-font-weight);
  font-style: var(--sub-title-font-style);
}
body > .default-body-v2 {
  background-color: var(--body-background-color);
  background-image: var(--body-background-image);
}
header#header[data-setting-width="full-width"] > .container > .wrapper {
  max-width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
:root {
  --body-font-family: 'Raleway';
  --body-font-size: 18px;
  --body-text-transform: none;
  --body-line-height: 1.65;
  --body-font-weight: 400;
  --link-font-family: 'Raleway';
  --link-font-color: #ff005b;
  --link-font-size: 18px;
  --link-text-transform: none;
  --link-line-height: 1.65;
  --link-font-weight: 400;
  --link-hover-font-family: 'Raleway';
  --link-hover-font-color: black;
  --link-hover-font-size: 18px;
  --link-hover-text-transform: none;
  --link-hover-line-height: 1.65;
  --link-hover-font-weight: 400;
  --h1-font-family: 'Raleway';
  --h1-font-color: #000000;
  --h1-font-size: 40px;
  --h1-text-transform: none;
  --h1-line-height: 1.50;
  --h1-font-weight: 600;
  --h2-font-family: 'Raleway';
  --h2-font-color: black;
  --h2-font-size: 18px;
  --h2-text-transform: none;
  --h2-line-height: 1.20;
  --h2-font-weight: 700;
  --h3-font-family: 'Raleway';
  --wc-title-font-family: 'Raleway';
  --wc-title-font-color: #000000;
  --wc-title-font-size: 20px;
  --wc-title-text-transform: none;
  --wc-title-line-height: 1.20;
  --wc-title-font-weight: 700;
  --wc-title-fullimage-font-family: 'Raleway';
  --wc-title-fullimage-font-color: #000000;
  --wc-title-fullimage-font-size: 24px;
  --wc-title-fullimage-text-transform: none;
  --wc-title-fullimage-line-height: 1.20;
  --wc-title-fullimage-font-weight: 700;
  --wc-summary-font-family: 'Raleway';
  --wc-summary-text-transform: none;
  --wc-summary-font-weight: 400;
  --wc-metadata-font-family: 'Raleway';
  --wc-metadata-text-transform: none;
  --wc-metadata-font-weight: 400;
  --article-summary-font-family: 'Raleway';
  --article-summary-font-size: 18px;
  --article-summary-text-transform: none;
  --article-summary-line-height: 1.65;
  --article-summary-font-weight: 600;
  --article-summary-font-style: italic;
  --article-metadata-font-family: 'Raleway';
  --article-metadata-font-color: #000000;
  --article-metadata-font-size: 18px;
  --article-metadata-text-transform: none;
  --article-metadata-line-height: 1.65;
  --article-metadata-font-weight: 500;
}
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);
}
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: 28px;
}
.widget.cms-fragments .fragment.cms-text h1 {
  margin-top: 12px;
  margin-bottom: 10px;
  font-size: 22px;
}
.widget.cms-fragments .fragment.cms-text h2 {
  margin-top: 10px;
  margin-bottom: 20px;
}
.widget.cms-fragments .fragment.cms-text h3 {
  margin-top: 6px;
  margin-bottom: 16px;
}
.widget.cms-fragments .fragment.cms-quote {
  margin-top: 12px;
  margin-bottom: 24px;
  font-size: 26px;
  color: #777;
  line-height: 1.6;
  padding-left: 60px;
  padding-right: 60px;
  font-style: italic;
}
.widget.cms-fragments .fragment.cms-image {
  margin-top: 12px;
  margin-bottom: 24px;
}
.widget.cms-fragments .fragment.cms-image img {
  max-width: 100%;
}
html.desktop header#header .right .mobile-menu {
  display: none;
}
html.desktop header#header .right .mobile-search {
  display: none;
}
html.mobile header#header .right .widget.menu {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  height: auto;
  background: white;
  display: none;
}
html.mobile header#header.style-tall {
  height: 64px;
}
html.mobile header#header > .container > .wrapper .right .search-input-container {
  padding-top: 0;
  padding-bottom: 0;
}
html.mobile header#header > .container > .wrapper .right .search-input-container .widget.search-input .input .icon {
  display: none;
}
html.mobile header#header > .container > .wrapper .left {
  padding-left: 10px;
}
html.mobile header#header > .container > .wrapper .right {
  padding-right: 10px;
}
html.mobile header#header.style-tall > .container > .wrapper {
  position: relative;
}
html.mobile header#header > .container > .wrapper .right .search-input-container > .wrapper {
  padding-left: 16px;
  padding-right: 16px;
}
html.mobile header#header .right .mobile-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: white;
  height: auto;
  padding: 0 16px 16px 16px;
  display: none;
}
html.mobile header#header .right .mobile-menu {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
html.mobile header#header .right .mobile-menu button > div {
  padding: 12px;
  font-size: 24px;
}
html.mobile header#header.search-open .right .mobile-search {
  display: flex;
  display: -webkit-flex;
}
html.mobile header#header.menu-open .right .widget.menu {
  display: block;
}
html.mobile header#header .right .widget.menu ul {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header .right .widget.menu ul li {
  border-bottom: 1px solid #eee;
}
html.mobile header#header .right .widget.menu ul li:last-child {
  border-bottom: none;
}
html.mobile header#header .right .widget.menu ul li a {
  padding: 12px;
}
html.mobile header#header > .container > .wrapper .right .search button > div {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
  padding: 12px;
  font-size: 24px;
}
html.mobile header#header > .container > .wrapper .right .search button > div svg {
  font-size: inherit;
  color: inherit;
}
html.mobile footer#footer.style-social-logos > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  margin-left: 16px;
  margin-right: 16px;
  text-align: center;
}
html.mobile footer#footer.style-social-logos > .wrapper .menu-social {
  margin-bottom: 32px;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos figure {
  margin-bottom: 16px;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos figure img {
  max-height: unset;
  width: 100%;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos .links figure:first-child {
  margin-left: 0;
}
html.mobile footer#footer.bigfoot {
  padding: 0;
  color: white;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom .column {
  min-width: 34%;
  margin-bottom: 32px;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom .column:nth-child(2) {
  margin-right: 0;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom .column:nth-child(3),
html.mobile footer#footer.bigfoot > .wrapper .bottom .column:nth-child(4) {
  margin-bottom: 0;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom > .wrapper {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding: 32px 16px 0 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom > .powered-by {
  text-align: left;
  padding: 0 16px 16px 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .top > .wrapper {
  padding: 32px 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter {
  padding-left: 16px;
  padding-right: 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  width: 100%;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left,
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right {
  width: 100%;
  max-width: 100%;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right {
  margin-left: 0;
  margin-bottom: 64px;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left p {
  margin-bottom: 16px;
}
footer .logo-svg-ttl {
  height: 1.4em;
  width: auto;
  vertical-align: middle;
  margin-bottom: 2px;
}
footer#footer .powered-by a {
  font-size: inherit;
  color: inherit;
}
footer#footer.footer-coral {
  padding: 0;
}
footer#footer.footer-coral > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  max-width: 100%;
}
footer.footer-coral .top > .wrapper,
footer.footer-coral .bottom > .wrapper,
footer.footer-coral .powered-by > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
}
footer.footer-coral .top,
footer.footer-coral .bottom,
footer.footer-coral .powered-by {
  padding: 32px 0;
}
footer.footer-coral .top > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
footer.footer-coral .top > .wrapper .left,
footer.footer-coral .top > .wrapper .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
footer.footer-coral .top > .wrapper .left {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
footer.footer-coral .top > .wrapper .left .newsletter-description {
  margin-bottom: 8px;
}
footer.footer-coral .top > .wrapper .right {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
footer.footer-coral #mc-embedded-subscribe-form {
  display: flex;
  display: -webkit-flex;
}
footer.footer-coral .widget.menu ul li.icon a {
  width: 52px;
  height: 52px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-left: 16px;
  border-radius: 99px;
  font-size: 24px;
}
footer#footer.large {
  padding: 0;
  color: #ffffff;
  background-color: #161616;
  margin-top: 84px;
}
footer#footer.large > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  max-width: 100%;
}
footer#footer.large .menus-row {
  display: flex;
  display: -webkit-flex;
  max-width: var(--page-width);
  width: 100%;
}
footer#footer.large .menus-row .menu-social {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: var(--page-width);
}
footer#footer.large .menus-row .menu-social ul.menu {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
footer#footer.large .menu-social {
  max-width: var(--page-width);
}
footer#footer.large .menu-social ul.menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  padding-top: 72px;
  padding-bottom: 32px;
}
footer#footer.large .menu-social ul.menu li a {
  padding-left: 16px;
  padding-right: 16px;
}
footer#footer.large .menu-top {
  max-width: var(--page-width);
  width: 100%;
}
footer#footer.large .menu-top ul.menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  padding-top: 24px;
  padding-bottom: 24px;
}
footer#footer.large .menu-top ul.menu li a {
  padding-left: 16px;
  padding-right: 16px;
}
footer#footer.large .menus-row > .menu-top {
  width: auto;
  max-width: unset;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
footer#footer.large .contact {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  max-width: var(--page-width);
  width: 100%;
  color: #808080;
  font-size: 14px;
  line-height: 1.575;
  font-weight: 500;
  padding: 32px 0;
}
footer#footer.large .contact .left,
footer#footer.large .contact .right {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
footer#footer.large .contact .left {
  margin-right: 84px;
}
footer#footer.large .contact .right {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
footer#footer.large .bottom {
  width: 100%;
  padding: 16px 0;
  background: black;
  font-size: 12px;
  font-weight: 100;
  color: #808080;
}
footer#footer.large .bottom > .wrapper {
  max-width: var(--page-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li:not(.icon) {
  margin-right: 14px;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon {
  margin-right: 10px;
}
html.mobile footer.footer-coral .top > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile footer.footer-coral .top > .wrapper .left {
  align-items: center;
  -webkit-align-items: center;
  padding: 0 16px;
  margin-bottom: 32px;
  flex-grow: unset;
  -webkit-flex-grow: unset;
  flex-shrink: unset;
  -webkit-flex-shrink: unset;
  flex-basis: unset;
  -webkit-flex-basis: unset;
}
html.mobile footer.footer-coral .top > .wrapper .right {
  align-items: center;
  -webkit-align-items: center;
  padding: 0 16px;
  flex-grow: unset;
  -webkit-flex-grow: unset;
  flex-shrink: unset;
  -webkit-flex-shrink: unset;
  flex-basis: unset;
  -webkit-flex-basis: unset;
}
html.mobile footer.footer-coral .powered-by {
  padding: 32px 16px;
  text-align: center;
}
footer.footer-coral .widget.newsletter-signup {
  width: 100%;
}
footer.footer-coral .widget.newsletter-signup .content.mailchimp-email .email {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
footer.footer-coral .widget.newsletter-signup .content.mailchimp-email .email input[type="email"] {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  width: 100%;
}
@media (max-width: 960px) {
  footer#footer.large .contact,
  footer#footer.large .menus-row,
  footer#footer.large .bottom > .wrapper {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  footer#footer.large .bottom > .wrapper {
    align-items: center;
    -webkit-align-items: center;
  }
  footer#footer.large .menus-row .menu-social ul.menu,
  footer#footer.large .menus-row .menu-top ul.menu {
    justify-content: center;
    -webkit-justify-content: center;
  }
  footer#footer.large .menus-row > .menu-top {
    justify-content: center;
    -webkit-justify-content: center;
  }
  footer#footer.large .contact {
    padding: 0 0 32px 0;
  }
  footer#footer.large .contact .left {
    margin-right: 0;
    padding: 0 16px;
    margin-bottom: 24px;
  }
  footer#footer.large .contact .right {
    justify-content: center;
    -webkit-justify-content: center;
    padding: 0 16px;
  }
  footer#footer.large .contact .left,
  footer#footer.large .contact .right {
    flex-basis: unset;
    -webkit-flex-basis: unset;
    flex-grow: unset;
    -webkit-flex-grow: unset;
    flex-shrink: unset;
    -webkit-flex-shrink: unset;
  }
  footer#footer.bigfoot > .wrapper .top .logo {
    display: flex;
    display: -webkit-flex;
    flex-grow: unset;
    -webkit-flex-grow: unset;
    flex-basis: unset;
    -webkit-flex-basis: unset;
    justify-content: center;
    -webkit-justify-content: center;
    margin-bottom: 32px;
  }
  footer#footer.bigfoot .top .social .widget.menu ul {
    justify-content: center;
    -webkit-justify-content: center;
  }
  footer#footer.bigfoot > .wrapper .top > .wrapper {
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
  }
}
header#header.kinder {
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 142px !important;
}
header#header.kinder:not(.with-bottom-bar) {
  height: 104px !important;
}
header#header.kinder .mobile h2 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
header#header.kinder > .container .mobile .widget.menu .item a {
  padding: 8px 0;
  font-size: 14px;
}
header#header.kinder > .container .mobile .widget.menu .item:not(.selected):not(:hover) a {
  color: #9b9b9b;
}
html.mobile header#header.kinder .right .widget.menu ul li {
  border-bottom: none;
}
html.mobile header#header.kinder .mobile .left .widget.menu ul,
html.mobile header#header.kinder .mobile .right .widget.menu ul {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header.kinder {
  height: 124px !important;
}
html.mobile header#header.kinder:not(.with-bottom-bar) {
  height: 56px !important;
}
html.mobile header#header.kinder .container .wrapper > .bottom .search {
  display: none;
}
html.mobile header#header.kinder.with-bottom-bar b.mfe-menu-icon > span,
html.mobile header#header.kinder.with-bottom-bar b.mfe-menu-icon::after,
html.mobile header#header.kinder.with-bottom-bar b.mfe-menu-icon::before {
  background-color: white;
}
html.mobile header#header.kinder.with-bottom-bar > .container .right .search button > div svg {
  color: white;
}
header#header.kinder > .container > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  max-width: unset;
}
html.mobile header#header.kinder > .container > .wrapper {
  height: auto;
}
header#header.kinder .top,
header#header.kinder .bottom {
  display: flex;
  display: -webkit-flex;
  width: 100%;
}
header#header.kinder .top > .wrapper,
header#header.kinder .bottom > .wrapper {
  display: flex;
  display: -webkit-flex;
  margin: 0 auto;
  max-width: var(--page-width);
  width: 100%;
}
header#header.kinder .bottom > .wrapper {
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
header#header.kinder > .container > .wrapper .identity img {
  filter: invert(1);
}
header#header.kinder:not(.with-bottom-bar) > .container > .wrapper .identity img {
  filter: none;
}
html.mobile header#header.kinder > .container > .wrapper > .bottom .widget.menu .item a {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
html.mobile header#header.kinder > .container > .wrapper > .bottom > .wrapper {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
header#header.kinder .top {
  height: 56px;
}
header#header.kinder .bottom {
  height: 86px;
}
html.mobile header#header.kinder .bottom {
  height: 68px;
}
html.mobile header#header.kinder .mobile .bottom {
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
html.mobile header#header.kinder > .container > .wrapper > .bottom {
  overflow-y: scroll;
}
html.mobile header#header.kinder > .container .right .search {
  display: flex;
  display: -webkit-flex;
}
header#header.kinder .top {
  background: #222222;
}
header#header.kinder:not(.with-bottom-bar) .top {
  background: white;
}
html.desktop header#header.kinder:not(.with-bottom-bar) .top {
  height: 104px;
}
html.cookie-hide-kinder-header-explanation header#header .quick-explanation {
  display: none;
}
html.mobile header#header.kinder .container > .wrapper > .mobile .right .widget.menu {
  position: static;
}
html.mobile header#header.kinder .container > .wrapper > .mobile .left,
html.mobile header#header.kinder .container > .wrapper > .mobile .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  padding-top: 48px;
  padding-left: 24px;
}
header#header .quick-explanation {
  height: 48px;
  background: #fafafa;
  color: #242424;
  font-size: 12px;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}
header#header .quick-explanation img {
  height: 14px;
  margin-right: 8px;
}
html.mobile header#header .quick-explanation img {
  position: absolute;
  left: 16px;
  bottom: 18px;
}
html.mobile header#header .quick-explanation {
  height: 94px;
}
header#header .quick-explanation .wrapper {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  max-width: var(--page-width);
  margin: 0 auto;
  position: relative;
  height: 100%;
}
html.mobile header#header .quick-explanation .wrapper {
  text-align: center;
  padding: 12px 16px 0 16px;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
header#header .quick-explanation .hide {
  position: absolute;
  right: 0;
  color: #bbb;
  font-weight: 600;
  padding-top: 16px;
  padding-left: 16px;
  padding-bottom: 16px;
}
html.mobile header#header .quick-explanation .hide {
  padding-top: 12px;
  padding-left: 16px;
  padding-bottom: 16px;
  padding-right: 24px;
  bottom: 0;
}
header#header .quick-explanation a {
  display: none;
}
html.mobile header#header .quick-explanation a {
  position: absolute;
  right: 0;
  color: #ff005e;
  bottom: 14px;
  left: 0;
  font-size: 12px;
  z-index: 0;
  display: block;
}
header#header .quick-explanation .hide svg {
  margin-left: 8px;
}
html.mobile:not(.cookie-hide-kinder-header-explanation) header#header.kinder {
  height: 218px !important;
}
header#header.kinder .wrapper .top nav ul li.selected a span {
  border-bottom: 1px solid #ff005e;
  padding-bottom: 2px;
  margin-top: 2px;
}
header#header.kinder .container .wrapper > .mobile {
  display: none;
  flex-direction: column;
  -webkit-flex-direction: column;
  position: fixed;
  left: 0;
  top: 56px;
  right: 0;
  height: auto;
  bottom: 0;
  background: #ffffff;
}
header#header.kinder.menu-open .container .wrapper > .mobile {
  display: flex;
  display: -webkit-flex;
  z-index: 9999999999;
}
html.desktop header#header.kinder.with-bottom-bar > .container .top .search button {
  display: none;
}
html.mobile header#header.kinder.menu-open .container > .wrapper > .top .right .widget.menu {
  display: none;
}
header#header > .container .search-input-container {
  border-top: 1px solid #eaeaea;
}
header#header.kinder .container .wrapper > .mobile {
  border-top: 1px solid #eaeaea;
}
html.mobile:not(.cookie-hide-kinder-header-explanation) header#header.kinder:not(.with-bottom-bar) {
  height: 56px !important;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu,
html.mobile header#header.kinder .mobile .bottom .widget.menu .content,
html.mobile header#header.kinder .mobile .bottom .widget.menu nav,
html.mobile header#header.kinder .mobile .bottom .widget.menu ul {
  width: 100%;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu ul li.icon {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu ul li.item.icon svg {
  font-size: 24px;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu ul li.item.icon a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
header#header.network-header > .container {
  transition: transform 0.25s;
}
body.mfe-theme-header-small header#header.network-header > .container {
  transform: translateY(-48px);
}
header#header.network-header > .container > .network > .wrapper,
header#header.network-header > .container > .site > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  max-width: var(--page-width);
  height: 100%;
  margin: 0 auto;
}
header#header.network-header > .container {
  flex-direction: column;
  -webkit-flex-direction: column;
}
header#header.network-header > .container > .network > .wrapper .left,
header#header.network-header > .container > .site > .wrapper .left {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  height: 100%;
}
header#header.network-header > .container > .network > .wrapper .right,
header#header.network-header > .container > .site > .wrapper .right {
  display: flex;
  display: -webkit-flex;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  height: 100%;
}
header#header.network-header > .container > .network {
  height: 48px;
  background-color: var(--background-color, transparent);
}
header#header.network-header .site .mobile-network {
  background-color: var(--background-color, transparent);
}
header#header.network-header > .container > .network .left {
  font-family: var(--network-title-font-family);
  color: var(--network-title-font-color);
  font-size: var(--network-title-font-size);
  line-height: var(--network-title-line-height);
  text-transform: var(--network-title-text-transform);
  font-weight: var(--network-title-font-weight);
}
header#header.network-header > .container > .site {
  height: 104px;
}
header#header.network-header .mobile-network {
  display: none;
}
header#header.network-header .site .right .widget.menu {
  position: relative;
  top: unset;
  background: none;
  width: 100%;
}
header#header.network-header .site .right .menu-container {
  position: relative;
  height: 100%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header.network-header .network {
  display: none;
}
html.mobile body.mfe-theme-header-small header#header.network-header > .container {
  transform: translateY(0);
}
html.mobile header#header.network-header .right .search-input-container > .wrapper {
  padding-left: 16px;
  padding-right: 16px;
}
html.mobile header#header.network-header .right .search-input-container {
  padding-top: 0;
  padding-bottom: 0;
}
html.mobile header#header.network-header .right .search-input-container .widget.search-input .input .icon {
  display: none;
}
html.mobile header#header.network-header {
  height: 64px;
}
html.mobile header#header.network-header > .container > .site {
  height: 100%;
}
html.mobile header#header.network-header .site > .wrapper > .left {
  padding-left: 10px;
}
html.mobile header#header.network-header .site > .wrapper > .right {
  padding-right: 10px;
}
html.mobile header#header.network-header .mobile-network {
  display: flex;
  display: -webkit-flex;
}
html.mobile header#header.network-header .mobile-network > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul {
  flex-direction: row;
  -webkit-flex-direction: row;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li {
  border-bottom: none;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li {
  border-right: 1px solid #777;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li:last-child {
  border-right: none;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item a,
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item.selected a {
  text-decoration: none;
  text-align: center;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item.selected a {
  box-shadow: 0 -3px 0px 0px #ff005e inset;
}
html.mobile header#header.network-header .site .right .menu-container {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  height: auto;
  background: white;
  display: none;
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header.network-header.menu-open .site .right .menu-container {
  display: flex;
  display: -webkit-flex;
}
#page.body-header-left {
  padding-left: 300px;
}
#page.body-header-left > nav {
  width: 300px;
  position: fixed;
  left: 0;
  bottom: 0;
  top: 0;
}
#page.body-header-left .mfe-edit-container[data-setting-type="block"][data-setting-sub-type="header"] {
  width: 300px;
  position: fixed;
  left: 0;
  bottom: 0;
  top: 0;
}


/* Site custom CSS */

html {
  --page-width: 1024px;
}
header#header .identity img {
  height: 100%;
  max-height: 31px;
  max-width: unset;
}
header#header .wrapper nav ul li.item {
  margin-left: 4px;
}
header#header .wrapper nav ul li.item a {
  padding: 14px 20px;
  transition: background 0.25s, color 0.1s;
  border-radius: 4px;
  overflow: hidden;
}
header#header .wrapper nav ul li.item a:hover {
  background: rgba(255, 255, 255, 0.15);
}
header#header .wrapper nav ul li.item.selected a {
  background: rgba(255, 255, 255, 0.15);
}
header#header .wrapper nav ul li.item.style-cta a {
  background: white;
  color: #f40c42;
  transition: background 0.25s;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2px;
  background: linear-gradient(to left, #e100a7 0%, #f6b600 50%, #e100a7 100%);
  background-position: 100% 0;
  background-size: 200% 100%;
}
header#header .wrapper nav ul li.item.style-cta a:hover {
  background-position: 0 0;
}
header#header .wrapper nav ul li.item.style-cta a > span {
  background: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 12px 32px;
  border-radius: 3px;
  align-items: center;
  color: #e5003d;
  background: linear-gradient(to right, #f6b600 0%, #e100a7 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  z-index: 99;
}
header#header.style-tall {
  height: 92px;
}
header#header .wrapper nav {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 100%;
}
header#header .wrapper nav ul {
  height: auto;
  overflow: hidden;
}
header#header > .container {
  box-shadow: 0px -6px 18px 8px rgba(0, 0, 0, 0.14);
  background: linear-gradient(45deg, #f6b600, #e100a7);
  background: white;
}
header#header .wrapper nav ul li.item.icon svg {
  margin-right: 0;
}
header#header .wrapper nav ul li.item.style-cta a::after {
  content: ' ';
  background: #ffffff;
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 3px;
}
header#header .wrapper nav ul li.selected span {
  position: relative;
}
header#header .wrapper nav ul li.selected span::after {
  content: ' ';
  display: block;
  position: absolute;
  top: calc(100% + 2px);
  height: 3px;
  background: linear-gradient(to right, #f6b600 0%, #e100a7 100%);
  left: -4px;
  right: -4px;
  border-radius: 100px;
}
.widget {
  --wc-category-block-530-bg-color: #f5b401;
  --wc-category-block-530-fg-color: white;
  --wc-category-text-530-fg-color: #f5b40;
  --wc-category-block-528-bg-color: #eb5658;
  --wc-category-block-528-fg-color: white;
  --wc-category-text-528-fg-color: #eb5658;
  --wc-category-block-529-bg-color: #e100a7;
  --wc-category-block-529-fg-color: white;
  --wc-category-text-529-fg-color: #e100a7;
}
.widget.content-grid.style-default .content ul li.type-blogpost.style-default {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content .title {
  height: auto;
  margin-top: 16px;
  text-align: left;
}
.widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content .date {
  margin-bottom: 0;
  order: 2;
  text-align: left;
}
.widget.content-grid .content.base-default ul li.type-menu.template-features .media .icon {
  background: linear-gradient(to right, #f6b600, #e100a7);
  border-radius: 99999px;
  color: #ffffff;
  font-size: 22px;
}
.widget.content-grid .content.base-default ul li.type-menu.template-features figure {
  height: 100px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.widget.content-grid .content.base-default ul li.type-menu.template-features .info p {
  font-size: 16px;
  font-family: Raleway;
  color: #8a8a8a;
  line-height: 1.6;
  font-weight: 500;
}
.layout-container[data-layout-name="special-grid"] .widget.content-grid.style-default .content ul li.type-blogpost.style-default:nth-child(3n+2) {
  margin-top: -64px;
  height: calc(100% - 64px);
}
.layout-container[data-layout-name="special-grid"] .widget.content-grid.style-default {
  padding-top: 64px;
}
html.mobile .layout-container[data-layout-name="special-grid"] .widget.content-grid.style-default {
  padding-top: 0;
}
.layout-container[data-layout-name="features"] .layout-item-container .widget.content-grid ul {
  --gutter-x: 48px;
  --gutter-y: 32px;
}
.layout-container[data-layout-name="info-block-middle"] .widget.info-block.style-default .content {
  align-items: center;
  -webkit-align-items: center;
}
.widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content {
  padding: 0 24px 24px 24px;
}
.widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content .group {
  display: inline-block;
  margin-left: -24px;
  margin-top: 0;
  margin-right: auto;
  transform: translateY(-100%);
  text-transform: none;
  font-size: 14px;
  padding: 14px 24px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.6);
  clip-path: polygon(0px -32px, calc(100% + 32px) -32px, calc(100% + 32px) 100%, 0px 100%);
  -webkit-clip-path: polygon(0px -32px, calc(100% + 32px) -32px, calc(100% + 32px) 100%, 0px 100%);
  position: absolute;
}
.widget.form .panel .field .label {
  color: #717171;
}
.content-area > .wrapper {
  padding: 96px 0;
}
.layout-container.bg-dark .layout-item-container > h1 {
  color: white;
}
footer#footer.footer-coral {
  color: white;
}
footer#footer.footer-coral .top,
footer.footer-coral .bottom {
  padding: 64px 0;
}
footer.footer-coral .top > .wrapper .left .newsletter-description {
  margin-bottom: 16px;
  color: white;
  font-weight: 500;
  font-size: 22px;
}
footer.footer-coral .top > .wrapper .right .description {
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 22px;
}
footer.footer-coral .powered-by {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.47);
}
footer.footer-coral .widget.menu ul li.icon a {
  color: white;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}
.ui-button.special:not(button),
button.ui-button.special > div {
  background: linear-gradient(45deg, #f60071, #e10038);
  color: white;
  border: none;
  font-weight: bold;
  font-size: 15px;
  padding: 10px 24px;
}
footer.footer-coral .widget.menu ul li.icon a span {
  display: inline-flex;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
footer.footer-coral .widget.menu ul li.icon a:hover {
  background: rgba(255, 255, 255, 0.1);
}
@font-face {
  font-family: 'Gordita';
  src: url('/static/webfonts/gordita/gorditablack-webfont.woff2') format('woff2'), url('/static/webfonts/gordita/gorditablack-webfont.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Gordita';
  src: url('/static/webfonts/gordita/gorditablackitalic-webfont.woff2') format('woff2'), url('/static/webfonts/gordita/gorditablackitalic-webfont.woff') format('woff');
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: 'Gordita';
  src: url('/static/webfonts/gordita/gorditabold-webfont.woff2') format('woff2'), url('/static/webfonts/gordita/gorditabold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Gordita';
  src: url('/static/webfonts/gordita/gorditabolditalic-webfont.woff2') format('woff2'), url('/static/webfonts/gordita/gorditabolditalic-webfont.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Gordita';
  src: url('/static/webfonts/gordita/gorditalight-webfont.woff2') format('woff2'), url('/static/webfonts/gordita/gorditalight-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Gordita';
  src: url('/static/webfonts/gordita/gorditalightitalic-webfont.woff2') format('woff2'), url('/static/webfonts/gordita/gorditalightitalic-webfont.woff') format('woff');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Gordita';
  src: url('/static/webfonts/gordita/gorditamedium-webfont.woff2') format('woff2'), url('/static/webfonts/gordita/gorditamedium-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Gordita';
  src: url('/static/webfonts/gordita/gorditamediumitalic-webfont.woff2') format('woff2'), url('/static/webfonts/gordita/gorditamediumitalic-webfont.woff') format('woff');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Gordita';
  src: url('/static/webfonts/gordita/gorditaregular-webfont.woff2') format('woff2'), url('/static/webfonts/gordita/gorditaregular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Gordita';
  src: url('/static/webfonts/gordita/gorditaregularitalic-webfont.woff2') format('woff2'), url('/static/webfonts/gordita/gorditaregularitalic-webfont.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}
.widget.info-block ul {
  list-style: none;
}
.widget.info-block ul,
.widget.info-block ol {
  margin-left: 8px;
}
.widget.info-block ul li {
  margin-bottom: 8px;
  padding-left: 16px;
}
.widget.info-block ul li::before {
  content: ' ';
  width: 8px;
  height: 8px;
  background: #e9053d;
  border-radius: 100009px;
  display: block;
  position: absolute;
  left: -6px;
  margin-top: 11px;
}
.widget.info-block.style-image-left,
.widget.info-block.style-image-right {
  border: 1px solid #eaeaea;
}
.widget.info-block.style-image-left .widget-icon,
.widget.info-block.style-image-right .widget-icon {
  flex-basis: 56%;
  -webkit-flex-basis: 56%;
}
.content-area > .wrapper > h1,
.layout-container .layout-item-container > h1 {
  margin-bottom: 64px;
  text-align: center;
}
html.mobile .content-area > .wrapper > h1,
.layout-container .layout-item-container > h1 {
  margin-bottom: 48px;
}
.widget.info-block.style-image-left .content h3,
.widget.info-block.style-image-right .content h3 {
  background: linear-gradient(to right, #f6b600 0%, #e100a7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  align-self: flex-start;
  -webkit-align-self: flex-start;
}
.layout-container[data-layout-name="visual-frontpage-layout"] .widget.info-block > .content {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.layout-container[data-layout-name="visual-frontpage-layout"] .widget.info-block .link {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  align-self: flex-start;
  -webkit-align-self: flex-start;
  justify-self: flex-start;
  -webkit-justify-self: flex-start;
  background: #ffffff;
  color: #f40c42;
  transition: background 0.25s;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  padding: 2px;
  background: linear-gradient(to left, #e100a7 0%, #f6b600 50%, #e100a7 100%);
  background-position: 100% 0;
  background-size: 200% 100%;
  max-width: 320px;
  width: 100%;
  margin-top: 32px;
}
.layout-container[data-layout-name="visual-frontpage-layout"] .widget.info-block .link::after {
  content: ' ';
  background: #ffffff;
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 3px;
}
.layout-container[data-layout-name="visual-frontpage-layout"] .widget.info-block .link > span {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #ffffff;
  width: 100%;
  height: 100%;
  padding: 16px 24px;
  border-radius: 3px;
  color: #e5003d;
  background: linear-gradient(to right, #f6b600 0%, #e100a7 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  z-index: 99;
}
.layout-container[data-layout-name="visual-frontpage-layout"] .widget.info-block .link svg {
  display: none;
}
.widget.info-block.style-default .content {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
.widget.info-block a.link {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #ffffff;
  color: #f40c42;
  transition: background 0.25s;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  padding: 2px;
  background: linear-gradient(to left, #e100a7 0%, #f6b600 50%, #e100a7 100%);
  background-position: 100% 0;
  background-size: 200% 100%;
}
.widget.info-block a.link::after {
  content: ' ';
  background: #ffffff;
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 3px;
}
.widget.info-block a.link > span {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  background: #ffffff;
  width: 100%;
  height: 100%;
  padding: 12px 32px;
  border-radius: 3px;
  color: #e5003d;
  background: linear-gradient(to right, #f6b600 0%, #e100a7 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  z-index: 99;
  position: relative;
}
.widget.info-block:hover a.link {
  background-position: 0 0;
}
.widget.info-block.style-image-left .content a.link,
.widget.info-block.style-image-right .content a.link {
  align-self: flex-start;
  -webkit-align-self: flex-start;
}
.layout-container[data-layout-name="layout-dialog"] > .wrapper > .layout-item-container {
  padding: 48px;
  background: white;
  box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  max-width: 820px;
  margin: 0 auto;
}
.widget.form .panel > h1 {
  font-size: 22px;
}
.widget.form .content.style-2-columns .panel .field .main .label {
  margin-bottom: 8px;
}
.widget.form .content .actions {
  text-align: center;
}
.widget.form .content .actions button > div {
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 3px;
}
.widget.text.name-layout-subtitle {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
button.load-more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #ffffff;
  color: #f40c42;
  transition: background 0.25s;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  padding: 2px;
  background: linear-gradient(to left, #e100a7 0%, #f6b600 50%, #e100a7 100%);
  background-position: 100% 0;
  background-size: 200% 100%;
}
button.load-more > div {
  background: #ffffff;
  font-weight: 700;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 12px 32px;
  border-radius: 3px;
  align-items: center;
  color: #e5003d;
  background: linear-gradient(to right, #f6b600 0%, #e100a7 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  z-index: 99;
}
button.load-more::after {
  content: ' ';
  background: #ffffff;
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 3px;
}
.widget.cms-cover > .content.base-rustic figure {
  position: relative;
  padding-top: 56.25%;
}
.widget.cms-cover > .content.base-rustic figure img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h1 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.widget.cms-metadata .line .category {
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid #eaeaea;
}
.widget.cms-metadata .line .category span {
  color: #eb5658;
  font-weight: bold;
}
.widget.cms-metadata .line .date {
  color: #9b9b9b;
}
.widget.cms-metadata,
.widget.cms-summary,
.widget.cms-fragments {
  font-size: 18px;
}
.widget.cms-metadata .line {
  font-size: inherit;
}
.widget.cms-fragments .fragment.cms-quote {
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
  font-style: normal;
}
.widget.cms-fragments .fragment.cms-quote::before {
  content: ' ';
  display: block;
  width: 4px;
  background: linear-gradient(to top, #f6b600, #e100a7);
  height: 100%;
  position: absolute;
  left: 0;
  border-radius: 999px;
}
.widget.cms-fragments .fragment.cms-quote .fragment-content {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 32px;
  line-height: 1.5;
  color: #242424;
}
html.mobile .widget.cms-fragments .fragment.cms-quote .fragment-content {
  font-size: 24px;
}
.layout-sidebar .layout-item.sidebar h2 {
  font-size: 32px;
  margin-bottom: 32px;
  color: #222222;
  font-weight: 600;
}
.layout-container[data-layout-name="sidebar-with-padding"] .layout.layout-sidebar > .layout-item.sidebar {
  overflow: visible;
}
.widget.content-grid .content.base-default ul li.type-menu.template-features.style-icon-top .media {
  margin-bottom: 0;
}
.widget.content-grid .content.base-default ul li.type-menu.template-features .wrapper h2 {
  font-size: 22px;
  font-weight: 600;
}
.widget.info-block.name-sidebar-cta-banner {
  padding: 2px;
  background: linear-gradient(to right, #f6b600 0%, #e100a7 100%);
  border-radius: 5px;
  overflow: hidden;
}
.widget.info-block.name-sidebar-cta-banner > .content {
  padding: 24px;
  background: white;
  border-radius: 3px;
  overflow: hidden;
}
.widget.info-block.name-sidebar-cta-banner h2 {
  font-size: 24px;
  margin-bottom: 16px;
}
.widget.info-block.name-sidebar-cta-banner img {
  max-width: calc(100% + 48px);
  order: -1;
  margin-top: -24px;
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: 24px;
}
.widget.info-block.name-sidebar-cta-banner a.link {
  background: none;
  padding: 0;
}
.widget.info-block.name-sidebar-cta-banner a.link > span {
  padding: 0;
  font-weight: bold;
}
header#header .wrapper nav ul li.item.style-cta {
  margin-left: 16px;
}
.layout-container[data-layout-name="frontpage-visual"] .layout-2columns .column-1 {
  flex-grow: unset;
  -webkit-flex-grow: unset;
  flex-basis: 300px;
  -webkit-flex-basis: 300px;
  margin-right: 64px;
}
.layout-container[data-layout-name="features"] {
  border-bottom: 1px solid #eaeaea;
}
.widget.quote blockquote::before {
  content: ' ';
  display: block;
  width: 4px;
  background: linear-gradient(to top, #f6b600, #e100a7);
  height: 100%;
  position: absolute;
  left: 0;
  border-radius: 999px;
}
.widget.quote p {
  padding-top: 8px;
  padding-bottom: 8px;
}
.widget.quote footer {
  padding-bottom: 8px;
}
.widget.quote {
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
  font-style: normal;
}
.mfe-wc-blogpost-date {
  font-size: 14px;
}
b.mfe-menu-icon > span,
b.mfe-menu-icon::after,
b.mfe-menu-icon::before {
  background-color: black;
}
html.mobile header#header .wrapper nav ul li.item {
  margin-left: 0;
}
html.mobile header#header .wrapper nav ul li.item.style-cta {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 8px;
}
html.mobile header#header .wrapper nav ul li.item.style-cta a > span {
  padding-top: 0;
  padding-bottom: 0;
}
html.mobile header#header .right .widget.menu ul li a {
  justify-content: center;
  -webkit-justify-content: center;
  padding: 16px 12px;
  font-weight: bold;
}
html.mobile header#header .right .widget.menu ul {
  width: 100%;
}
html.mobile .content-area.hero.medium-height {
  height: 240px;
}
html.mobile .layout-container[data-layout-name="special-grid"] .widget.content-grid.style-default .content ul li.type-blogpost.style-default:nth-child(3n+2) {
  margin-top: 0;
  height: auto;
}
.layout-container[data-layout-name="frontpage-visual"] .layout-2columns .column-1 > .layout-item-container {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}
html.mobile .layout-container[data-layout-name="frontpage-visual"] .layout-2columns .column-1 > .layout-item-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.layout-container[data-layout-name="frontpage-visual"] .layout-2columns .column-2 > .layout-item-container {
  height: 100%;
}
html.mobile .layout-container[data-layout-name="frontpage-visual"] .layout-2columns .column-2 > .layout-item-container {
  height: 340px;
}
.layout-container[data-layout-name="frontpage-visual"] .layout-2columns .column-2 > .layout-item-container .widget.image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
html.mobile .content-area > .wrapper {
  padding: 48px 24px;
}
html.mobile .widget.content-grid .content ul li.type-blogpost.style-default .item-content .title {
  --wc-mobile-title-font-size: 18px;
  min-height: unset;
}
html.mobile h1 {
  font-size: 32px;
}
html.mobile .widget.info-block.style-image-left .content a.link,
.widget.info-block.style-image-right .content a.link {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
html.mobile .widget.info-block a.link > span {
  background: white;
  color: #e9053d;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-fill-color: unset;
}
button.load-more > div {
  background: white;
  color: #e9053d;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-fill-color: unset;
}
header#header .wrapper nav ul li.item.style-cta a > span {
  background: white;
  color: #e9053d;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-fill-color: unset;
}
html.mobile .layout-container[data-layout-name="layout-dialog"] > .wrapper > .layout-item-container {
  padding: 24px;
}
html.mobile .widget.content-grid.style-default .content.base-default ul {
  width: 100%;
}
html.mobile .widget.content-grid.style-default .content.base-default ul li {
  width: 100%;
}
