/*! nouislider - 14.7.0 - 4/6/2021 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-user-select: none;
	touch-action: none;
	-moz-user-select: none;
	user-select: none;
	box-sizing: border-box;
}
.noUi-target {
	position: relative;
}
.noUi-base,
.noUi-connects {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
	overflow: hidden;
	z-index: 0;
}
.noUi-connect,
.noUi-origin {
	will-change: transform;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	-ms-transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	-webkit-transform-style: preserve-3d;
	transform-origin: 0 0;
	transform-style: flat;
}
.noUi-connect {
	height: 100%;
	width: 100%;
}
.noUi-origin {
	height: 10%;
	width: 10%;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
	left: 0;
	right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
	width: 0;
}
.noUi-horizontal .noUi-origin {
	height: 0;
}
.noUi-handle {
	backface-visibility: hidden;
	position: absolute;
}
.noUi-touch-area {
	height: 100%;
	width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
	transition: transform 0.3s;
}
.noUi-state-drag * {
	cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
	height: 18px;
}
.noUi-horizontal .noUi-handle {
	width: 34px;
	height: 28px;
	right: -17px;
	top: -6px;
}
.noUi-vertical {
	width: 18px;
}
.noUi-vertical .noUi-handle {
	width: 28px;
	height: 34px;
	right: -6px;
	top: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
	left: -17px;
	right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
	background: #fafafa;
	border-radius: 4px;
	border: 1px solid #d3d3d3;
	box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
}
.noUi-connects {
	border-radius: 3px;
}
.noUi-connect {
	background: #3fb8af;
}
/* Handles and cursors;
 */
.noUi-draggable {
	cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
	cursor: ns-resize;
}
.noUi-handle {
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	background: #fff;
	cursor: default;
	box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
}
.noUi-active {
	box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
	content: '';
	display: block;
	position: absolute;
	height: 14px;
	width: 1px;
	background: #e8e7e6;
	left: 14px;
	top: 6px;
}
.noUi-handle:after {
	left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
	width: 14px;
	height: 1px;
	left: 6px;
	top: 14px;
}
.noUi-vertical .noUi-handle:after {
	top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
	background: #b8b8b8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
	cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
	box-sizing: border-box;
}
.noUi-pips {
	position: absolute;
	color: #999;
}
/* Values;
 *
 */
.noUi-value {
	position: absolute;
	white-space: nowrap;
	text-align: center;
}
.noUi-value-sub {
	color: #ccc;
	font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
	position: absolute;
	background: #ccc;
}
.noUi-marker-sub {
	background: #aaa;
}
.noUi-marker-large {
	background: #aaa;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
	padding: 10px 0;
	height: 80px;
	top: 100%;
	left: 0;
	width: 100%;
}
.noUi-value-horizontal {
	transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
	transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
	margin-left: -1px;
	width: 2px;
	height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
	height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
	height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
	padding: 0 10px;
	height: 100%;
	top: 0;
	left: 100%;
}
.noUi-value-vertical {
	transform: translate(0, -50%);
	padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
	transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
	width: 5px;
	height: 2px;
	margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
	width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
	width: 15px;
}
.noUi-tooltip {
	display: block;
	position: absolute;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	background: #fff;
	color: #000;
	padding: 5px;
	text-align: center;
	white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
	transform: translate(-50%, 0);
	left: 50%;
	bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
	transform: translate(0, -50%);
	top: 50%;
	right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
	transform: translate(50%, 0);
	left: auto;
	bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
	transform: translate(0, -18px);
	top: auto;
	right: 28px;
}
/**
 * Swiper 11.0.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 5, 2024
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */
/**
 * Theme
 */
:root {
  --primary: #2b50aa;
  --secondary: #C53029;
  --black: #000000;
  --off-black: #0A0908;
  --dark-grey: #505051;
  --grey: #bababb;
  --light-grey: #eaeaeb;
  --off-white: #fafafb;
  --white: #ffffff;
  --green: #30AB66;
  --blue: #2b50aa;
  --red: #d0011b;
}
/**
 * Defaults
 */
:root {
  --z-index-cookie-consent-heyflow: 1001;
}
/**
 * Responsive
 */
.mobile_only {
  display: none;
}
.hide_desktop,
.block.hide_desktop {
  display: none;
}
.hide_mobile,
.block.hide_mobile {
  display: block;
}
.hide_mobile.hide_desktop,
.block.hide_mobile.hide_desktop {
  display: none;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 1220px) {
    section > .block > .inner-wide,
    #template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-wide,
    #template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-wide {
      width: 100% !important;
    }
    section > .block > .inner-wide:not(.elements-v2-container),
    #template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-wide:not(.elements-v2-container),
    #template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-wide:not(.elements-v2-container) {
      padding-left: 10px !important;
      padding-right: 10px !important;
    }
  }
}
@container (max-width: 1220px) {
  section > .block > .inner-wide,
  #template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-wide,
  #template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-wide {
    width: 100% !important;
  }
  section > .block > .inner-wide:not(.elements-v2-container),
  #template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-wide:not(.elements-v2-container),
  #template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-wide:not(.elements-v2-container) {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 820px) {
    section > .block > .inner-mid,
    #template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-mid,
    #template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-mid {
      width: 100% !important;
    }
    section > .block > .inner-mid:not(.elements-v2-container),
    #template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-mid:not(.elements-v2-container),
    #template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-mid:not(.elements-v2-container) {
      padding-left: 10px !important;
      padding-right: 10px !important;
    }
  }
}
@container (max-width: 820px) {
  section > .block > .inner-mid,
  #template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-mid,
  #template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-mid {
    width: 100% !important;
  }
  section > .block > .inner-mid:not(.elements-v2-container),
  #template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-mid:not(.elements-v2-container),
  #template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-mid:not(.elements-v2-container) {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 420px) {
    section > .block > .inner-narrow,
    #template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-narrow,
    #template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-narrow {
      width: 100% !important;
    }
    section > .block > .inner-narrow:not(.elements-v2-container),
    #template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-narrow:not(.elements-v2-container),
    #template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-narrow:not(.elements-v2-container) {
      padding-left: 10px !important;
      padding-right: 10px !important;
    }
  }
}
@container (max-width: 420px) {
  section > .block > .inner-narrow,
  #template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-narrow,
  #template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-narrow {
    width: 100% !important;
  }
  section > .block > .inner-narrow:not(.elements-v2-container),
  #template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-narrow:not(.elements-v2-container),
  #template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-narrow:not(.elements-v2-container) {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    html,
    body {
      font-size: 14.4px;
    }
    .hide_desktop,
    .block.hide_desktop {
      display: block;
    }
    .hide_desktop.hide_mobile,
    .block.hide_desktop.hide_mobile {
      display: none;
    }
    .hide_mobile,
    .block.hide_mobile {
      display: none;
    }
    .m--block {
      display: block;
    }
    .m--flex-column {
      flex-direction: column !important;
    }
    .narrow {
      width: 100%;
    }
    .mobile_hide {
      display: none;
    }
    .mobile_block,
    .mobile_only {
      display: block;
    }
    .mobile_flex {
      display: flex;
    }
    .block-label {
      padding-bottom: 5px;
    }
    .mobile_padding-top-20 {
      padding: 20px 0 0 0 !important;
    }
    .header_close_button_container .tooltip {
      display: none !important;
    }
    .header_close_button {
      right: 5px;
      top: 7px;
    }
    .header_close_button i {
      font-size: 24px;
    }
    .elements-v1-container.mobile-flex-col > div {
      flex-direction: column !important;
    }
  }
}
@container (max-width: 560px) {
  html,
  body {
    font-size: 14.4px;
  }
  .hide_desktop,
  .block.hide_desktop {
    display: block;
  }
  .hide_desktop.hide_mobile,
  .block.hide_desktop.hide_mobile {
    display: none;
  }
  .hide_mobile,
  .block.hide_mobile {
    display: none;
  }
  .m--block {
    display: block;
  }
  .m--flex-column {
    flex-direction: column !important;
  }
  .narrow {
    width: 100%;
  }
  .mobile_hide {
    display: none;
  }
  .mobile_block,
  .mobile_only {
    display: block;
  }
  .mobile_flex {
    display: flex;
  }
  .block-label {
    padding-bottom: 5px;
  }
  .mobile_padding-top-20 {
    padding: 20px 0 0 0 !important;
  }
  .header_close_button_container .tooltip {
    display: none !important;
  }
  .header_close_button {
    right: 5px;
    top: 7px;
  }
  .header_close_button i {
    font-size: 24px;
  }
  .elements-v1-container.mobile-flex-col > div {
    flex-direction: column !important;
  }
}
/** End Responsive **/
/**
 * Tooltip
 */
.tooltip {
  display: none;
  position: absolute;
  font-size: 1rem;
  padding: 0.8em 1em;
  background: #505051;
  color: #ffffff;
  z-index: 3;
  border: none;
  color: white;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  border-radius: 5px;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.5;
  text-align: center;
}
.tooltip:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-radius: 2px;
}
.tooltip.bottom {
  transform: translate(-50%, 0);
  left: 50%;
  top: 120%;
}
.tooltip.bottom:after {
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #505051 transparent;
  left: 50%;
  top: -7px;
  margin-left: -7px;
}
.tooltip.left:after {
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #505051;
  left: 100%;
  margin-left: -1px;
  top: 50%;
  margin-top: -8px;
}
/** End Tooltip **/
/**
 * Selectors
 */
.checkbox {
  cursor: pointer;
  flex-shrink: 0;
  flex-grow: 0;
  display: inline-block;
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 3px;
  background: transparent;
  transition: background 0.1s;
  height: 20px;
  width: 20px;
}
.checkbox i {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 18px;
  transform: translate(-9px, -9px);
  color: transparent;
}
.radio {
  cursor: pointer;
  box-shadow: 0 0 0 1px #eaeaeb;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  transition: border box-shadow 0.1s;
  border-radius: 20px;
  height: 20px;
  width: 20px;
  background: transparent;
  border: 2.5px solid transparent;
}
/** End Selectors **/
/**
 * Rich Text Block
 */
.rich-text {
  word-break: break-word;
  -webkit-hyphens: initial;
          hyphens: initial;
}
.rich-text a,
.rich-text a:link,
.rich-text a:focus,
.rich-text a:visited {
  color: blue;
  text-decoration: none;
}
.rich-text a:hover,
.rich-text a:link:hover,
.rich-text a:focus:hover,
.rich-text a:visited:hover {
  text-decoration: underline;
}
.rich-text .formula-evaluation-error {
  color: red;
  font-weight: 700;
}
/** Rich Text Block **/
/**
 * Preview
 */
@keyframes highlight {
  0%,
  100% {
    background-color: initial;
  }
  50% {
    background-color: #fbfcff;
  }
}
.block-type-indicator {
  display: none !important;
  color: #4050ff;
  position: absolute;
  top: -9px;
  z-index: 1;
  left: 0;
  margin: 0 5px;
  padding: 3px 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  background: #ffffff;
}
section > .block:first-child .block-type-indicator {
  top: 3px;
}
body.app-preview:not(.preview-no-helpers) .block.preview-highlight:not(.preview-clicked) {
  animation: highlight 0.3s linear both;
}
body.app-preview:not(.preview-no-helpers) .block:hover,
body.app-preview:not(.preview-no-helpers) .block.preview-highlight {
  outline: 1px solid #4050ff;
  animation: none;
}
body.app-preview:not(.preview-no-helpers) .elements-container .block {
  outline: none !important;
}
body.app-preview:not(.preview-no-helpers) .elements-container .block > .block-type-indicator {
  display: none !important;
}
#partial-screen .header-avatar {
  position: initial;
  left: initial;
  top: initial;
  text-align: center;
}
#partial-screen .header-avatar img {
  margin: 10px auto;
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
#partial-screen .image-block {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.ds-color {
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
.ds-color.primary {
  background: #2b50aa;
}
.ds-color.secondary {
  background: #C53029;
}
.ds-color.off-black {
  background: #0A0908;
}
.ds-color.dark-grey {
  background: #505051;
}
.ds-color.grey {
  background: #bababb;
}
.ds-color.light-grey {
  background: #eaeaeb;
}
.ds-color.off-white {
  background: #fafafb;
}
.ds-color.red {
  background: #d0011b;
}
.ds-color.green {
  background: #30AB66;
}
.ds-color.blue {
  background: #2b50aa;
}
.ds-label p {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  color: #6a6a6a;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.4px;
  padding: 0;
  margin: 0;
}
.main.design-system-preview > form {
  margin-top: auto;
  margin-bottom: auto;
}
.main.screen-thumbnail section {
  animation-duration: 0s;
}
/** End Preview **/
/**
 * Header
 */
section.with-avatar {
  padding-top: 50px;
}
header {
  background: #ffffff;
  display: block;
  box-shadow: none;
  position: sticky;
  position: -webkit-sticky;
  z-index: 6;
  top: 0;
}
header > div {
  min-height: 60px;
  border-bottom-color: #eaeaeb;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: flex;
}
header > div > div:not(.image-block) {
  flex: 1;
}
header.force-show > div {
  display: block !important;
}
header .image-block {
  height: 60px;
}
header .image-block img {
  height: 100%;
  max-width: 100%;
  width: auto;
}
header .header-avatar {
  display: block;
  line-height: 1;
  position: absolute;
  z-index: 1;
  height: 100px;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}
header .header-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50px;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    section.with-avatar {
      padding-top: 30px;
    }
    header > div {
      min-height: 40px;
    }
    header .image-block {
      height: 40px;
    }
    header .header-avatar {
      margin-bottom: -30px;
      height: 60px;
    }
    header .header-avatar img {
      width: 60px;
      height: 60px;
      border-radius: 30px;
    }
  }
}
@container (max-width: 560px) {
  section.with-avatar {
    padding-top: 30px;
  }
  header > div {
    min-height: 40px;
  }
  header .image-block {
    height: 40px;
  }
  header .header-avatar {
    margin-bottom: -30px;
    height: 60px;
  }
  header .header-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 30px;
  }
}
/** End Header **/
/**
 * Global
 */
.main {
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -ms-overflow-style: none;
}
.main::-webkit-scrollbar {
  display: none;
}
.main > form {
  margin-top: unset;
  margin-bottom: unset;
  padding-top: unset;
  padding-bottom: unset;
}
@supports (container-type: inline-size) {
  header,
  .main,
  .footer-container {
    container-type: inline-size;
  }
}
section {
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  display: none;
}
section.visible {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  display: block;
}
section.visible:not(:first-child):not(.no-animation) {
  animation-name: slideInFromRight;
  animation-duration: 0.2s;
  animation-timing-function: ease-in;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: unset;
}
section.hidden {
  display: none;
  z-index: 0;
  opacity: 0;
  animation-name: slideOutToLeft;
  animation-duration: 0.2s;
  animation-timing-function: ease-in;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: unset;
}
.block {
  position: relative;
}
header .block {
  position: initial;
}
/** End Global **/
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
/**
 * Footer
 */
footer {
  text-align: center;
  width: 100%;
  position: relative;
  background: transparent;
  display: block;
  border-top-width: 0;
  border-top-style: none;
  border-top-color: #eaeaeb;
  box-shadow: none;
}
footer.force-show > div {
  display: block !important;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    footer {
      min-height: 0;
    }
  }
}
@container (max-width: 560px) {
  footer {
    min-height: 0;
  }
}
/** End Footer **/
/**
 * Elements
 */
.elements-container .block {
  flex-grow: 1;
  flex-shrink: auto;
  flex-basis: 0;
  max-width: 100%;
}
.elements-container .container-style-1 {
  padding: 10px;
  background: transparent;
  border-width: 1px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 10px;
  box-shadow: none;
}
.elements-container .container-style-2 {
  padding: 10px;
  background: rgba(43, 80, 170, 0.025);
  border-width: 3px;
  border-top-width: 3px;
  border-right-width: 3px;
  border-bottom-width: 3px;
  border-left-width: 3px;
  border-style: solid;
  border-color: rgba(43, 80, 170, 0.2);
  border-radius: 10px;
  box-shadow: none;
}
.elements-container .container-style-3 {
  padding: 0px;
  background: #ffffff;
  border-width: 0px;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 30px;
  box-shadow: 15px 15px 40px #eeeeee, -15px -15px 40px #ffffff;
}
.elements-container .container-style-4 {
  padding: 10px;
  background: #ececec;
  border-width: 0px;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 0px;
  box-shadow: none;
}
.flex-box > div {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}
.elements-container-inner:not(
    .elements-container-inner .elements-container-inner
  ).inner-full,
footer .elements-container-inner .elements-container-inner.inner-full,
header .elements-container-inner .elements-container-inner.inner-full {
  max-width: 100%;
}
.elements-container-inner:not(
    .elements-container-inner .elements-container-inner
  ).inner-wide,
footer .elements-container-inner .elements-container-inner.inner-wide,
header .elements-container-inner .elements-container-inner.inner-wide {
  max-width: 1200px;
}
.elements-container-inner:not(
    .elements-container-inner .elements-container-inner
  ).inner-mid,
footer .elements-container-inner .elements-container-inner.inner-mid,
header .elements-container-inner .elements-container-inner.inner-mid {
  max-width: 800px;
}
.elements-container-inner:not(
    .elements-container-inner .elements-container-inner
  ).inner-narrow,
footer .elements-container-inner .elements-container-inner.inner-narrow,
header .elements-container-inner .elements-container-inner.inner-narrow {
  max-width: 400px;
}
.elements-v2-container .elements-container-inner {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 1220px) {
    section > .block > .elements-container.inner-full > .inner-wide {
      width: 100%;
      max-width: 100%;
      padding-left: 10px;
      padding-right: 10px;
    }
  }
}
@container (max-width: 1220px) {
  section > .block > .elements-container.inner-full > .inner-wide {
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 820px) {
    section > .block > .elements-container.inner-full > .inner-mid {
      width: 100%;
      max-width: 100%;
      padding-left: 10px;
      padding-right: 10px;
    }
  }
}
@container (max-width: 820px) {
  section > .block > .elements-container.inner-full > .inner-mid {
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 420px) {
    section > .block > .elements-container.inner-full > .inner-narrow {
      width: 100%;
      max-width: 100%;
      padding-left: 10px;
      padding-right: 10px;
    }
  }
}
@container (max-width: 420px) {
  section > .block > .elements-container.inner-full > .inner-narrow {
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .elements-container-inner.mobile-flex-col {
      flex-direction: column !important;
    }
  }
}
@container (max-width: 560px) {
  .elements-container-inner.mobile-flex-col {
    flex-direction: column !important;
  }
}
/** End Elements **/
/**
 * Base
 */
html {
  height: 100%;
}
html,
body {
  max-width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Open Sans";
  font-size: 16px;
  color: #0A0908;
}
body {
  overflow-x: clip;
  min-height: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  -webkit-text-size-adjust: 100%;
  /* Stops Mobile Safari from auto-adjusting font-sizes */
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figure,
figcaption,
hgroup,
menu,
footer,
header,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
.input-decorator,
.input-box.with-floating-label input:focus + .input-floating-label,
.input-box.with-floating-label.has-value .input-floating-label,
.input-box.with-floating-label.has-focus .input-floating-label,
.input-box.with-floating-label .input-floating-label.is-offset,
.input-box.with-floating-label.floating-label-inline input:focus + .input-floating-label,
.input-box.with-floating-label.floating-label-inline.has-value .input-floating-label,
.input-box.with-floating-label.floating-label-inline.has-focus .input-floating-label,
.input-box.with-floating-label.floating-label-inline .input-floating-label.is-offset,
.input-decorator,
.date-picker-block.with-floating-label.has-value .input-floating-label,
.date-picker-block.with-floating-label.has-focus .input-floating-label,
.date-picker-block.with-floating-label.is-calendar-open .input-floating-label,
.date-picker-block.with-floating-label .input-floating-label.is-offset,
.date-picker-block.with-floating-label.floating-label-inline.has-value .input-floating-label,
.date-picker-block.with-floating-label.floating-label-inline.has-focus .input-floating-label,
.date-picker-block.with-floating-label.floating-label-inline.is-calendar-open .input-floating-label,
.date-picker-block.with-floating-label.floating-label-inline .input-floating-label.is-offset {
  margin: 0;
  padding: 0;
  border: 0;
}
article,
aside,
details,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
menu,
audio,
video,
textarea {
  display: block;
}
a img {
  border: 0;
}
a {
  text-decoration: none;
  cursor: pointer;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: moz-none;
  user-select: none;
  outline: none;
}
a:visited,
a:link,
a:focus {
  text-decoration: none;
}
* {
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
label,
.label,
.text,
.input-box.with-floating-label input:focus + .input-floating-label,
.input-box.with-floating-label.has-value .input-floating-label,
.input-box.with-floating-label.has-focus .input-floating-label,
.input-box.with-floating-label .input-floating-label.is-offset,
.input-box.with-floating-label.floating-label-inline input:focus + .input-floating-label,
.input-box.with-floating-label.floating-label-inline.has-value .input-floating-label,
.input-box.with-floating-label.floating-label-inline.has-focus .input-floating-label,
.input-box.with-floating-label.floating-label-inline .input-floating-label.is-offset,
.date-picker-block.with-floating-label.has-value .input-floating-label,
.date-picker-block.with-floating-label.has-focus .input-floating-label,
.date-picker-block.with-floating-label.is-calendar-open .input-floating-label,
.date-picker-block.with-floating-label .input-floating-label.is-offset,
.date-picker-block.with-floating-label.floating-label-inline.has-value .input-floating-label,
.date-picker-block.with-floating-label.floating-label-inline.has-focus .input-floating-label,
.date-picker-block.with-floating-label.floating-label-inline.is-calendar-open .input-floating-label,
.date-picker-block.with-floating-label.floating-label-inline .input-floating-label.is-offset {
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.hide {
  display: none !important;
}
.clearfix {
  display: inline-block;
}
.clearfix:after {
  content: '.';
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .clearfix {
  display: block;
}
* html .clearfix {
  height: 1%;
}
body .debug {
  display: none;
}
body.debug .debug {
  display: block;
}
body.debug section {
  display: block;
  visibility: visible;
  position: relative;
  opacity: 1;
  padding-bottom: 100px;
  border-bottom: 1px solid #ccc;
}
button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
  -webkit-appearance: button;
  cursor: pointer;
}
button {
  border: none;
  background: none;
}
.material-icons {
  font-size: 1.2rem;
}
.lt-ie8 .material-icons,
.lt-ie7 .material-icons {
  display: none;
}
select {
  width: 100%;
}
body,
button,
input,
select,
textarea,
.input-decorator,
.input-decorator {
  font-family: "Open Sans";
  color: #0A0908;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  padding: 0;
}
body {
  background: #ffffff;
  background-image: none;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none;
}
pre {
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.float-right {
  float: right;
}
.float-left {
  float: left;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.align-center,
.center {
  text-align: center;
}
section > .block > .inner-wide,
#template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-wide,
#template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-wide,
section > .block > .inner-mid,
#template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-mid,
#template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-mid,
section > .block > .inner-narrow,
#template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-narrow,
#template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-narrow,
section > .block > .inner-full,
#template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-full,
#template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-full {
  margin: 0 auto;
}
section > .block > .inner-full,
#template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-full,
#template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-full {
  width: 100%;
}
section > .block > .inner-wide,
#template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-wide,
#template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-wide {
  width: 1200px;
}
section > .block > .inner-mid,
#template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-mid,
#template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-mid {
  width: 800px;
}
section > .block > .inner-narrow,
#template-header > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-narrow,
#template-footer > .elements-v1-container > [data-type="template-blocks-container"] > .block > .inner-narrow {
  width: 400px;
}
.phi-col,
.phi-row {
  flex-grow: 1.618003;
  flex-shrink: 1.618003;
  flex-basis: 0;
}
.col,
.row {
  flex: 1 1 0;
}
*::-moz-selection {
  background: normal;
  color: normal;
}
*::selection {
  background: normal;
  color: normal;
}
h1 {
  font-size: 40px;
  font-family: "Alata";
  color: #0A0908;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: normal;
  text-transform: unset;
  margin: 0rem;
}
h2 {
  font-family: "Alata";
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: normal;
  color: #0A0908;
  text-transform: unset;
  margin: 0rem;
}
h3 {
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: normal;
  color: #505051;
  text-transform: unset;
  margin: 0rem;
}
h4 {
  font-family: "Open Sans";
  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: normal;
  color: #505051;
  text-transform: unset;
  margin: 0rem;
}
h5 {
  font-family: "Open Sans";
  font-size: 13px;
  font-weight: 400;
  color: #bababb;
  letter-spacing: normal;
  line-height: 1;
  text-transform: unset;
  margin: 0rem;
}
h6 {
  font-family: "Open Sans";
  font-weight: 400;
  color: #bababb;
  font-size: 11px;
  letter-spacing: normal;
  line-height: 1;
  text-transform: unset;
  margin: 0rem;
}
p.small {
  font-family: "Open Sans";
  font-size: 0.9rem;
  color: #0A0908;
  line-height: 22px;
}
p {
  font-family: "Open Sans";
  font-size: 1rem;
  font-weight: normal;
  color: #0A0908;
  line-height: 1;
  line-height: 1.35;
  margin: 1em 0;
}
.full-width {
  width: 100%;
}
.breadcrumbs {
  font-family: "Open Sans";
  font-size: 13px;
  color: #0A0908;
  margin-top: 10px;
}
.value {
  font-family: "Open Sans";
  font-size: 1rem;
  color: #0A0908;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}
.label,
label,
.input-box.with-floating-label input:focus + .input-floating-label,
.input-box.with-floating-label.has-value .input-floating-label,
.input-box.with-floating-label.has-focus .input-floating-label,
.input-box.with-floating-label .input-floating-label.is-offset,
.input-box.with-floating-label.floating-label-inline input:focus + .input-floating-label,
.input-box.with-floating-label.floating-label-inline.has-value .input-floating-label,
.input-box.with-floating-label.floating-label-inline.has-focus .input-floating-label,
.input-box.with-floating-label.floating-label-inline .input-floating-label.is-offset,
.date-picker-block.with-floating-label.has-value .input-floating-label,
.date-picker-block.with-floating-label.has-focus .input-floating-label,
.date-picker-block.with-floating-label.is-calendar-open .input-floating-label,
.date-picker-block.with-floating-label .input-floating-label.is-offset,
.date-picker-block.with-floating-label.floating-label-inline.has-value .input-floating-label,
.date-picker-block.with-floating-label.floating-label-inline.has-focus .input-floating-label,
.date-picker-block.with-floating-label.floating-label-inline.is-calendar-open .input-floating-label,
.date-picker-block.with-floating-label.floating-label-inline .input-floating-label.is-offset {
  font-family: "Open Sans";
  font-size: 0.9rem;
  color: #0A0908;
  font-weight: normal;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: normal;
  display: block;
}
.block-label {
  display: block;
  padding-bottom: 10px;
}
.flex {
  display: flex;
  align-items: flex-start;
}
.fit-content {
  width: -moz-fit-content;
  width: fit-content;
}
.block {
  display: block;
}
.space-between {
  justify-content: space-between;
}
.flex-center {
  justify-content: center;
}
.card,
.cookie-consent {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  transition: all 250ms;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.card.card-actionable:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-5px);
}
.bg-background {
  background-color: #ffffff;
}
.bg-primary {
  background-color: #2b50aa;
}
.bg-secondary {
  background-color: #C53029;
}
.bg-white {
  background-color: white;
}
.bg-black {
  background-color: black;
}
.bg-off-white {
  background-color: #fafafb;
}
.bg-light-grey {
  background-color: #eaeaeb;
}
.bg-grey {
  background-color: #bababb;
}
.bg-dark-grey {
  background-color: #505051;
}
.bg-off-black {
  background: #0A0908;
}
.border-default {
  border: 1px solid #eaeaeb;
}
.br-default {
  border-radius: 5px;
}
.color-primary {
  color: #2b50aa;
  fill: currentColor;
}
.color-secondary {
  color: #C53029;
  fill: currentColor;
}
.color-green {
  color: #30AB66;
  fill: currentColor;
}
.color-red {
  color: #d0011b;
  fill: currentColor;
}
.color-orange {
  color: #FF8C42;
  fill: currentColor;
}
.color-grey {
  color: #bababb;
  fill: currentColor;
}
.color-blue {
  color: #2b50aa;
  fill: currentColor;
}
/** End Base **/
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    h1 {
      font-size: 32px;
    }
    h2 {
      font-size: 26px;
    }
    h3 {
      font-size: 20px;
    }
    h4 {
      font-size: 16px;
    }
    h5 {
      font-size: 11px;
    }
    h6 {
      font-size: 10px;
    }
  }
}
@container (max-width: 560px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 16px;
  }
  h5 {
    font-size: 11px;
  }
  h6 {
    font-size: 10px;
  }
}
.font-size-xsmall {
  font-size: 0.75rem;
}
.font-size-small {
  font-size: 0.865rem;
}
.font-size-medium {
  font-size: 1rem;
}
.font-size-large {
  font-size: 1.125rem;
}
.font-size-xlarge {
  font-size: 1.25rem;
}
.font-size-xxlarge {
  font-size: 2rem;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .font-size-xsmall {
      font-size: 0.675rem;
    }
    .font-size-small {
      font-size: 0.7785rem;
    }
    .font-size-medium {
      font-size: 0.9rem;
    }
    .font-size-large {
      font-size: 1.0125rem;
    }
    .font-size-xlarge {
      font-size: 1.125rem;
    }
    .font-size-xxlarge {
      font-size: 1.8rem;
    }
  }
}
@container (max-width: 560px) {
  .font-size-xsmall {
    font-size: 0.675rem;
  }
  .font-size-small {
    font-size: 0.7785rem;
  }
  .font-size-medium {
    font-size: 0.9rem;
  }
  .font-size-large {
    font-size: 1.0125rem;
  }
  .font-size-xlarge {
    font-size: 1.125rem;
  }
  .font-size-xxlarge {
    font-size: 1.8rem;
  }
}
/**
 * Animations
 */
@keyframes shake {
  8%,
  41% {
    -webkit-transform: translateX(-10px);
  }
  25%,
  58% {
    -webkit-transform: translateX(10px);
  }
  75% {
    -webkit-transform: translateX(-5px);
  }
  92% {
    -webkit-transform: translateX(5px);
  }
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes slideInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOutToTop {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes slideOutToRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100px);
  }
}
@keyframes slideOutToBottom {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(100px);
  }
}
@keyframes slideOutToLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-100px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blink {
  25%,
  100% {
    border-color: inherit;
  }
  0%,
  70% {
    border-color: #eaeaeb;
  }
}
/** End Animations **/
.typewriter-caret {
  border-right: 0.1em solid #2b50aa;
  animation: typewriter-blink-caret 0.8s step-end infinite;
}
@keyframes typewriter-blink-caret {
  from,
  to {
    border-color: #2b50aa;
  }
  50% {
    border-color: transparent;
  }
}
.text-image-content-body {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.text-image-content-body.inverted {
  flex-direction: row-reverse;
}
.text-image-content-image img {
  width: 100%;
  display: block;
}
.text-image-content-text p {
  overflow-wrap: break-word;
}
.text-image-content-text p:first-child {
  margin-top: 0;
}
.text-image-content-text p:last-child {
  margin-bottom: 0;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .text-image-content-body,
    .text-image-content-body.inverted {
      flex-direction: column;
    }
    .text-image-content-image {
      width: 100% !important;
    }
    .text-image-content-text {
      width: 100% !important;
    }
  }
}
@container (max-width: 560px) {
  .text-image-content-body,
  .text-image-content-body.inverted {
    flex-direction: column;
  }
  .text-image-content-image {
    width: 100% !important;
  }
  .text-image-content-text {
    width: 100% !important;
  }
}
/**
 * noUiSlider Custom Theme
 */
.noUi-target {
  box-shadow: none;
  background: #eaeaeb;
}
.slider-tooltip-helper {
  display: block;
  padding: 0.7rem 0.8rem;
  margin-top: 13px;
  background: transparent;
  content: '.';
  visibility: hidden;
}
.slider-tooltip-helper:after {
  content: '.';
}
.slider-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.slider-image-container img {
  margin-right: 15px;
  margin-right: 0;
  margin-left: 15px;
  height: 80px;
  width: 80px;
}
.slider-svg-container svg {
  margin-right: 15px;
  margin-right: 0;
  margin-left: 15px;
  color: #2b50aa;
  fill: #2b50aa;
  height: 80px;
  width: 80px;
}
.noUi-horizontal .noUi-tooltip {
  border: none;
  bottom: auto;
  -webkit-font-smoothing: antialiased;
  cursor: -webkit-grab;
  display: block;
  font-size: 0.9rem;
  padding: 0.7rem 0.8rem;
  background: #0A0908;
  color: #ffffff;
  font-weight: bold;
  box-shadow: none;
  border-radius: 5px;
  top: 20px;
}
.noUi-horizontal .noUi-tooltip:focus,
.noUi-horizontal .noUi-tooltip:active {
  cursor: -webkit-grabbing;
}
.noUi-horizontal .noUi-tooltip:after {
  display: none;
  content: '';
  border-style: solid;
  border-radius: 2px;
  border-width: 0 7.5px 9px 7.5px;
  border-color: transparent transparent #0A0908 transparent;
  position: absolute;
  z-index: -1;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}
.noUi-horizontal {
  height: 5px;
  border-radius: 10px;
  border: none;
  margin: 7.5px 0;
}
.noUi-horizontal .noUi-handle {
  right: 0 !important;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  top: -5px;
  box-shadow: none;
  border-width: 0;
  border-style: solid;
  border-color: #2b50aa;
  background: #2b50aa;
  outline: none;
  cursor: -webkit-grab;
  transform: translateX(50%);
}
.noUi-horizontal .noUi-handle:focus,
.noUi-horizontal .noUi-handle:active {
  cursor: -webkit-grabbing;
}
.noUi-horizontal .noUi-handle:before,
.noUi-horizontal .noUi-handle:after {
  display: none;
}
.noUi-horizontal .noUi-handle:hover .noUi-tooltip,
.noUi-horizontal .noUi-handle.noUi-active .noUi-tooltip {
  display: block;
}
.noUi-connects {
  border-radius: 10px;
}
.noUi-connect {
  background: #2b50aa;
  box-shadow: none;
}
.slider-header {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.slider-header > div {
  flex: 1;
}
.slider-label {
  margin-right: 10px;
}
.slider-labels {
  display: flex;
  justify-content: space-between;
}
.slider-labels label {
  padding: 0 5px 5px;
  text-align: center;
}
.slider-labels label:last-child {
  text-align: right;
  padding-right: 0;
}
.slider-labels label:first-child {
  text-align: left;
  padding-left: 0;
}
.slider-labels + .slider-tooltip-helper {
  margin-top: -1rem;
}
.slider-header-input {
  min-width: 50px;
}
input.slider-input {
  font-size: 1rem !important;
  max-width: calc(0.6em + 0.6em + 1px*2 + var(--slider-input-size));
}
.range-slider {
  overflow: initial;
}
.range-slider > div {
  display: inline-block;
  width: 100%;
}
.range-slider.with-image > div {
  display: flex;
  align-items: center;
}
.range-slider.with-image > div img {
  width: 100%;
  margin-right: 10px;
}
.range-slider.with-image > div > div:first-child {
  margin-right: 10px;
  flex: 3.82;
}
.range-slider.with-image > div > div:last-child {
  flex: 6.18;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .slider-image-container img {
      height: 72px;
      width: 72px;
    }
    .slider-svg-container svg {
      height: 72px;
      width: 72px;
    }
  }
}
@container (max-width: 560px) {
  .slider-image-container img {
    height: 72px;
    width: 72px;
  }
  .slider-svg-container svg {
    height: 72px;
    width: 72px;
  }
}
/** END noUiSlider Custom Theme **/
/**
 * Rich List
 */
.rich-list-v2 {
  width: unset;
  margin: unset;
}
@keyframes showGraphicsContainer {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.rich-list-v2-block .loader {
  display: none;
}
.rich-list-v2-block[data-is-animated='true'] .loader,
.rich-list-v2-block[data-is-previewed='true'] .loader {
  display: block;
  opacity: 0;
  position: relative;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  transform: scale(0.8);
  transition: opacity 0.1s;
  flex-shrink: 0;
}
.rich-list-v2-block[data-is-animated='true'] .loader:before,
.rich-list-v2-block[data-is-previewed='true'] .loader:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-left-color: #2b50aa;
  border-top-color: #2b50aa;
  border-right-color: #2b50aa;
  animation: rich-list-loader-spin 0.75s infinite linear;
}
.rich-list-v2-block[data-is-animated='true'] .loader-active,
.rich-list-v2-block[data-is-previewed='true'] .loader-active {
  opacity: 1;
}
.rich-list-v2-block[data-is-animated='true'] .graphics-container-show,
.rich-list-v2-block[data-is-previewed='true'] .graphics-container-show {
  animation: showGraphicsContainer 0.2s;
}
.rich-list-v2-block[data-is-animated='true'] .graphics-container-hidden,
.rich-list-v2-block[data-is-previewed='true'] .graphics-container-hidden {
  opacity: 0;
  height: 0;
  width: 0;
  margin-left: -15px;
}
.rich-list-v2-block[data-is-animated='true'] .text-container,
.rich-list-v2-block[data-is-previewed='true'] .text-container {
  transition: opacity ease 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rich-list-v2-block[data-is-animated='true'] .text-container-hidden,
.rich-list-v2-block[data-is-previewed='true'] .text-container-hidden {
  opacity: 0;
}
.rich-list-v2-block[data-is-animated='true'][data-animation-mode='all'] .loader,
.rich-list-v2-block[data-is-previewed='true'][data-animation-mode='all'] .loader {
  opacity: 0;
}
.rich-list-v2-block[data-is-animated='true'][data-animation-mode='all'] .loader-active,
.rich-list-v2-block[data-is-previewed='true'][data-animation-mode='all'] .loader-active {
  opacity: 1;
}
.rich-list-v2-block[data-is-animated='true'][data-animation-mode='all'] .text-container-hidden,
.rich-list-v2-block[data-is-previewed='true'][data-animation-mode='all'] .text-container-hidden {
  opacity: 1;
}
.rich-list-v2-block[data-is-animated='true'][data-animation-mode='load-all'] .loader,
.rich-list-v2-block[data-is-previewed='true'][data-animation-mode='load-all'] .loader {
  opacity: 1;
}
.rich-list-v2-block[data-is-animated='true'][data-animation-mode='load-all'] .loader-active,
.rich-list-v2-block[data-is-previewed='true'][data-animation-mode='load-all'] .loader-active {
  opacity: 1;
}
.rich-list-v2-block[data-is-animated='true'][data-animation-mode='load-all'] .text-container-hidden,
.rich-list-v2-block[data-is-previewed='true'][data-animation-mode='load-all'] .text-container-hidden {
  opacity: 1;
}
.rich-list-v2-options {
  flex-wrap: wrap;
  display: grid;
  -moz-column-gap: 2em;
       column-gap: 2em;
  row-gap: 2em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: unset;
}
.rich-list-v2-option {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  background: none;
  border-width: 0px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 5px;
  text-align: unset;
  gap: 15px;
}
.rich-list-v2-option .graphics-container {
  flex-shrink: 0;
  display: inline-block;
  width: 2em;
  height: 2em;
}
.rich-list-v2-option .graphics-container img,
.rich-list-v2-option .graphics-container svg,
.rich-list-v2-option .graphics-container .emoji {
  width: 100%;
  height: 100%;
}
.rich-list-v2-option .graphics-container svg {
  color: #2b50aa;
  fill: #2b50aa;
}
.rich-list-v2-option .graphics-container .emoji {
  font-size: 2em;
}
.rich-list-v2-option .label {
  -webkit-hyphens: auto;
          hyphens: auto;
  font-family: "Open Sans";
  color: #0A0908;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: normal;
  text-transform: unset;
  padding-bottom: 0.3em;
}
.rich-list-v2-option .label p {
  all: revert;
  margin: 0;
}
.rich-list-v2-option .text {
  font-family: "Open Sans";
  color: #505051;
  font-size: 0.9rem;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-transform: unset;
}
.rich-list-v2-option .text p {
  all: revert;
  margin: 0;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .rich-list-v2-options {
      display: grid;
      flex-direction: column;
    }
    .rich-list-v2-option {
      display: flex;
      flex-direction: row;
    }
  }
}
@container (max-width: 560px) {
  .rich-list-v2-options {
    display: grid;
    flex-direction: column;
  }
  .rich-list-v2-option {
    display: flex;
    flex-direction: row;
  }
}
@keyframes rich-list-loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .rich-list-v2-mobile-grid-cols-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .rich-list-v2-mobile-grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .rich-list-v2-mobile-grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .rich-list-v2-mobile-grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .rich-list-v2-mobile-grid-cols-5 {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .rich-list-v2-mobile-grid-cols-6 {
      grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    .rich-list-v2-mobile-grid-cols-7 {
      grid-template-columns: repeat(7, minmax(0, 1fr));
    }
    .rich-list-v2-mobile-grid-cols-8 {
      grid-template-columns: repeat(8, minmax(0, 1fr));
    }
    .rich-list-v2-mobile-grid-cols-9 {
      grid-template-columns: repeat(9, minmax(0, 1fr));
    }
    .rich-list-v2-mobile-grid-cols-10 {
      grid-template-columns: repeat(10, minmax(0, 1fr));
    }
    .rich-list-v2-mobile-grid-cols-11 {
      grid-template-columns: repeat(11, minmax(0, 1fr));
    }
    .rich-list-v2-mobile-grid-cols-12 {
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
}
@container (max-width: 560px) {
  .rich-list-v2-mobile-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .rich-list-v2-mobile-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rich-list-v2-mobile-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .rich-list-v2-mobile-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .rich-list-v2-mobile-grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .rich-list-v2-mobile-grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .rich-list-v2-mobile-grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .rich-list-v2-mobile-grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .rich-list-v2-mobile-grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .rich-list-v2-mobile-grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .rich-list-v2-mobile-grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .rich-list-v2-mobile-grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
/** End Rich List **/
/**
 * Rich List
 */
.rich-list {
  width: unset;
  margin: unset;
}
.rich-list-options {
  flex-wrap: wrap;
  display: flex;
  -moz-column-gap: 0px;
       column-gap: 0px;
  row-gap: 2em;
  flex-direction: row;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: unset;
}
.layout {
  /* 1 */
  /* 2 */
  /* 0, 3, 6, (9), (12), 15 … */
  /* 5, (7), 9, (11), 13, 15, … */
  /* 4, (6), 8, 10, 12, 14 … */
  /* 7, 11 */
}
.layout:first-child:nth-last-child(1) {
  flex-basis: 100%;
}
.layout:first-child:nth-last-child(2),
.layout:first-child:nth-last-child(2) ~ * {
  flex-basis: 50%;
}
.layout:first-child:nth-last-child(3n),
.layout:first-child:nth-last-child(3n) ~ * {
  flex-basis: 33.3333%;
}
.layout:first-child:nth-last-child(2n + 3),
.layout:first-child:nth-last-child(2n + 3) ~ * {
  flex-basis: 33.3333%;
}
.layout:first-child:nth-last-child(2n + 4):not(:nth-last-child(6)),
.layout:first-child:nth-last-child(2n + 4):not(:nth-last-child(6)) ~ * {
  flex-basis: 25%;
}
.layout:first-child:nth-last-child(7),
.layout:first-child:nth-last-child(7) ~ *,
.layout:first-child:nth-last-child(11),
.layout:first-child:nth-last-child(11) ~ * {
  flex-basis: 25%;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 720px) and (min-width: 341px) {
    .layout {
      /* 2 */
      /* 5, (7), 9, (11), 13, 15, … */
    }
    .layout .rich-list-option:first-child:nth-last-child(2n),
    .layout .rich-list-option:first-child:nth-last-child(2n) ~ * {
      flex-basis: 50% !important;
    }
    .layout .rich-list-option:first-child:nth-last-child(2n + 3),
    .layout .rich-list-option:first-child:nth-last-child(2n + 3) ~ * {
      flex-basis: 50%;
    }
  }
}
@container (max-width: 720px) and (min-width: 341px) {
  .layout {
    /* 2 */
    /* 5, (7), 9, (11), 13, 15, … */
  }
  .layout .rich-list-option:first-child:nth-last-child(2n),
  .layout .rich-list-option:first-child:nth-last-child(2n) ~ * {
    flex-basis: 50% !important;
  }
  .layout .rich-list-option:first-child:nth-last-child(2n + 3),
  .layout .rich-list-option:first-child:nth-last-child(2n + 3) ~ * {
    flex-basis: 50%;
  }
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 340px) {
    .layout {
      flex-basis: 100% !important;
    }
  }
}
@container (max-width: 340px) {
  .layout {
    flex-basis: 100% !important;
  }
}
.rich-list-option {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0 10px 0 0;
  background: none;
  border-width: 0px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 5px;
  text-align: unset;
  gap: 15px;
  /* 1 */
  /* 2 */
  /* 0, 3, 6, (9), (12), 15 … */
  /* 5, (7), 9, (11), 13, 15, … */
  /* 4, (6), 8, 10, 12, 14 … */
  /* 7, 11 */
}
.rich-list-option:first-child:nth-last-child(1) {
  flex-basis: 100%;
}
.rich-list-option:first-child:nth-last-child(2),
.rich-list-option:first-child:nth-last-child(2) ~ * {
  flex-basis: 50%;
}
.rich-list-option:first-child:nth-last-child(3n),
.rich-list-option:first-child:nth-last-child(3n) ~ * {
  flex-basis: 33.3333%;
}
.rich-list-option:first-child:nth-last-child(2n + 3),
.rich-list-option:first-child:nth-last-child(2n + 3) ~ * {
  flex-basis: 33.3333%;
}
.rich-list-option:first-child:nth-last-child(2n + 4):not(:nth-last-child(6)),
.rich-list-option:first-child:nth-last-child(2n + 4):not(:nth-last-child(6)) ~ * {
  flex-basis: 25%;
}
.rich-list-option:first-child:nth-last-child(7),
.rich-list-option:first-child:nth-last-child(7) ~ *,
.rich-list-option:first-child:nth-last-child(11),
.rich-list-option:first-child:nth-last-child(11) ~ * {
  flex-basis: 25%;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 720px) and (min-width: 341px) {
    .rich-list-option {
      /* 2 */
      /* 5, (7), 9, (11), 13, 15, … */
    }
    .rich-list-option .rich-list-option:first-child:nth-last-child(2n),
    .rich-list-option .rich-list-option:first-child:nth-last-child(2n) ~ * {
      flex-basis: 50% !important;
    }
    .rich-list-option .rich-list-option:first-child:nth-last-child(2n + 3),
    .rich-list-option .rich-list-option:first-child:nth-last-child(2n + 3) ~ * {
      flex-basis: 50%;
    }
  }
}
@container (max-width: 720px) and (min-width: 341px) {
  .rich-list-option {
    /* 2 */
    /* 5, (7), 9, (11), 13, 15, … */
  }
  .rich-list-option .rich-list-option:first-child:nth-last-child(2n),
  .rich-list-option .rich-list-option:first-child:nth-last-child(2n) ~ * {
    flex-basis: 50% !important;
  }
  .rich-list-option .rich-list-option:first-child:nth-last-child(2n + 3),
  .rich-list-option .rich-list-option:first-child:nth-last-child(2n + 3) ~ * {
    flex-basis: 50%;
  }
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 340px) {
    .rich-list-option {
      flex-basis: 100% !important;
    }
  }
}
@container (max-width: 340px) {
  .rich-list-option {
    flex-basis: 100% !important;
  }
}
.rich-list-option .graphics-container {
  flex-shrink: 0;
  display: inline-block;
  width: 2em;
  height: 2em;
}
.rich-list-option .graphics-container img {
  width: 100%;
  height: 100%;
}
.rich-list-option .graphics-container svg {
  width: 100%;
  height: 100%;
  color: #2b50aa;
  fill: #2b50aa;
}
.rich-list-option .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rich-list-option .label {
  -webkit-hyphens: auto;
          hyphens: auto;
  font-family: "Open Sans";
  color: #0A0908;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: normal;
  text-transform: unset;
  padding-bottom: 0.3em;
}
.rich-list-option .text {
  font-family: "Open Sans";
  color: #505051;
  font-size: 0.9rem;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-transform: unset;
}
.capFlexBasis {
  flex-basis: 50% !important;
}
.rich-list-block.inner-narrow .rich-list-option {
  flex-basis: 50% !important;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .rich-list {
      display: flex;
      flex-direction: row;
      grid-template-columns: 1fr 1fr;
    }
    .rich-list-option {
      display: flex;
      flex-direction: column;
    }
  }
}
@container (max-width: 560px) {
  .rich-list {
    display: flex;
    flex-direction: row;
    grid-template-columns: 1fr 1fr;
  }
  .rich-list-option {
    display: flex;
    flex-direction: column;
  }
}
/** End Rich List **/
/**
 * Progress Dots
 */
.progress-dots {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  margin: 0 auto;
}
.progress-dots i {
  margin: 0 5px;
  color: #2b50aa;
  font-size: 10px;
}
/** End Progress Dots **/
/**
 * Progress Bar
 */
.progress-bar-block {
  width: 100%;
  padding: 0px;
}
.progress-bar-block .progress-bar {
  background: #eaeaeb;
  height: 3px;
  border-radius: 5px;
}
.progress-bar-block .progress-bar-active {
  transition: all, 0.2s;
  left: 0;
  width: 0;
  transition: all 0.2s;
  will-change: width;
  height: 3px;
  background: #2b50aa;
  border-radius: 5px;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .progress-bar-block,
    .progress-bar,
    .progress-bar-block .progress-bar {
      height: 3px;
    }
  }
}
@container (max-width: 560px) {
  .progress-bar-block,
  .progress-bar,
  .progress-bar-block .progress-bar {
    height: 3px;
  }
}
/** End Progress Bar **/
/**
 * Progress
 */
.block[data-blocktype='progress'] {
  width: 100%;
}
.progress-block {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.progress-block > div {
  flex: 1;
  display: flex;
  justify-content: center;
}
.progress-block.progress-items-circle .progress-item {
  margin: 0 6px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
}
.progress-block.progress-items-rect .progress-item {
  margin: 0 2px;
  height: 4px;
  width: 25px;
  border-radius: 2px;
}
.progress-block.progress-items-bar .progress-item {
  flex: 1;
  border-right: none;
  border-left: none;
  height: 3px;
}
.progress-block.progress-items-bar .progress-item:first-child {
  border-radius: 5px 0 0 5px;
}
.progress-block.progress-items-bar .progress-item:last-child {
  border-radius: 0 5px 5px 0;
}
.progress-block.progress-items-bar > div,
.progress-block.progress-items-rect > div {
  flex: 1;
}
.progress-item {
  background: #eaeaeb;
}
.progress-item.filled {
  background: #2b50aa;
}
/** End Progress **/
:root {
  --swiper-pagination-bullet-size: 5px;
  --swiper-pagination-bullet-horizontal-gap: 0;
  --swiper-navigation-sides-offset: 0;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bottom: -30px;
  --swiper-navigation-color: #2b50aa;
  --swiper-pagination-bullet-inactive-color: #eaeaeb;
  --swiper-pagination-color: #2b50aa;
}
.elements-container .block[data-blocktype='photo-carousel'] {
  min-width: 0px;
  max-width: 100%;
  flex: 1 1 0%;
}
.swiper-container {
  position: relative;
}
.swiper-container {
  margin-bottom: calc(-1 * var(--swiper-pagination-bottom));
}
.swiper-slide {
  padding: 0 0px;
}
.swiper-slide img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: '';
}
.swiper-pagination {
  display: flex;
  padding: 10px calc(0px + 10px);
  gap: 5px;
  justify-content: center;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  position: relative;
}
.swiper-button-prev {
  justify-content: start;
}
.swiper-button-prev svg {
  margin-right: 12px;
}
.swiper-button-next {
  justify-content: end;
}
.swiper-button-next svg {
  margin-left: 12px;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  display: none;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  cursor: not-allowed;
  pointer-events: unset;
  opacity: 1;
  color: #bababb;
}
/**
 * Navigation
 */
.navigation {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}
.navigation.maximize a {
  flex: 0;
}
.navigation.maximize > .flex {
  flex: 1;
}
.navigation.maximize > .flex a {
  flex: 1;
}
.navigation.flex {
  display: flex;
  justify-content: space-between;
}
.navigation.center,
.navigation.nav-align-center {
  justify-content: center;
  text-align: center;
}
.navigation.nav-align-left {
  flex-direction: row-reverse;
}
.navigation.nav-align-right {
  flex-direction: row;
}
.navigation a {
  margin-left: 20px;
}
.navigation a:first-child {
  margin-left: 0;
}
.navigation.unflex {
  display: block;
}
.navigation.unflex > .flex {
  display: block;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 370px) {
    .navigation {
      flex-direction: column-reverse;
    }
    .navigation > div {
      flex-direction: column-reverse;
    }
    .navigation a,
    .navigation .button {
      margin: 0;
      width: 100%;
    }
    .navigation a {
      margin-top: 10px;
    }
  }
}
@container (max-width: 370px) {
  .navigation {
    flex-direction: column-reverse;
  }
  .navigation > div {
    flex-direction: column-reverse;
  }
  .navigation a,
  .navigation .button {
    margin: 0;
    width: 100%;
  }
  .navigation a {
    margin-top: 10px;
  }
}
/** End Navigation **/
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  height: 100px;
}
.logo-bar .logo-bar-image-wrapper {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-bar .logo-bar-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
}
.logo-bar .svg-as-img {
  width: 100%;
  height: 100%;
}
.logo-bar picture {
  display: contents;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .logo-bar.wrap-mobile {
      height: auto !important;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      row-gap: 10px;
    }
    .logo-bar.wrap-mobile .logo-bar-image-wrapper {
      display: contents;
      max-height: 50px;
    }
  }
}
@container (max-width: 560px) {
  .logo-bar.wrap-mobile {
    height: auto !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
  }
  .logo-bar.wrap-mobile .logo-bar-image-wrapper {
    display: contents;
    max-height: 50px;
  }
}
/**
 * Image
 */
.image-block {
  display: flex;
  font-size: 0;
  box-shadow: none;
}
.image-block > div {
  height: 100%;
  width: 100%;
}
.image-block img {
  height: 100%;
  width: 100%;
  border-radius: 0px;
}
.image-block.align-left {
  margin-right: auto !important;
}
.image-block.align-center {
  margin-left: auto !important;
  margin-right: auto !important;
}
.image-block.align-right {
  margin-left: auto !important;
}
/** End Image **/
/**
 * Headline
 */
.headline {
  padding: 20px 0;
}
.headline h1,
.headline h2 {
  margin-bottom: 5px;
}
.headline.success {
  background: #30AB66;
  padding: 20px 10px;
  margin: 0 0 20px;
}
.headline.success h1,
.headline.success h2,
.headline.success h3,
.headline.success h4,
.headline.success h5,
.headline.success h6 {
  color: white;
}
.headline.success i {
  font-size: 40px;
  margin-right: 10px;
  color: white;
}
/** End Headline **/
/**
 * Cookie Consent
 */
.cookie-consent {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  max-width: 500px;
  position: fixed;
  margin: 20px;
  left: 0;
  bottom: 0;
  opacity: 0;
  display: none;
  font-size: 1rem;
  background: white;
  z-index: 3;
}
.cookie-consent.show {
  display: block;
  opacity: 1;
  animation: 0.2s ease-in 0s 1 slideInFromBottom;
}
.cookie-consent.hide {
  display: none;
}
.cookie-consent > div {
  display: flex;
  align-items: middle;
}
.cookie-consent p {
  text-align: left;
}
.cookie-consent a:hover {
  text-decoration: underline;
}
.cookie-consent .button-container {
  display: flex;
  align-items: center;
}
.cookie-consent .button {
  margin-left: 10px;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .cookie-consent {
      margin: 0;
      width: 100%;
      max-width: initial;
      border-radius: 0;
    }
    .cookie-consent > div {
      display: block;
    }
    .cookie-consent .button-container {
      justify-content: flex-end;
    }
  }
}
@container (max-width: 560px) {
  .cookie-consent {
    margin: 0;
    width: 100%;
    max-width: initial;
    border-radius: 0;
  }
  .cookie-consent > div {
    display: block;
  }
  .cookie-consent .button-container {
    justify-content: flex-end;
  }
}
/** End Cookie Consent **/
/**
 * Comment
 */
.comment {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.comment .image-container {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-right: 10px;
  background: #f6f6f6;
  flex-shrink: 0;
  overflow: hidden;
}
.comment .image-container img {
  width: 100%;
  height: 100%;
}
.comment .text {
  padding: 15px;
  border-radius: 10px;
  background: #f6f6f6;
  border-bottom-left-radius: 0;
}
/** End Comment **/
.calendly {
  height: 80vh;
}
.calendly--resize {
  height: auto;
  min-height: 350px;
}
/**
 * Button
 */
.button {
  text-align: left;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
  color: white;
  outline: none;
  transition-duration: 0.2s;
  border-radius: 7.5px;
  padding: 1em;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  font-family: "Open Sans";
  font-size: 1rem;
  box-shadow: none;
  /* Colors */
  /* End Colors */
  /* Sizes */
  /* End Sizes */
}
.button .button-label + i {
  margin-right: -5px;
  margin-left: 5px;
}
.button .button-label + .graphic {
  margin-left: 10px;
}
.button .button-label-container svg {
  color: white;
  fill: white;
  flex-shrink: 0;
}
.button .button-label-container .graphic {
  width: 1rem;
  height: 1rem;
}
.button .button-label-container .graphic svg {
  width: inherit;
  height: inherit;
}
.button .button-label-container .graphic img {
  width: 100%;
}
.button.loading,
.button.loading-success,
.button.loading-error {
  cursor: default;
  padding-left: 45px;
}
.button.loading.small,
.button.loading-success.small,
.button.loading-error.small,
.button.loading.large,
.button.loading-success.large,
.button.loading-error.large {
  padding-left: 45px;
}
.button.loading {
  opacity: 0.8;
}
.button.loading .button-loader {
  display: block;
}
.button.loading-success .button-success {
  display: block;
}
.button.loading-error {
  animation: shake 0.5s linear both;
}
.button.loading-error .button-error {
  display: block;
}
.button .button-label {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  text-transform: initial;
  letter-spacing: initial;
  font-weight: 600;
  overflow-x: clip;
  text-overflow: ellipsis;
}
.button.fill {
  background: #2b50aa;
  border-color: #2b50aa;
  color: white;
}
.button.fill svg {
  fill: currentColor;
  color: white;
}
.button.fill:hover,
.button.fill.previewHover {
  color: white;
}
.button.fill:hover svg,
.button.fill.previewHover svg {
  color: white;
}
.button.fill:not(.link):hover,
.button.fill:not(.link).previewHover {
  background: #C53029;
}
.button.fill:not(.ghost):hover,
.button.fill:not(.ghost).previewHover {
  border-color: #C53029;
}
.button.outline,
.button.link {
  background: transparent;
  border-color: #2b50aa;
  color: #2b50aa;
}
.button.outline svg,
.button.link svg {
  fill: currentColor;
  color: #2b50aa;
}
.button.outline:hover,
.button.link:hover,
.button.outline.previewHover,
.button.link.previewHover {
  color: #C53029;
}
.button.outline:hover svg,
.button.link:hover svg,
.button.outline.previewHover svg,
.button.link.previewHover svg {
  color: #C53029;
}
.button.outline:not(.link):hover,
.button.link:not(.link):hover,
.button.outline:not(.link).previewHover,
.button.link:not(.link).previewHover {
  background: rgba(197, 48, 41, 0.05);
}
.button.outline:not(.ghost):hover,
.button.link:not(.ghost):hover,
.button.outline:not(.ghost).previewHover,
.button.link:not(.ghost).previewHover {
  border-color: #C53029;
}
.button.ghost {
  background: rgba(43, 80, 170, 0.05);
  border-color: transparent;
  color: #2b50aa;
}
.button.ghost svg {
  fill: currentColor;
  color: #2b50aa;
}
.button.ghost:hover,
.button.ghost.previewHover {
  color: #C53029;
}
.button.ghost:hover svg,
.button.ghost.previewHover svg {
  color: #C53029;
}
.button.ghost:not(.link):hover,
.button.ghost:not(.link).previewHover {
  background: rgba(197, 48, 41, 0.1);
}
.button.ghost:not(.ghost):hover,
.button.ghost:not(.ghost).previewHover {
  border-color: transparent;
}
.button.link {
  padding: 0;
  border: none;
}
.button.link:hover .button-label {
  text-decoration: underline;
}
.button.custom-2.fill {
  background: #C53029;
  border-color: #C53029;
  color: white;
}
.button.custom-2.fill svg {
  fill: currentColor;
  color: white;
}
.button.custom-2.fill:hover,
.button.custom-2.fill.previewHover {
  color: white;
}
.button.custom-2.fill:hover svg,
.button.custom-2.fill.previewHover svg {
  color: white;
}
.button.custom-2.fill:not(.link):hover,
.button.custom-2.fill:not(.link).previewHover {
  background: #2b50aa;
}
.button.custom-2.fill:not(.ghost):hover,
.button.custom-2.fill:not(.ghost).previewHover {
  border-color: #2b50aa;
}
.button.custom-2.outline,
.button.custom-2.link {
  background: transparent;
  border-color: #C53029;
  color: #C53029;
}
.button.custom-2.outline svg,
.button.custom-2.link svg {
  fill: currentColor;
  color: #C53029;
}
.button.custom-2.outline:hover,
.button.custom-2.link:hover,
.button.custom-2.outline.previewHover,
.button.custom-2.link.previewHover {
  color: #2b50aa;
}
.button.custom-2.outline:hover svg,
.button.custom-2.link:hover svg,
.button.custom-2.outline.previewHover svg,
.button.custom-2.link.previewHover svg {
  color: #2b50aa;
}
.button.custom-2.outline:not(.link):hover,
.button.custom-2.link:not(.link):hover,
.button.custom-2.outline:not(.link).previewHover,
.button.custom-2.link:not(.link).previewHover {
  background: rgba(43, 80, 170, 0.05);
}
.button.custom-2.outline:not(.ghost):hover,
.button.custom-2.link:not(.ghost):hover,
.button.custom-2.outline:not(.ghost).previewHover,
.button.custom-2.link:not(.ghost).previewHover {
  border-color: #2b50aa;
}
.button.custom-2.ghost {
  background: rgba(197, 48, 41, 0.05);
  border-color: transparent;
  color: #C53029;
}
.button.custom-2.ghost svg {
  fill: currentColor;
  color: #C53029;
}
.button.custom-2.ghost:hover,
.button.custom-2.ghost.previewHover {
  color: #2b50aa;
}
.button.custom-2.ghost:hover svg,
.button.custom-2.ghost.previewHover svg {
  color: #2b50aa;
}
.button.custom-2.ghost:not(.link):hover,
.button.custom-2.ghost:not(.link).previewHover {
  background: rgba(43, 80, 170, 0.1);
}
.button.custom-2.ghost:not(.ghost):hover,
.button.custom-2.ghost:not(.ghost).previewHover {
  border-color: transparent;
}
.button.primary.fill {
  background: #2b50aa;
  border-color: #2b50aa;
  color: white;
}
.button.primary.fill svg {
  fill: currentColor;
  color: white;
}
.button.primary.fill:hover,
.button.primary.fill.previewHover {
  color: white;
}
.button.primary.fill:hover svg,
.button.primary.fill.previewHover svg {
  color: white;
}
.button.primary.fill:not(.link):hover,
.button.primary.fill:not(.link).previewHover {
  background: rgba(43, 80, 170, 0.92);
}
.button.primary.fill:not(.ghost):hover,
.button.primary.fill:not(.ghost).previewHover {
  border-color: transparent;
}
.button.primary.outline,
.button.primary.link {
  background: rgba(43, 80, 170, 0);
  border-color: #2b50aa;
  color: #2b50aa;
}
.button.primary.outline svg,
.button.primary.link svg {
  fill: currentColor;
  color: #2b50aa;
}
.button.primary.outline:hover,
.button.primary.link:hover,
.button.primary.outline.previewHover,
.button.primary.link.previewHover {
  color: #2b50aa;
}
.button.primary.outline:hover svg,
.button.primary.link:hover svg,
.button.primary.outline.previewHover svg,
.button.primary.link.previewHover svg {
  color: #2b50aa;
}
.button.primary.outline:not(.link):hover,
.button.primary.link:not(.link):hover,
.button.primary.outline:not(.link).previewHover,
.button.primary.link:not(.link).previewHover {
  background: rgba(43, 80, 170, 0.05);
}
.button.primary.outline:not(.ghost):hover,
.button.primary.link:not(.ghost):hover,
.button.primary.outline:not(.ghost).previewHover,
.button.primary.link:not(.ghost).previewHover {
  border-color: #2b50aa;
}
.button.primary.ghost {
  background: rgba(43, 80, 170, 0.05);
  border-color: transparent;
  color: #2b50aa;
}
.button.primary.ghost svg {
  fill: currentColor;
  color: #2b50aa;
}
.button.primary.ghost:hover,
.button.primary.ghost.previewHover {
  color: #2b50aa;
}
.button.primary.ghost:hover svg,
.button.primary.ghost.previewHover svg {
  color: #2b50aa;
}
.button.primary.ghost:not(.link):hover,
.button.primary.ghost:not(.link).previewHover {
  background: rgba(43, 80, 170, 0.1);
}
.button.primary.ghost:not(.ghost):hover,
.button.primary.ghost:not(.ghost).previewHover {
  border-color: transparent;
}
.button.secondary.fill {
  background: #c53029;
  border-color: #c53029;
  color: white;
}
.button.secondary.fill svg {
  fill: currentColor;
  color: white;
}
.button.secondary.fill:hover,
.button.secondary.fill.previewHover {
  color: white;
}
.button.secondary.fill:hover svg,
.button.secondary.fill.previewHover svg {
  color: white;
}
.button.secondary.fill:not(.link):hover,
.button.secondary.fill:not(.link).previewHover {
  background: rgba(197, 48, 41, 0.92);
}
.button.secondary.fill:not(.ghost):hover,
.button.secondary.fill:not(.ghost).previewHover {
  border-color: transparent;
}
.button.secondary.outline,
.button.secondary.link {
  background: rgba(197, 48, 41, 0);
  border-color: #C53029;
  color: #C53029;
}
.button.secondary.outline svg,
.button.secondary.link svg {
  fill: currentColor;
  color: #C53029;
}
.button.secondary.outline:hover,
.button.secondary.link:hover,
.button.secondary.outline.previewHover,
.button.secondary.link.previewHover {
  color: #C53029;
}
.button.secondary.outline:hover svg,
.button.secondary.link:hover svg,
.button.secondary.outline.previewHover svg,
.button.secondary.link.previewHover svg {
  color: #C53029;
}
.button.secondary.outline:not(.link):hover,
.button.secondary.link:not(.link):hover,
.button.secondary.outline:not(.link).previewHover,
.button.secondary.link:not(.link).previewHover {
  background: rgba(197, 48, 41, 0.05);
}
.button.secondary.outline:not(.ghost):hover,
.button.secondary.link:not(.ghost):hover,
.button.secondary.outline:not(.ghost).previewHover,
.button.secondary.link:not(.ghost).previewHover {
  border-color: #C53029;
}
.button.secondary.ghost {
  background: rgba(197, 48, 41, 0.05);
  border-color: transparent;
  color: #C53029;
}
.button.secondary.ghost svg {
  fill: currentColor;
  color: #C53029;
}
.button.secondary.ghost:hover,
.button.secondary.ghost.previewHover {
  color: #C53029;
}
.button.secondary.ghost:hover svg,
.button.secondary.ghost.previewHover svg {
  color: #C53029;
}
.button.secondary.ghost:not(.link):hover,
.button.secondary.ghost:not(.link).previewHover {
  background: rgba(197, 48, 41, 0.1);
}
.button.secondary.ghost:not(.ghost):hover,
.button.secondary.ghost:not(.ghost).previewHover {
  border-color: transparent;
}
.button.grey.fill {
  background: #bababb;
  border-color: #bababb;
  color: white;
}
.button.grey.fill svg {
  fill: currentColor;
  color: white;
}
.button.grey.fill:hover,
.button.grey.fill.previewHover {
  color: white;
}
.button.grey.fill:hover svg,
.button.grey.fill.previewHover svg {
  color: white;
}
.button.grey.fill:not(.link):hover,
.button.grey.fill:not(.link).previewHover {
  background: rgba(186, 186, 187, 0.92);
}
.button.grey.fill:not(.ghost):hover,
.button.grey.fill:not(.ghost).previewHover {
  border-color: transparent;
}
.button.grey.outline,
.button.grey.link {
  background: rgba(186, 186, 187, 0);
  border-color: #bababb;
  color: #bababb;
}
.button.grey.outline svg,
.button.grey.link svg {
  fill: currentColor;
  color: #bababb;
}
.button.grey.outline:hover,
.button.grey.link:hover,
.button.grey.outline.previewHover,
.button.grey.link.previewHover {
  color: #bababb;
}
.button.grey.outline:hover svg,
.button.grey.link:hover svg,
.button.grey.outline.previewHover svg,
.button.grey.link.previewHover svg {
  color: #bababb;
}
.button.grey.outline:not(.link):hover,
.button.grey.link:not(.link):hover,
.button.grey.outline:not(.link).previewHover,
.button.grey.link:not(.link).previewHover {
  background: rgba(186, 186, 187, 0.05);
}
.button.grey.outline:not(.ghost):hover,
.button.grey.link:not(.ghost):hover,
.button.grey.outline:not(.ghost).previewHover,
.button.grey.link:not(.ghost).previewHover {
  border-color: #bababb;
}
.button.grey.ghost {
  background: rgba(186, 186, 187, 0.05);
  border-color: transparent;
  color: #bababb;
}
.button.grey.ghost svg {
  fill: currentColor;
  color: #bababb;
}
.button.grey.ghost:hover,
.button.grey.ghost.previewHover {
  color: #bababb;
}
.button.grey.ghost:hover svg,
.button.grey.ghost.previewHover svg {
  color: #bababb;
}
.button.grey.ghost:not(.link):hover,
.button.grey.ghost:not(.link).previewHover {
  background: rgba(186, 186, 187, 0.1);
}
.button.grey.ghost:not(.ghost):hover,
.button.grey.ghost:not(.ghost).previewHover {
  border-color: transparent;
}
.button.dark-grey.fill {
  background: #505051;
  border-color: #505051;
  color: white;
}
.button.dark-grey.fill svg {
  fill: currentColor;
  color: white;
}
.button.dark-grey.fill:hover,
.button.dark-grey.fill.previewHover {
  color: white;
}
.button.dark-grey.fill:hover svg,
.button.dark-grey.fill.previewHover svg {
  color: white;
}
.button.dark-grey.fill:not(.link):hover,
.button.dark-grey.fill:not(.link).previewHover {
  background: rgba(80, 80, 81, 0.92);
}
.button.dark-grey.fill:not(.ghost):hover,
.button.dark-grey.fill:not(.ghost).previewHover {
  border-color: transparent;
}
.button.dark-grey.outline,
.button.dark-grey.link {
  background: rgba(80, 80, 81, 0);
  border-color: #505051;
  color: #505051;
}
.button.dark-grey.outline svg,
.button.dark-grey.link svg {
  fill: currentColor;
  color: #505051;
}
.button.dark-grey.outline:hover,
.button.dark-grey.link:hover,
.button.dark-grey.outline.previewHover,
.button.dark-grey.link.previewHover {
  color: #505051;
}
.button.dark-grey.outline:hover svg,
.button.dark-grey.link:hover svg,
.button.dark-grey.outline.previewHover svg,
.button.dark-grey.link.previewHover svg {
  color: #505051;
}
.button.dark-grey.outline:not(.link):hover,
.button.dark-grey.link:not(.link):hover,
.button.dark-grey.outline:not(.link).previewHover,
.button.dark-grey.link:not(.link).previewHover {
  background: rgba(80, 80, 81, 0.05);
}
.button.dark-grey.outline:not(.ghost):hover,
.button.dark-grey.link:not(.ghost):hover,
.button.dark-grey.outline:not(.ghost).previewHover,
.button.dark-grey.link:not(.ghost).previewHover {
  border-color: #505051;
}
.button.dark-grey.ghost {
  background: rgba(80, 80, 81, 0.05);
  border-color: transparent;
  color: #505051;
}
.button.dark-grey.ghost svg {
  fill: currentColor;
  color: #505051;
}
.button.dark-grey.ghost:hover,
.button.dark-grey.ghost.previewHover {
  color: #505051;
}
.button.dark-grey.ghost:hover svg,
.button.dark-grey.ghost.previewHover svg {
  color: #505051;
}
.button.dark-grey.ghost:not(.link):hover,
.button.dark-grey.ghost:not(.link).previewHover {
  background: rgba(80, 80, 81, 0.1);
}
.button.dark-grey.ghost:not(.ghost):hover,
.button.dark-grey.ghost:not(.ghost).previewHover {
  border-color: transparent;
}
.button.black.fill {
  background: #000000;
  border-color: #000000;
  color: white;
}
.button.black.fill svg {
  fill: currentColor;
  color: white;
}
.button.black.fill:hover,
.button.black.fill.previewHover {
  color: white;
}
.button.black.fill:hover svg,
.button.black.fill.previewHover svg {
  color: white;
}
.button.black.fill:not(.link):hover,
.button.black.fill:not(.link).previewHover {
  background: rgba(0, 0, 0, 0.92);
}
.button.black.fill:not(.ghost):hover,
.button.black.fill:not(.ghost).previewHover {
  border-color: transparent;
}
.button.black.outline,
.button.black.link {
  background: rgba(0, 0, 0, 0);
  border-color: black;
  color: black;
}
.button.black.outline svg,
.button.black.link svg {
  fill: currentColor;
  color: black;
}
.button.black.outline:hover,
.button.black.link:hover,
.button.black.outline.previewHover,
.button.black.link.previewHover {
  color: black;
}
.button.black.outline:hover svg,
.button.black.link:hover svg,
.button.black.outline.previewHover svg,
.button.black.link.previewHover svg {
  color: black;
}
.button.black.outline:not(.link):hover,
.button.black.link:not(.link):hover,
.button.black.outline:not(.link).previewHover,
.button.black.link:not(.link).previewHover {
  background: rgba(0, 0, 0, 0.05);
}
.button.black.outline:not(.ghost):hover,
.button.black.link:not(.ghost):hover,
.button.black.outline:not(.ghost).previewHover,
.button.black.link:not(.ghost).previewHover {
  border-color: black;
}
.button.black.ghost {
  background: rgba(0, 0, 0, 0.05);
  border-color: transparent;
  color: black;
}
.button.black.ghost svg {
  fill: currentColor;
  color: black;
}
.button.black.ghost:hover,
.button.black.ghost.previewHover {
  color: black;
}
.button.black.ghost:hover svg,
.button.black.ghost.previewHover svg {
  color: black;
}
.button.black.ghost:not(.link):hover,
.button.black.ghost:not(.link).previewHover {
  background: rgba(0, 0, 0, 0.1);
}
.button.black.ghost:not(.ghost):hover,
.button.black.ghost:not(.ghost).previewHover {
  border-color: transparent;
}
.button.green.fill {
  background: #30ab66;
  border-color: #30ab66;
  color: white;
}
.button.green.fill svg {
  fill: currentColor;
  color: white;
}
.button.green.fill:hover,
.button.green.fill.previewHover {
  color: white;
}
.button.green.fill:hover svg,
.button.green.fill.previewHover svg {
  color: white;
}
.button.green.fill:not(.link):hover,
.button.green.fill:not(.link).previewHover {
  background: rgba(48, 171, 102, 0.92);
}
.button.green.fill:not(.ghost):hover,
.button.green.fill:not(.ghost).previewHover {
  border-color: transparent;
}
.button.green.outline,
.button.green.link {
  background: rgba(48, 171, 102, 0);
  border-color: #30AB66;
  color: #30AB66;
}
.button.green.outline svg,
.button.green.link svg {
  fill: currentColor;
  color: #30AB66;
}
.button.green.outline:hover,
.button.green.link:hover,
.button.green.outline.previewHover,
.button.green.link.previewHover {
  color: #30AB66;
}
.button.green.outline:hover svg,
.button.green.link:hover svg,
.button.green.outline.previewHover svg,
.button.green.link.previewHover svg {
  color: #30AB66;
}
.button.green.outline:not(.link):hover,
.button.green.link:not(.link):hover,
.button.green.outline:not(.link).previewHover,
.button.green.link:not(.link).previewHover {
  background: rgba(48, 171, 102, 0.05);
}
.button.green.outline:not(.ghost):hover,
.button.green.link:not(.ghost):hover,
.button.green.outline:not(.ghost).previewHover,
.button.green.link:not(.ghost).previewHover {
  border-color: #30AB66;
}
.button.green.ghost {
  background: rgba(48, 171, 102, 0.05);
  border-color: transparent;
  color: #30AB66;
}
.button.green.ghost svg {
  fill: currentColor;
  color: #30AB66;
}
.button.green.ghost:hover,
.button.green.ghost.previewHover {
  color: #30AB66;
}
.button.green.ghost:hover svg,
.button.green.ghost.previewHover svg {
  color: #30AB66;
}
.button.green.ghost:not(.link):hover,
.button.green.ghost:not(.link).previewHover {
  background: rgba(48, 171, 102, 0.1);
}
.button.green.ghost:not(.ghost):hover,
.button.green.ghost:not(.ghost).previewHover {
  border-color: transparent;
}
.button.red.fill {
  background: #d0011b;
  border-color: #d0011b;
  color: white;
}
.button.red.fill svg {
  fill: currentColor;
  color: white;
}
.button.red.fill:hover,
.button.red.fill.previewHover {
  color: white;
}
.button.red.fill:hover svg,
.button.red.fill.previewHover svg {
  color: white;
}
.button.red.fill:not(.link):hover,
.button.red.fill:not(.link).previewHover {
  background: rgba(208, 1, 27, 0.92);
}
.button.red.fill:not(.ghost):hover,
.button.red.fill:not(.ghost).previewHover {
  border-color: transparent;
}
.button.red.outline,
.button.red.link {
  background: rgba(208, 1, 27, 0);
  border-color: #d0011b;
  color: #d0011b;
}
.button.red.outline svg,
.button.red.link svg {
  fill: currentColor;
  color: #d0011b;
}
.button.red.outline:hover,
.button.red.link:hover,
.button.red.outline.previewHover,
.button.red.link.previewHover {
  color: #d0011b;
}
.button.red.outline:hover svg,
.button.red.link:hover svg,
.button.red.outline.previewHover svg,
.button.red.link.previewHover svg {
  color: #d0011b;
}
.button.red.outline:not(.link):hover,
.button.red.link:not(.link):hover,
.button.red.outline:not(.link).previewHover,
.button.red.link:not(.link).previewHover {
  background: rgba(208, 1, 27, 0.05);
}
.button.red.outline:not(.ghost):hover,
.button.red.link:not(.ghost):hover,
.button.red.outline:not(.ghost).previewHover,
.button.red.link:not(.ghost).previewHover {
  border-color: #d0011b;
}
.button.red.ghost {
  background: rgba(208, 1, 27, 0.05);
  border-color: transparent;
  color: #d0011b;
}
.button.red.ghost svg {
  fill: currentColor;
  color: #d0011b;
}
.button.red.ghost:hover,
.button.red.ghost.previewHover {
  color: #d0011b;
}
.button.red.ghost:hover svg,
.button.red.ghost.previewHover svg {
  color: #d0011b;
}
.button.red.ghost:not(.link):hover,
.button.red.ghost:not(.link).previewHover {
  background: rgba(208, 1, 27, 0.1);
}
.button.red.ghost:not(.ghost):hover,
.button.red.ghost:not(.ghost).previewHover {
  border-color: transparent;
}
.button.blue.fill {
  background: #2b50aa;
  border-color: #2b50aa;
  color: white;
}
.button.blue.fill svg {
  fill: currentColor;
  color: white;
}
.button.blue.fill:hover,
.button.blue.fill.previewHover {
  color: white;
}
.button.blue.fill:hover svg,
.button.blue.fill.previewHover svg {
  color: white;
}
.button.blue.fill:not(.link):hover,
.button.blue.fill:not(.link).previewHover {
  background: rgba(43, 80, 170, 0.92);
}
.button.blue.fill:not(.ghost):hover,
.button.blue.fill:not(.ghost).previewHover {
  border-color: transparent;
}
.button.blue.outline,
.button.blue.link {
  background: rgba(43, 80, 170, 0);
  border-color: #2b50aa;
  color: #2b50aa;
}
.button.blue.outline svg,
.button.blue.link svg {
  fill: currentColor;
  color: #2b50aa;
}
.button.blue.outline:hover,
.button.blue.link:hover,
.button.blue.outline.previewHover,
.button.blue.link.previewHover {
  color: #2b50aa;
}
.button.blue.outline:hover svg,
.button.blue.link:hover svg,
.button.blue.outline.previewHover svg,
.button.blue.link.previewHover svg {
  color: #2b50aa;
}
.button.blue.outline:not(.link):hover,
.button.blue.link:not(.link):hover,
.button.blue.outline:not(.link).previewHover,
.button.blue.link:not(.link).previewHover {
  background: rgba(43, 80, 170, 0.05);
}
.button.blue.outline:not(.ghost):hover,
.button.blue.link:not(.ghost):hover,
.button.blue.outline:not(.ghost).previewHover,
.button.blue.link:not(.ghost).previewHover {
  border-color: #2b50aa;
}
.button.blue.ghost {
  background: rgba(43, 80, 170, 0.05);
  border-color: transparent;
  color: #2b50aa;
}
.button.blue.ghost svg {
  fill: currentColor;
  color: #2b50aa;
}
.button.blue.ghost:hover,
.button.blue.ghost.previewHover {
  color: #2b50aa;
}
.button.blue.ghost:hover svg,
.button.blue.ghost.previewHover svg {
  color: #2b50aa;
}
.button.blue.ghost:not(.link):hover,
.button.blue.ghost:not(.link).previewHover {
  background: rgba(43, 80, 170, 0.1);
}
.button.blue.ghost:not(.ghost):hover,
.button.blue.ghost:not(.ghost).previewHover {
  border-color: transparent;
}
.button.orange.fill {
  background: #ff8c42;
  border-color: #ff8c42;
  color: white;
}
.button.orange.fill svg {
  fill: currentColor;
  color: white;
}
.button.orange.fill:hover,
.button.orange.fill.previewHover {
  color: white;
}
.button.orange.fill:hover svg,
.button.orange.fill.previewHover svg {
  color: white;
}
.button.orange.fill:not(.link):hover,
.button.orange.fill:not(.link).previewHover {
  background: rgba(255, 140, 66, 0.92);
}
.button.orange.fill:not(.ghost):hover,
.button.orange.fill:not(.ghost).previewHover {
  border-color: transparent;
}
.button.orange.outline,
.button.orange.link {
  background: rgba(255, 140, 66, 0);
  border-color: #FF8C42;
  color: #FF8C42;
}
.button.orange.outline svg,
.button.orange.link svg {
  fill: currentColor;
  color: #FF8C42;
}
.button.orange.outline:hover,
.button.orange.link:hover,
.button.orange.outline.previewHover,
.button.orange.link.previewHover {
  color: #FF8C42;
}
.button.orange.outline:hover svg,
.button.orange.link:hover svg,
.button.orange.outline.previewHover svg,
.button.orange.link.previewHover svg {
  color: #FF8C42;
}
.button.orange.outline:not(.link):hover,
.button.orange.link:not(.link):hover,
.button.orange.outline:not(.link).previewHover,
.button.orange.link:not(.link).previewHover {
  background: rgba(255, 140, 66, 0.05);
}
.button.orange.outline:not(.ghost):hover,
.button.orange.link:not(.ghost):hover,
.button.orange.outline:not(.ghost).previewHover,
.button.orange.link:not(.ghost).previewHover {
  border-color: #FF8C42;
}
.button.orange.ghost {
  background: rgba(255, 140, 66, 0.05);
  border-color: transparent;
  color: #FF8C42;
}
.button.orange.ghost svg {
  fill: currentColor;
  color: #FF8C42;
}
.button.orange.ghost:hover,
.button.orange.ghost.previewHover {
  color: #FF8C42;
}
.button.orange.ghost:hover svg,
.button.orange.ghost.previewHover svg {
  color: #FF8C42;
}
.button.orange.ghost:not(.link):hover,
.button.orange.ghost:not(.link).previewHover {
  background: rgba(255, 140, 66, 0.1);
}
.button.orange.ghost:not(.ghost):hover,
.button.orange.ghost:not(.ghost).previewHover {
  border-color: transparent;
}
.button.large {
  padding: 0.85em 1em;
  font-size: 1.25rem;
}
.button.large .button-label,
.button.large i {
  font-size: 1.25rem;
}
.button.large .button-label-container .graphic {
  width: 1.25rem;
  height: 1.25rem;
}
.button.small {
  padding: 0.5em 0.6em;
  font-size: 0.85rem;
}
.button.small .button-label,
.button.small i {
  font-size: 0.85rem;
}
.button.small .button-label-container .graphic {
  width: 0.85rem;
  height: 0.85rem;
}
.button.reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.button.reverse .button-icon {
  margin-right: 5px;
  margin-left: -5px;
}
.button.hero {
  display: inline-flex;
  width: auto !important;
  font-size: 1.25rem;
}
.button.hero i {
  font-size: 25px;
}
.button.simple {
  background: transparent;
  color: #bababb;
  border-color: transparent;
}
.button.simple .button-label {
  color: #bababb;
}
.button.simple:hover,
.button.simple.previewHover {
  background: transparent;
}
.button-label-container {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  max-width: 100%;
}
.button-label-container.reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.button-label-container.reverse .button-label + i {
  margin-right: 5px;
  margin-left: -5px;
}
.button-label-container.reverse .button-label + .graphic {
  margin-right: 10px;
  margin-left: 0;
}
.button-indicator {
  display: none;
  line-height: 0;
  left: 1.25em;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.button-indicator svg {
  height: 1.25em;
  width: 1.25em;
}
.button-indicator.button-loader svg {
  height: 1.5em;
  width: 1.5em;
}
.button:hover:not(.link):not(:focus):not(:focus-within),
.button.previewHover:not(.link):not(:focus):not(:focus-within) {
  transform: translateY(-2px);
  box-shadow: none;
}
.button:focus:not(.link),
.button:focus-within:not(.link) {
  transform: none;
  box-shadow: 0 0 0 1.5px #ffffff, 0 0 0 3px #005fcc;
}
/** End Button **/
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .button.loading,
    .button.loading-success,
    .button.loading-error {
      cursor: default;
      padding-left: 35px;
    }
    .button.loading.small,
    .button.loading-success.small,
    .button.loading-error.small,
    .button.loading.large,
    .button.loading-success.large,
    .button.loading-error.large {
      padding-left: 35px;
    }
  }
}
@container (max-width: 560px) {
  .button.loading,
  .button.loading-success,
  .button.loading-error {
    cursor: default;
    padding-left: 35px;
  }
  .button.loading.small,
  .button.loading-success.small,
  .button.loading-error.small,
  .button.loading.large,
  .button.loading-success.large,
  .button.loading-error.large {
    padding-left: 35px;
  }
}
.accordion {
  overflow: hidden;
  --animation-duration: 200ms;
  font-size: 1rem;
  border-radius: 0px;
  border-width: 0px;
  border-style: solid;
  border-color: #eaeaeb;
}
.accordion .accordion-option {
  position: relative;
  background: transparent;
  border-radius: 0px;
  border-width: 0px;
  border-style: solid;
  border-color: #eaeaeb;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 1px;
  border-left-width: 0px;
  margin-bottom: 0px;
  padding-top: 15px;
  padding-right: 0px;
  padding-bottom: 15px;
  padding-left: 0px;
  transition: all 0.1s;
}
.accordion .accordion-option:last-child {
  margin-bottom: 0;
  border-bottom-width: 0px;
}
.accordion .accordion-option:hover {
  background: transparent;
}
.accordion .accordion-option-header {
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  justify-content: space-between;
  flex-direction: row;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  font-family: "Alata";
  font-size: 1.25em;
  color: black;
  background-color: transparent;
  border-bottom-width: 0px;
  border-bottom-style: solid;
  border-bottom-color: #eaeaeb;
}
.accordion .accordion-option-header .accordion-option-label p {
  all: revert;
  margin: 0;
}
.accordion .accordion-option-toggler {
  width: 20px;
  height: 20px;
  color: black;
}
.accordion .accordion-option-toggler svg {
  width: inherit;
  height: inherit;
  color: inherit;
  transition: transform var(--animation-duration);
}
.accordion .accordion-option.open {
  background: transparent;
}
.accordion .accordion-option.open .accordion-option-toggler svg {
  transform: rotate(180deg);
}
.accordion .accordion-option.open .accordion-option-toggler svg.plus {
  transform: rotate(45deg);
}
.accordion .accordion-option-content-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--animation-duration);
}
.accordion .accordion-option-content {
  font-family: "Open Sans";
  font-size: 1em;
  color: #505051;
  padding-top: 5px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  border-width: 0px;
  border-style: solid;
  border-color: #eaeaeb;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
}
.accordion .accordion-option-content p {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.accordion .accordion-option-content p:first-child {
  margin-top: 0;
}
.accordion .accordion-option-content p:last-child {
  margin-bottom: 0;
}
* {
  -webkit-tap-highlight-color: transparent;
}
/**
 * IE10+
 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ CSS here */
  .multiple-choice .picture.option-content {
    display: block;
  }
  .multiple-choice .picture.option-content .image-container {
    height: 100px;
  }
  .range-slider.with-image > div > div:first-child {
    max-width: 150px;
  }
  section {
    padding-bottom: 60px;
  }
  .icon-rating.scale .scale-option {
    padding-right: 40px;
  }
  footer {
    position: fixed;
    bottom: 0;
    background: white;
  }
}
/** End IE10+ **/
body.no-gap-support .rich-list-options {
  margin-top: -1em;
  margin-bottom: -1em;
  margin-left: 0px;
  margin-right: 0px;
}
body.no-gap-support .rich-list-options > * {
  margin-top: 1em;
  margin-bottom: 1em;
}
body.no-gap-support .rich-list-options > * {
  margin-left: 0px;
  margin-right: 0px;
}
body.no-gap-support .rich-list-option {
  margin-top: -7.5px;
  margin-bottom: -7.5px;
  margin-left: -7.5px;
  margin-right: -7.5px;
}
body.no-gap-support .rich-list-option > * {
  margin-top: 7.5px;
  margin-bottom: 7.5px;
}
body.no-gap-support .rich-list-option > * {
  margin-left: 7.5px;
  margin-right: 7.5px;
}
body.no-gap-support ul.link-list {
  margin-top: -3.5px;
  margin-bottom: -3.5px;
  margin-left: -3.5px;
  margin-right: -3.5px;
}
body.no-gap-support ul.link-list > * {
  margin-top: 3.5px;
  margin-bottom: 3.5px;
}
body.no-gap-support ul.link-list > * {
  margin-left: 3.5px;
  margin-right: 3.5px;
}
body.no-gap-support ul.check-list {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
}
body.no-gap-support ul.check-list > * {
  margin-top: 0px;
  margin-bottom: 0px;
}
body.no-gap-support ul.check-list > * {
  margin-left: 0px;
  margin-right: 0px;
}
body.no-gap-support .steps-list {
  margin-top: -5px;
  margin-bottom: -5px;
}
body.no-gap-support .steps-list > * {
  margin-top: 5px;
  margin-bottom: 5px;
}
.address-input-map {
  height: 0px;
  transition: all 0.5s ease;
}
.address-input-map--show {
  height: 220px;
  margin-bottom: 16px;
}
.autocomplete-list.powered-by-google::after {
  content: '';
  background: url('data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDI0MCAyOCIgd2lkdGg9IjI0MCIgaGVpZ2h0PSIyOCI+Cgk8ZGVmcz4KCQk8aW1hZ2UgIHdpZHRoPSIyNDAiIGhlaWdodD0iMjgiIGlkPSJpbWcxIiBocmVmPSJkYXRhOmltYWdlL3BuZztiYXNlNjQsaVZCT1J3MEtHZ29BQUFBTlNVaEVVZ0FBQVBBQUFBQWNDQVlBQUFCZjB6SnJBQUFBQVhOU1IwSUIyY2tzZndBQUQ1TkpSRUZVZUp6dFhYMXdWTlVWUDVwc0lDcW9DQWpJbHdxaStNSEg3aVlCb2J0dk55QXFLSUlCVkJCRUZDaldJc1VLZ2sxbGR4TlNhLzlwWjZxdGJmOXgxSEdtTTIwZEZaSWdLdFcyMmpwcWRhd2ZvMU8vU0lJZnNCOUJrcGp0K2UyK3UrL3M0NzIzdTVGWVRQYk0vQ2JKZmZmZWQrOTc1M2ZQdWVlZTNSQVZwU2k5TERXMXliSkFPTEZBQzhWL3JvVmpUL2hEOGVjRG9YaXpGb245UVl0RTExYzNKRVl4cUM5ajJzT0x4bmtlVzFRTlRIOWtjU1dEamdXT1NTZEZGR0VGWDIxeVlDQWMzOFprYlF0RTRrazcrRVBSTGkwU2YzaHVxSDBNZy9vaVBJOHUzdXg1YkhFeWhVY1gvWk5CeHdMSHBKTWlpakFqdUNOMk1WdmF0NTJJZXhTUkkvRkRnVWhpSVlQNkdvb0U3aWRndVpqUm9PUGtQTDFVVmIraWQ1emd3a1FMSFpxWkptTVdRZDhMaEdNaHVOTEJ1dllaV2lnV0NFUmlHNWprallGUXROdXd4ckVYYXg1UGxqQ29MNkZJNEg0QytvNFRPRmgvK0J4Mm1iOFFoSXhyNGNTdHRiWEpFeGxraFdCZHdzdEVmcE1KL3ZmcW5WK2N5cUMraGlLQit3bm91MHpnWlBJRTNzdnVNOGdiUCtnTEp6d015b1daRFFjRzlWWHlGZ25jajBEZllRS3plM3lOZEp1RGRmSDVEQ29pL3UwVG1PVkVSc2szZUorbGpCT09pV1o4YzhGWXZzbGNlcXQvUEI4WFpUK25ZMFZnMWZlSlBSaFhqNFJKdTBlUkY4ZEZET3JyY0QrWWREbHREeFI2amNBc2x6Q1dNUHo2UzUvSzJNQ28xNVZpQytOeVJubU85NGUyRnpGdVpvVDB0bUhHV3NaMHNsYWtLL1Y3MjFtT2FmcjFKVGIzSHlpdWp6RmRHOFJZd05oS2hvTGZwZC9UaWhnbG9xOWhqTUdNeFl6dGpIc1oxNWpxRDlHdjM2UDN2Wk94bVRGSEg1ZVRuRXZwNXhUUjI5WXlhdlErTDZLZUU5akxPSld4U0l5cmpuRXI0M3hUbTZGaXZ1TWQraDRqNnRrSzNGOGNCMlVzY0RoK09ZTjZBNTlxMDhhMWFwNzdXelQzMjR5dWxxQzdzeVhnZmFzdDZMM3Y4N21lTVF4eVF2ZWVnZU02bTEzM2R6YVh2SDJrMmRWMXBOSFZ5YisvMWRua3VxOTcxOEF4REhKQzljNzJzZjVJL0plQmNQU2oxRnhEMFE2Y2JjUGowRUxSN3pHeEh3RDg0Y1RWREFMeUlmQit6WHRoYTlEelVJdm0vYkFsNk8xdTA3d0pudGV6YlpyN3VpVHppMEZtUUM3WFgvUTZ4clZDR2N3QUVjNjBlWDlZNlpjN3RHM1FsY2hNUW5VL0VNdktXbThXN2QwVzF5OGhnenluaVBLeGpKODRqQVhLZlphcHIxTEtKc0k5cGpaeWtabEV4aUpsQlN4NloxaU1GM09jNjlBT0MwVlEvRjBvZ2RGM3JVUC9DOGg0emxoUTc5TExiM0xvVzczWHJVNERDSVppZnNOOWpuYmlESmhCeHhxdEFlK3F0cUM3bmNtYXRBUXIvWUdnOXdZR1dZRUp1NG9KMjg0RVRscUJyeWU2bWx3M01NZ0syQ1lnTUdkN0hCYUsvenZqaFVSaVlRWUJ1UWpNWTc4ZEM1SHR2QUxlUDMxWVZWWE9JQW1JSXJDeXVIaXBIa3FURmF2dkZaUmV4WlZpbm1UeC9wWUpKVmxOYVFXSEZadkl1RjVjVzBQWmx2aDhjVzJZcWM4ektWdjVWbG5jZDRsK2JhMG9nd1ZTU3J5TjBzUkQzeU1aczB6WDVJSWlDUXp5N3RUSGZpbWxTVldtMXh0QmFjOEM5ZTZrdE1jQ2F6WktyNmV1YmRiN2xGSWw3ckdSMGdzUTJtTEJ1VXEvWjcyb1V5aUI2L1UrNEMyTTAvdUdSYjlkMVBHSmRqUEpXQUN0RnB6QllqeXpuUWJBU25xOW9ialJEeG5rQkVTY2M0R3RXSU4wVjBGTXFkUnNwVHBhTmU5TExRSDN5MGNwZjdWM0NZTWtRTXdzc2phNk92am5TNHlYMDFiWXVOYlY2RnJDSUlsQUpLWmxlUm04VU9IWWkzOS96aCtKSnN4a3pwZkFiVUhQYWhOaFkxeTJtK2Ywbkp4WGE5RDdxTmtTUXhTQmdVMWs3YXBPMUY4eTZseGh1bmFPYUM5WGVDaytVV2VLS0llQzM2dVhmOC9VcGxvdi96RVpycUIwVFhFZlpXVXZGZVUxZWhtdW5XWXhGcEJaV2M4NXBySElCZU5paTdhUU5XU1ExK3BaalNmaldWV0pjdFRkUWNhQ1l5WTNaSXBwRElVU0dQQllYTWYyNEdiOU90ejJRWG81RnFXZjZ1WHpMZHFwZDREbjViZ3QwT3JpS3d3ckZQdUFRWTdJSjdHRHljRWdZUCtjR2NOWm1hTVpaZFk4VDdUNnZDTVlCQnlvbmphcUxlRFpKY2o5NWNHNVZVTVlCSFR2cHVGTTBxaXd0RThrOTlJSUJnSGRqZVdqdUd5WElQZVgzYnRvQ0lPQVZEb281cFVaWCt5RnJNeXgyb05EMkwzL1k2RUUvc1RuSHBvbXJFSFNMMzFUVG1NUXdHWG44YncvVnRjUEJEd0xHS1FBa1FRKzIrRWRMU1pqdnlhdHFMS3dkNUY5SUFka3U0ME1WMXJLZFhTMEZZVnNKSU5JeW1wT0ZkZkhpbkdmcXBkQklkVytVcExhTEZlVFlTV1ZTQUxmYU5QdWRNcE5jTWhLaXpsVmtyTzFVM0lUOVp6QWF4enFZREZUMWxRdWx2UEljTi9MUkRuZTVUWXlGbVpIOFlmamx3bkxkRGhYTWtaKzJWbXh2ekZnK2FESTJ6UGsxTHl2SkdzbWx6Rkk0Z09mYnlDNzEyOElrbTltRU5EUlZMcmRzTEFscnlRZnB6SUdaV0V2RGV4c0xIbEQxZXZZVTdxWlFRQjdCRFhDVFc0RFlSa2trU1o1WVM0MGozT1RJTzgva2pVMUpRd0NRT1NVYTgxN1l1RksvNVZCQ2hCRllMaU5UbEhqaVVKUlJvanl1L1d5SzNPODQ5bGtXRktycUN1VVMxbTBvWG9aM0ZIc3I5VmVlWVZvcC9hU0cwVFoyV0tNc053YmJiQk4xRk5LS3drc0xhZVVxYUxPanh6NlY1N0JEdEYycVY3MkE1dStsWGlvNXdTdXpGRnZIUjI5UU1GTlZsc2syVjRGMDdEZ0RNazFnTm5oK01nczYxbVhxR1NRSFh5UjJFVldZRXUrMlFpRXhmN01BSG1JOTdiN0RDWDJMR09RRmRKNzVNeCt1SW1CdHNTRTNKZHhqNXRkeXhoa0JleVJoWlZ1T3BJdUF3bC9LeUxzRFhaUjZVQWtzYllRQXJPbjhLUlljRmFrRjV5S0tUeVBCN0dmbDY0MWJ4ZisyeHIwYkpWdU5FUVJPSmRpblNFVVphSW9WeTkvUm83MkY0cjIwdlVFZ2RTK1ViblhmdjN2NWZyZms4aHcveFRoZmtoSDcrbFVVS3NRS0RkYkVuaTZ6UnhtVStIOUs2OUV1YkRMeVZuT0ZXMExKZkNrSFBWVXpPQTJVN25hZHR4Qnh1S3F0Z3E1eHB1UlFEajZxbER5QjNweUxNTnU2QytzQ01CdTVFY1pSZlpObThBZ0szd1dxSmhzRU5qOVBvT0Fqc2JTanhReEQrOGRNSUZCVnZpcXVXeXlzTlR2TXdqZ3VlMFc0N3BlamNzTVh6aFJWWmdGTmp3RzN2YzI4TThYamc3TXVaK0c2eXl0c3dKRUVYaFRqdmN6aWd4RkdTZksxUjdXbjZQOU5OSGV2UDlib1pjdjAvOVdRUmZsTXBlSSs0Q2tnMFZmMGgyZExNcXhOeCtSQnhUQkpJR24yY3hoQmhsV2FXU2UvU3RDS0xkNnRVM2ZTaTZnbmhQWXlhMkhxT2RzM3E2TUVIM0FpeGtxL2g2ZjV4aGdLVzh6M014b2gyNVZLVjlVM2Q5ZHprVFpuMGtFQ2NYOERFUzRqd2NDUHlrU1ZGYmFKV3p3OW1GMnp3a3NyYTM3Y3h5TE9jMFZnQ2dDUXltdElzeEtadGpVMjZDWE94MUZRQmFSc1ZjMml5STM5cnJLMHB1RFZzcDYzRURweURKKzMyanFSeXFlK2R3emwrUkRZR2tkemNkUXVVVHROVEZIcDZRUFZhOG5CTFlLUkNsQjNHSzdYbStoeFhYcEljd253MUxubll5VCt2aGdWcUFuL3A5WmtlZ3dCdVVEV0cxRCtlUHZJRFdUZ1JSTkpyRG4rVXdneCtHWXlCVFJiV3hMbGJFTDNlaDZQdU5DT3h3VEhXbHlyUmFCckVZR0FkSXo0SVhxTjhxMU40UEh2YVVRQXZPKzl5OVp4T1Y5TUdPbDFaR1JGU0NLd0U3N1dMaXQ2c3pRdkhyN3lTRDJXSnYySUtVS0xsa3BHVnhxNVlvcksyRmVFSlIxaGJ1dGxLM2FWQWZLcHM2T3NkK3p5MExDL2psQTJXZkgrUkFZZFZSQWJUbFpLemZLY0NRMGk3SzNDbU5FLzdOcytqK1pzczl4Q3lVd3ZKVEJOblVxUmIwSkZ0ZlAwNjhoRnFHaTVWTXM2am5LVVVjdG9maTdyUHpUblJJejV0Y21UMkxsLzMxMkFDdDZiUURIVFRwNGYzdTNjRFZmZTJmZWhBRU1rb0RTNndrZGloQ2JGSUU3bWt2dnpsald4cExYdXAraUFRekt3b3RVbmtyb1VFR3NwdEpOREFUQUNBa2FNa2luN1RnMGlVRVNXS3o4b1hoTGdRUmVMd0pVYlRJQ3JZQTlMK2FDQkJZR1NVQWtnUUVvdHJRUWlQQ3VGZGZQTWIweldFbVY5SUNmRTAzWFI1TkJmaWlHbllLdE5vM0RhN29POHBpVEo2d1NTMlNnQ1JGdVNTSVFXdTVqNVFLUUQ0RWg4a2dNbHN3Y3VaWFBVODdoQkRGSGtLU0NzaGNBTEhMeXZMWW5CRmI3Mk9HbSt5SUpSaTJnNjhoKzRibEQ5TE9WZXBoK0dnZ24xcGsvc004L0gvR0g0MWY2YXFOREdXbHJIWWxkQW92bGowUS96anArQ2NjZU11K05QNTAzZFZpTDVqNGtTTHo3TTEvRmFBWUIrMzJWNDF1RG5tZWtDeXJKd0FRZGRxVFpkU2hqWFp0Y3U3djNsbzltRU1EdTgzaTJ0TStJQU5ibnliMTBtanBtZ2pmQWk5R3ptVG1GbzUvZ281RThqMUtrVXNKMVRuMmlxc0JqcEFNelp3NWlON3BGQk43MlNhSmlEa3p5QnpMbnc5WGVXK1RaTmtRcEhFaW1pSWdvS3BSdFBSbVdFWmhqOGI0Z0lIVlkxSU1WWEVYR1VaQnlpU2M3dlBjS1VSZlczRXA1WlZJSXptSHRGSEd4cUlkeDNVSnBpeTZqejkrbjdMMTR2Z1RHSXJCUzFJWFZnMGVBNXlXenYxWlpqQS9ucjFzb215U3I5TEdvSTU1MTRucWhCRjVQeHZQYm9QY3Q3d2NYK25TSGZ0eWlydmxjdmlCSm5RdUhvdTNXMlVyRzUzOHRqbzUrWjNjRXhhUmRtcFhJb2JtN1dQbGZaYVYvdlVYemZpM09nTHRiQWhVTEdTVEJMdkpTVTlaVlYyZFR5YXRzZFYvbjM3OFdybk4zWjNQWlFnWkphS0gyY1hLUG5pSnlKSHJFYnA1NUozSm83aXV5eG8vZk1hZWc5MS84ODZ0c0Y5dHpKNE1VSUlyQU9CYkJ5cTJpdXhKUTBseEhGTmdUcXJOZU0wRGs4VG5hdzUxVkNSRG1zMklsTXRGL25rTmZJTTVzTWdKZkVyZ0hqcVhLVEczeUpUQUVsZ2x1dUZ5MDVFSTFuK3l0RjBoOGswVTdFQmhKTXZKOHUxQUN3dzJ1cHV4RlZ3SFAxSW04RUhWU0FFK25QRWZkbkFJM2t4WDhxZnlTTnVJdFRzRWhoVlEybHVhTjI2WWN3a29GS21vWVpBWHNmNW1zY2R0VXlrWlhyR3RQV1EyRHJLQ0ZEcDdMMXZjbHl6bWt2OFRnOFVJSm5EcE9Dbml2eWZZd3NvR3NNOTVHYkRRZm0wRVVnYmZvengzS2owZ2tYRVc0MDRqNkRzanpuYUV0b3JNSWVFR1JrS28zbXZJUGhNQzloc3R1cHp3bCtuWEFsVWQvSUNtVVVxTzA5NEFaVzJWbnFiRVAwcEZQMzZTUEU4OEhLWlNZTDRoL2ltTUxReEQ1bmFXUEM5NkhTa2FSYzh6M2swUnEzTXFqd0JnOGV0OVl5TEM0NW5vSHVLNENrbGZsZWQrOEJLNHk3M0hyVTRrWitMQS9MSERhYXIwSGhkZkM4UnNSZ1daUVB2Z3NVSFVXamx4YWcrNDNvZGdwNVVZME4rQ3BiN3RzK2tnR09hRzd1ZnlzemtaWEErK0YzMFE2WlNxbE1wM0FVZC85Tkkxa2tCUGdNbXQxaWF0UyszWjJxN0ZJOFJ6dThmMHNQa0pHNGxIR0lDQ2ZEek8wQkNyUFpLc2F4aDRmbGpmdFlYamZaZnlxcmJweUlvUE1nSmdKWEpUK0tTb2xObGVtV1A4VzNndmp5d2NZWklXc2MreHdmTFVpY0c4QlVpUndVU0Fxd0xZaVY4WCtLUGk0WkRBVTI0UXY2b1BGdGZvTWNEcWFybi9Fa0ZHOUkzb0JnM29Ua0NLQml5S1RkSnp5NGZ1dDRMdXJzejV4eE82ei9BcWdPYld4NGZnU0EzSFU5TEk4eCs0MVVKSEFSVEdpKzBpblBWNitSZVc0RTNhUDE1Z2kwQWw4S2dsa1JlYVpQRGJqYTVjeXFMY0J3V0VTamtFY3YzR2hLSDFXUUZqa2ZpUG9OZkwvUEpialh2QlZ1SktzRmtkazdleHFMMVVwb0wyTmIrVW1SUlRScDFCMzZEeC9KUFpyTFJKN1A1MmtFajNNNUgwRC96b0dYN2ZEb0c4TC93T3l5Z29DVlI2ZllnQUFBQUJKUlU1RXJrSmdnZz09Ii8+Cgk8L2RlZnM+Cgk8dXNlIGlkPSJCYWNrZ3JvdW5kIiBocmVmPSIjaW1nMSIgeD0iMCIgeT0iMCIvPgo8L3N2Zz4=') right / 120px 14px no-repeat;
  padding: 1px;
  height: 18px;
  display: block;
}
/**
 * Upload
 */
.upload-button {
  position: relative;
  padding: 20px 0;
  background: transparent;
  border-width: 2px;
  border-style: dashed;
  border-color: #bababb;
  box-shadow: none;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.upload-button + .upload-elements-list .upload-element:first-child {
  margin-top: 10px;
}
@keyframes pulseBlue {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: #f2f4fa;
  }
  100% {
    background-color: transparent;
  }
}
body.dragging .upload-button {
  padding: 50px 0;
  border-color: #2b50aa;
  animation-name: pulseBlue;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
.upload-block input[type='file'] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.upload-block input[type='file']:focus + .upload-button,
.upload-block:not(.error) .upload-button:hover,
.upload-block:not(.error) .upload-button.highlight {
  animation-name: none !important;
  border-color: #2b50aa;
  background: #f2f4fa;
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 7px 10px -3px, rgba(0, 0, 0, 0.025) 0px 4px 6px -2px;
}
.upload-block input[type='file']:focus + .upload-button .upload-button-label,
.upload-block:not(.error) .upload-button:hover .upload-button-label,
.upload-block:not(.error) .upload-button.highlight .upload-button-label,
.upload-block input[type='file']:focus + .upload-button .upload-button-icon,
.upload-block:not(.error) .upload-button:hover .upload-button-icon,
.upload-block:not(.error) .upload-button.highlight .upload-button-icon {
  color: #0A0908;
}
.upload-block input[type='file']:focus + .upload-button .upload-button-supports,
.upload-block:not(.error) .upload-button:hover .upload-button-supports,
.upload-block:not(.error) .upload-button.highlight .upload-button-supports {
  color: #505051;
}
.upload-button-label,
.upload-button-icon {
  transition: color 0.1s;
  z-index: 1;
}
.upload-button-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #0A0908;
}
.upload-button-icon {
  display: none;
  margin-left: 5px;
  margin-bottom: 10px;
}
.upload-button-icon svg {
  width: 60px;
  height: 60px;
}
.upload-button-supports {
  font-weight: normal;
  font-size: 0.8rem;
  color: #505051;
  padding: 10px 0 0;
}
.upload-element {
  display: flex;
  position: relative;
  background: #fafafb;
  border-width: 0px;
  border-style: solid;
  border-color: #eaeaeb;
  color: #0A0908;
  border-radius: 5px;
  padding: 15px 20px 15px 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.upload-element:last-child {
  margin-bottom: 0;
}
.upload-element > div:last-child {
  flex: 1;
}
.upload-element img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}
.upload-element.upload-success .upload-element-progress-bar {
  background: #30AB66;
  animation-name: none;
}
.upload-element.upload-success .upload-element-action-remove,
.upload-element.upload-success .upload-element-action-download {
  display: block;
}
.upload-element.upload-uploading .upload-element-action-cancel,
.upload-element.upload-waiting .upload-element-action-cancel,
.upload-element.upload-post .upload-element-action-cancel {
  display: block;
}
@keyframes pulsePost {
  0% {
    background-color: #2b50aa;
  }
  50% {
    background-color: #8399cd;
  }
  100% {
    background-color: #2b50aa;
  }
}
.upload-element.upload-post .upload-element-progress-bar {
  animation-name: pulsePost;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
.upload-element.upload-error {
  animation: shake 0.5s linear both;
}
.upload-element.upload-error .upload-element-progress {
  background: #d0011b;
}
.upload-element.upload-error .upload-element-progress-bar {
  background: #d0011b;
}
.upload-element.upload-error .upload-element-action-remove,
.upload-element.upload-error .upload-element-action-download {
  display: block;
}
.upload-element .upload-element-success,
.upload-element .upload-element-error {
  display: none;
}
.upload-element.shake-shake-shake {
  animation: shake 0.5s linear both;
}
.upload-element-inner {
  flex: 1;
  overflow: hidden;
}
.upload-element-action {
  display: none;
  position: relative;
  cursor: pointer;
  margin-left: 5px;
  border-radius: 50%;
  padding-top: 2px;
  text-align: center;
  transition: all 0.1s;
}
.upload-element-action i {
  font-size: 18px;
  transition: all 0.1s;
  color: #bababb;
}
.upload-element-action:hover i {
  color: #505051;
}
.upload-element-action:hover .tooltip {
  display: block;
}
.upload-element-action .tooltip {
  right: 28px;
  top: -2px;
  font-size: 0.8rem;
  padding: 3px 8px;
  opacity: 0.9;
}
.upload-element-content {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.upload-element-filename {
  flex: 1;
  line-height: 2;
  color: #0A0908;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.upload-element-percentage-display {
  font-size: 0.7rem;
  font-weight: normal;
  color: #505051;
  line-height: 1.5;
}
.upload-element-progress {
  margin: 2px 0 3px;
  height: 3px;
  border-radius: 3px;
  width: 100%;
  background: #eaeaeb;
}
.upload-element-progress-bar {
  transition: all 0.2s;
  height: 100%;
  width: 0;
  background: #2b50aa;
}
.upload-block.error .upload-button {
  animation: shake 0.5s linear both;
  transform: translate3d(0, 0, 0);
  border-color: #d0011b;
  background: #fdf2f3;
}
.upload-block label {
  padding-bottom: 3px;
}
/** End Upload **/
.block[data-blocktype='video'] {
  width: 100%;
}
.video-placeholder {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #eaeaeb;
}
.video-placeholder span {
  text-align: center;
  line-height: 1.3;
  font-size: 14px;
  color: #505051;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-placeholder svg {
  color: inherit;
}
/**
 * Steps
 */
.steps-list {
  display: flex;
  row-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  overflow: unset;
  border-radius: 0;
  border-width: 0px;
  border-style: solid;
  border-color: #eaeaeb;
}
.steps-option {
  position: relative;
  display: flex;
  min-width: 60px;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px;
  background: none;
  border-radius: 0px;
  border-style: solid;
  border-color: #eaeaeb;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
}
.steps-option:not(:last-child) {
  margin-right: 0px;
}
.steps-option .label {
  display: inline-block;
  white-space: nowrap;
  padding: 0;
  border-width: 0px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 50%;
  background: none;
  margin-top: 5px;
  margin-left: 0;
  color: #bababb;
  font-family: "Open Sans";
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: unset;
}
.steps-option .text {
  white-space: nowrap;
  margin-top: 5px;
  color: #bababb;
  font-family: "Open Sans";
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: unset;
}
.steps-option .graphics-wrapper {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0;
  background: #ffffff;
  border-width: 0px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 50%;
}
.steps-option .graphics-container {
  position: relative;
  height: 1.5em;
  width: 1.5em;
}
.steps-option .graphics-container .index {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  font-weight: 600;
  color: #bababb;
}
.steps-option .graphics-container svg,
.steps-option .graphics-container img {
  height: 100%;
  width: 100%;
  color: #bababb;
  fill: #bababb;
  filter: none;
  transform: none;
}
.steps-option .graphics-container .emoji {
  font-size: 1.5em;
  transform: none;
}
.steps-option:before,
.steps-option:after {
  content: '';
  z-index: 0;
  position: absolute;
  display: block;
  top: 21%;
  width: 50%;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #eaeaeb;
}
.steps-option:first-child:before {
  display: none;
}
.steps-option:last-child:after {
  display: none;
}
.steps-option:before {
  left: 0;
  right: unset;
}
.steps-option:after {
  left: unset;
  right: 0;
}
.steps-option.done {
  background: none;
}
.steps-option.done .label {
  color: #2b50aa;
  font-weight: normal;
}
.steps-option.done .text {
  color: #bababb;
  font-weight: normal;
}
.steps-option.done .graphics-wrapper {
  background: #ffffff;
  border-width: 0px;
  border-style: solid;
  border-color: #eaeaeb;
}
.steps-option.done .graphics-container svg {
  color: #2b50aa;
  fill: #2b50aa;
  filter: none;
  transform: none;
}
.steps-option.done .graphics-container .index {
  color: #2b50aa;
}
.steps-option.done:before,
.steps-option.done:after {
  border-bottom-color: #2b50aa;
}
.steps-option.current {
  background: none;
}
.steps-option.current .label {
  color: #2b50aa;
  font-weight: bold;
}
.steps-option.current .text {
  color: #bababb;
  font-weight: normal;
}
.steps-option.current .graphics-wrapper {
  background: #ffffff;
  border-width: 0px;
  border-style: solid;
  border-color: #eaeaeb;
}
.steps-option.current .graphics-container svg {
  color: #2b50aa;
  fill: #2b50aa;
  filter: none;
  transform: none;
}
.steps-option.current .graphics-container .index {
  color: #2b50aa;
}
.steps-option.current:before {
  border-bottom-color: #2b50aa;
}
.steps-option.current:after {
  border-bottom-color: #eaeaeb;
}
/** End Steps **/
.payment-message-container {
  border: 2px solid #30ab66;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: medium;
  margin-top: 10px;
}
.payment-message-container.error {
  border: 2px solid #d0011b;
  display: flex;
}
.payment-message-container.error svg {
  flex-shrink: 0;
}
.icon-spinner {
  height: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/**
 * Textarea
 */
textarea {
  border: none;
  background: none;
  width: 100%;
  transition: all 0.05s;
  height: 80px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  resize: none;
  outline: none;
  font-size: 1.2rem;
  color: #0A0908;
  font-weight: 300;
  font-family: "Open Sans";
  line-height: 1.2;
  box-shadow: none;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  border-top: 1px solid #eaeaeb;
  border-right: 1px solid #eaeaeb;
  border-bottom: 1px solid #eaeaeb;
  border-left: 1px solid #eaeaeb;
  border-color: #eaeaeb;
  padding-top: 0.8em;
  padding-right: 0.8em;
  padding-bottom: 0.8em;
  padding-left: 0.8em;
  background: transparent;
}
textarea:focus {
  border-color: #bababb;
  background: rgba(0, 0, 0, 0.025);
  box-shadow: none;
}
textarea:hover:not(:focus) {
  border-color: #eaeaeb;
  background: transparent;
  box-shadow: none;
}
textarea::-webkit-input-placeholder {
  line-height: normal;
  color: #bababb;
}
textarea:-moz-placeholder {
  line-height: normal;
  color: #bababb;
}
textarea::-moz-placeholder {
  line-height: normal;
  color: #bababb;
}
textarea:-ms-input-placeholder {
  line-height: normal;
  color: #bababb;
}
textarea[disabled],
textarea[readonly] {
  cursor: not-allowed;
  font-style: italic;
  color: #bababb;
}
.textarea-block label {
  padding-bottom: 5px;
}
section.navigated .textarea-block .textarea.error,
.textarea-block.show-error-instantly .textarea.error {
  animation: shake 0.5s linear both;
  transform: translate3d(0, 0, 0);
}
section.navigated .textarea-block .textarea.error .error-box,
.textarea-block.show-error-instantly .textarea.error .error-box {
  display: flex;
  align-items: center;
}
section.navigated .textarea-block .textarea.error textarea,
.textarea-block.show-error-instantly .textarea.error textarea {
  border-width: 1px;
  border-style: solid;
  border-color: #d0011b;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}
.textarea .error-box {
  display: none;
  border: 1px solid #d0011b;
  border-top: none;
  border-right: 1px solid #d0011b;
  border-bottom: 1px solid #d0011b;
  border-left: 1px solid #d0011b;
  border-color: #d0011b;
  border-radius: 0 0 5px 5px;
  font-size: 0.9rem;
  background: #fceff1;
  color: #d0011b;
  padding: 10px;
}
.textarea .error-box svg {
  padding-right: 5px;
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  color: #e46b7a;
}
/** End Textarea **/
.signature-block-content {
  cursor: pointer;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: black;
}
.signature-block-content.error {
  animation: shake 0.5s linear both;
  transform: translate3d(0, 0, 0);
  border-color: #d0011b;
  border-style: dashed;
  border-radius: 3px;
  background: #fdf2f3;
}
.signed-input[data-signed] + .signature-button-sign {
  visibility: hidden;
  position: absolute;
  z-index: -1;
}
.signature-button-sign {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: 'Caveat', serif;
  padding-bottom: 5px;
  font-size: 28px;
}
.signature-preview-image {
  max-height: 60px;
  max-width: 100%;
}
.signature-preview-image-wrapper {
  font-size: 0;
}
.signature-block label {
  padding-bottom: 10px;
}
.signature-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.1s ease-out;
  box-shadow: 1.7px 1.7px 2.7px rgba(0, 0, 0, 0.009), 4.3px 4.3px 6.9px rgba(0, 0, 0, 0.013), 8.9px 8.9px 14.2px rgba(0, 0, 0, 0.017), 18.3px 18.3px 29.2px rgba(0, 0, 0, 0.021), 50px 50px 80px rgba(0, 0, 0, 0.03);
}
.signature-overlay .signature-popup {
  transition: transform 0.1s ease-out;
  transform: scale(0.8, 0.8);
}
.signature-overlay.show {
  opacity: 1;
}
.signature-overlay.show .signature-popup {
  transform: scale(1, 1);
}
.signature-popup {
  display: flex;
  flex-direction: column;
  background: white;
  width: calc(100vw - 20px);
  height: calc(100vh - 140px);
  max-width: 1000px;
  max-height: 600px;
  margin: 0 20px;
  border-radius: 10px;
  overflow: hidden;
}
.signature-toolbar {
  display: flex;
  flex-direction: row;
  padding: 10px;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.8);
}
.signature-toolbar .icon {
  height: 26px;
  width: 26px;
  opacity: 0.7;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.signature-toolbar .icon:hover {
  opacity: 1;
  cursor: pointer;
}
.signature-toolbar .icon svg {
  color: white;
  height: 100%;
  width: 100%;
}
.signature-canvas-wrapper {
  position: relative;
  flex-grow: 1;
  background-image: url('https://assets.prd.heyflow.com/builder/blocks/signature/grid.svg');
  background-repeat: repeat;
  background-position: center;
  overflow: hidden;
  background-size: 100px;
}
.signature-canvas-wrapper canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}
/**
 * Select
 */
.select {
  position: relative;
}
.select:before {
  content: '';
  background: #fafafb;
  border-radius: 5px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.select.error {
  animation: shake 0.5s linear both;
  transform: translate3d(0, 0, 0);
}
.select.error select {
  border-color: #d0011b;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.5;
  background: #fafafb;
  font-family: "Open Sans";
  padding: 0.6em 0.8em;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 5px;
  font-size: 1rem;
  box-shadow: none;
}
.select-arrow {
  pointer-events: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.select-arrow svg {
  height: 1rem;
  width: 1rem;
  color: #505051;
}
/** End Select **/
/**
 * Separator
 */
.separator-block .show-line {
  width: 100vw;
  max-width: 100%;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #eaeaeb;
}
/** End Separator **/
/**
 * Scale
 */
.scale-block {
  justify-content: space-between;
  overflow: initial;
}
.scale-block.center-labels .labels-container {
  justify-content: center;
}
.scale-block.center-labels .labels-container label {
  text-align: center !important;
  width: auto;
  margin: 0 10px;
}
.scale-block.fit-width {
  width: -moz-fit-content;
  width: fit-content;
}
.scale-block .labels-container {
  display: flex;
  justify-content: space-between;
}
.scale-block .labels-container label {
  padding: 0 5px 5px;
  text-align: center;
  flex: 1;
}
.scale-block .labels-container label:last-child {
  text-align: right;
  padding-right: 0;
}
.scale-block .labels-container label:first-child {
  text-align: left;
  padding-left: 0;
}
.scale {
  display: flex;
  margin-right: -5px;
}
.scale .scale-option {
  cursor: pointer;
  position: relative;
  flex: 1;
  padding-right: 5px;
}
.scale .scale-option label {
  cursor: pointer;
}
.scale .scale-option .scale-option-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 5px;
  background: transparent;
  transition: all 0.05s;
}
.scale .scale-option .label {
  color: #0A0908;
  font-size: 1rem;
  font-weight: normal;
  text-transform: unset;
  letter-spacing: normal;
}
.scale .scale-option:first-child .tooltip {
  left: 0;
  transform: none;
}
.scale .scale-option:first-child .tooltip:after {
  left: 20px;
}
.scale .scale-option:last-child .tooltip {
  left: auto;
  right: 0;
  transform: none;
}
.scale .scale-option:last-child .tooltip:after {
  left: auto;
  right: 15px;
}
.scale .scale-option .tooltip.bottom {
  top: 60px;
}
.scale.icon-rating {
  justify-content: center;
}
.scale.icon-rating svg {
  height: 36px;
  width: 36px;
  color: #eaeaeb;
  fill: currentColor;
}
.scale.icon-rating .emoji {
  font-size: 36px;
  line-height: 1;
  filter: grayscale(1);
}
.scale.icon-rating i {
  font-size: 42px;
  color: #eaeaeb;
}
.scale.icon-rating .scale-option:hover i,
.scale.icon-rating .scale-option:hover svg,
.scale.icon-rating .scale-option:hover .emoji {
  transform: scale(1.1);
}
.scale.icon-rating .scale-option:hover .emoji {
  filter: grayscale(0);
}
.scale.icon-rating .scale-option {
  flex: 0;
}
.scale.icon-rating .scale-option i,
.scale.icon-rating .scale-option svg,
.scale.icon-rating .scale-option .emoji {
  transition: all 0.05s;
}
.scale.icon-rating .scale-option.active i {
  color: #505051;
}
.scale.icon-rating .scale-option.active i,
.scale.icon-rating .scale-option.active svg {
  transform: scale(1.1);
}
.scale.icon-rating .scale-option.active .emoji {
  transform: scale(1.1);
  filter: grayscale(0);
}
.scale input[type='radio'] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.scale .scale-option:hover .scale-option-content {
  opacity: 1;
  background: #2b50aa;
  border-color: #2b50aa;
  transform: none;
}
.scale .scale-option:hover .scale-option-content .label {
  color: #ffffff;
}
.scale .scale-option:hover .tooltip {
  display: block;
}
.scale-option.active .scale-option-content {
  opacity: 1;
  background: #2b50aa;
  border-color: #2b50aa;
  transform: none;
}
.scale-option.active .scale-option-content .label {
  color: #ffffff;
}
.scale-option input[type='radio']:focus {
  outline: none;
}
.scale-option input[type='radio']:focus-visible + .scale-option-content {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #005fcc;
}
.scale-option input[type='radio']:focus-visible + .icon-option-content {
  border-radius: 3px;
  box-shadow: 0 0 0 2px #005fcc;
}
/** End Scale **/
.phone-number-block .select-wrapper {
  height: 100%;
}
.phone-number-block .phone-input {
  border-radius: 0 5px 5px 0;
}
.phone-number-block .input-wrapper {
  display: flex;
  position: relative;
}
.phone-number-block .relative {
  position: relative;
}
.phone-number-block .input.error {
  z-index: 2;
}
.phone-number-block .input-box.with-dropdown-visible .input.error {
  z-index: 3;
}
.phone-number-block .country-calling-code {
  color: #bababb;
}
.phone-number-block .select-custom {
  display: none;
}
.phone-number-block .select-native {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
.phone-number-block .input-box.has-focus .input-decorator {
  z-index: 1;
}
.phone-number-block .select-custom {
  border-right: 1px solid;
  border-radius: 5px 0 0 5px;
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  gap: 10%;
}
.phone-number-block .select-custom::after {
  content: '▾';
  margin-top: -0.5rem;
  margin-left: 3px;
}
.phone-number-block .select-custom:focus-visible {
  border-color: #2b50aa;
  background: rgba(0, 0, 0, 0.025);
  outline: #2b50aa auto 1px;
}
.phone-number-block .input-wrapper .select-custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 350px;
  overflow: auto;
  z-index: 3;
  display: none;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 5px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 3px;
}
.phone-number-block .input-wrapper .select-custom-options.select-custom-options_is_visible {
  display: block;
  padding: 0 10px 10px;
}
.phone-number-block .input-wrapper .select-custom-options .select-custom-option {
  display: block;
  position: relative;
  line-height: initial;
  text-align: left;
  width: 100%;
  cursor: pointer;
  padding: 8px;
  font-size: 1em;
  border-radius: 3px;
}
.phone-number-block .input-wrapper .select-custom-options .select-custom-option:first-of-type {
  margin-top: 10px;
}
.phone-number-block .input-wrapper .select-custom-options .select-custom-option:hover {
  background-color: #fafafb;
}
.phone-number-block .input-wrapper .select-custom-options .select-custom.isActive .select-custom-options {
  display: block;
}
.phone-number-block .input-wrapper .select-custom-options .select-custom-search-box {
  line-height: 1.5;
  padding: 10px 0 0;
  position: sticky;
  top: 0;
  z-index: 1;
}
.phone-number-block .input-wrapper .select-custom-options .select-custom-search-box input.select-custom-search {
  outline: 1px solid transparent;
  background: white;
  font-size: 1em;
  padding: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 5px;
}
.phone-number-block .input-wrapper .select-custom-options .select-custom-search-box input.select-custom-search:focus-visible {
  border-color: #2b50aa;
  outline-color: #2b50aa;
}
@media only screen and (max-width: 560px) and (hover: none) and (pointer: coarse) {
  .phone-number-block .select-custom-options {
    top: 0;
    width: 100vw;
    height: 100vh;
    max-height: none;
    border: none;
    margin-top: 0;
    box-shadow: none;
  }
}
@media only screen and (max-width: 560px) and (hover: none) and (pointer: coarse) {
  .block[data-blocktype='phone-number'] {
    position: static;
  }
}
.custom-select-mixin .select-custom {
  border-right: 1px solid;
  border-radius: 5px 0 0 5px;
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  gap: 10%;
}
.custom-select-mixin .select-custom::after {
  content: '▾';
  margin-top: -0.5rem;
  margin-left: 3px;
}
.custom-select-mixin .select-custom:focus-visible {
  border-color: #2b50aa;
  background: rgba(0, 0, 0, 0.025);
  outline: #2b50aa auto 1px;
}
.custom-select-mixin .input-wrapper .select-custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 350px;
  overflow: auto;
  z-index: 3;
  display: none;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 5px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 3px;
}
.custom-select-mixin .input-wrapper .select-custom-options.select-custom-options_is_visible {
  display: block;
  padding: 0 10px 10px;
}
.custom-select-mixin .input-wrapper .select-custom-options .select-custom-option {
  display: block;
  position: relative;
  line-height: initial;
  text-align: left;
  width: 100%;
  cursor: pointer;
  padding: 8px;
  font-size: 1em;
  border-radius: 3px;
}
.custom-select-mixin .input-wrapper .select-custom-options .select-custom-option:first-of-type {
  margin-top: 10px;
}
.custom-select-mixin .input-wrapper .select-custom-options .select-custom-option:hover {
  background-color: #fafafb;
}
.custom-select-mixin .input-wrapper .select-custom-options .select-custom.isActive .select-custom-options {
  display: block;
}
.custom-select-mixin .input-wrapper .select-custom-options .select-custom-search-box {
  line-height: 1.5;
  padding: 10px 0 0;
  position: sticky;
  top: 0;
  z-index: 1;
}
.custom-select-mixin .input-wrapper .select-custom-options .select-custom-search-box input.select-custom-search {
  outline: 1px solid transparent;
  background: white;
  font-size: 1em;
  padding: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 5px;
}
.custom-select-mixin .input-wrapper .select-custom-options .select-custom-search-box input.select-custom-search:focus-visible {
  border-color: #2b50aa;
  outline-color: #2b50aa;
}
hey-phone-number .input-floating-label {
  opacity: 0;
  transition: all 0.2s ease-out, left 0ms;
}
hey-phone-number .input-box.with-floating-label input::-webkit-input-placeholder {
  color: #bababb;
}
hey-phone-number .input-box.with-floating-label input:-moz-placeholder {
  color: #bababb;
}
hey-phone-number .input-box.with-floating-label input::-moz-placeholder {
  color: #bababb;
}
hey-phone-number .input-box.with-floating-label input:-ms-input-placeholder {
  color: #bababb;
}
hey-phone-number .input-box.with-floating-label input:focus + .input-floating-label,
hey-phone-number .input-box.with-floating-label.has-value .input-floating-label,
hey-phone-number .input-box.with-floating-label.has-focus .input-floating-label {
  opacity: 1;
}
hey-phone-number .input-box.with-floating-label:not(.floating-label-inline) .input-floating-label {
  top: -0.9rem;
  padding-left: 0;
  font-size: 0.9rem;
}
hey-phone-number .input-box.with-floating-label:not(.floating-label-inline) .input-floating-label label {
  font-size: 0.9rem;
}
hey-phone-number .input-box.with-floating-label:not(.floating-label-inline).has-value .input-floating-label,
hey-phone-number .input-box.with-floating-label:not(.floating-label-inline).has-focus .input-floating-label {
  top: -0.9rem;
  padding-left: 0;
  font-size: 0.9rem;
}
hey-phone-number .input-box.with-floating-label:not(.floating-label-inline).has-value .input-floating-label label,
hey-phone-number .input-box.with-floating-label:not(.floating-label-inline).has-focus .input-floating-label label {
  font-size: 0.9rem;
}
hey-phone-number .input-box.with-floating-label.floating-label-inline input {
  padding-bottom: 1.3em;
  padding-top: 1.3em;
  padding-left: 0.6rem;
  font-weight: normal;
}
hey-phone-number .input-box.with-floating-label.floating-label-inline input::-webkit-input-placeholder {
  font-size: 1.125rem;
  color: #bababb;
  opacity: 1;
}
hey-phone-number .input-box.with-floating-label.floating-label-inline input:-moz-placeholder {
  font-size: 1.125rem;
  color: #bababb;
  opacity: 1;
}
hey-phone-number .input-box.with-floating-label.floating-label-inline input::-moz-placeholder {
  font-size: 1.125rem;
  color: #bababb;
  opacity: 1;
}
hey-phone-number .input-box.with-floating-label.floating-label-inline input:-ms-input-placeholder {
  font-size: 1.125rem;
  color: #bababb;
  opacity: 1;
}
hey-phone-number .input-box.with-floating-label.floating-label-inline input:focus,
hey-phone-number .input-box.with-floating-label.floating-label-inline.has-value input,
hey-phone-number .input-box.with-floating-label.floating-label-inline.has-focus input {
  padding-bottom: 0.7em;
  padding-top: 1.9em;
  padding-left: 0.6em;
  font-weight: 600;
  color: #0A0908;
}
hey-phone-number .input-box.with-floating-label.floating-label-inline .input-floating-label {
  top: 0;
  transform: translateX(0);
  font-size: 0.9em;
  padding-top: 0.7em;
  line-height: 1.3;
}
hey-phone-number .input .status-indicator .icon-spinner {
  height: 100%;
}
/**
 * List
 */
ul.check-list {
  display: flex;
  flex-direction: column;
  row-gap: 0px;
  -moz-column-gap: 0px;
       column-gap: 0px;
  justify-content: normal;
}
ul.check-list li {
  align-items: center;
  display: flex;
  flex: 1;
  padding: 0 0 10px 0;
}
ul.check-list .text {
  padding: 0 0 0 7.5px;
  font-size: 1rem;
  line-height: 1;
  color: #0A0908;
  font-weight: normal;
}
ul.check-list .text p {
  all: revert;
  margin: 0;
}
ul.check-list i {
  font-size: 1.2rem;
}
ul.check-list svg {
  width: 1.2rem;
  height: 1.2rem;
}
ul.check-list .check-list-svg-container {
  display: flex;
  align-items: center;
}
ul.check-list .check-list-svg-container svg {
  fill: currentColor;
}
ul.check-list i,
ul.check-list .check-list-svg-container {
  color: #30AB66;
  fill: #30AB66;
}
ul.check-list i.primary,
ul.check-list .check-list-svg-container.primary {
  color: #2b50aa;
  fill: currentColor;
}
ul.check-list i.secondary,
ul.check-list .check-list-svg-container.secondary {
  color: #C53029;
  fill: currentColor;
}
ul.check-list i.green,
ul.check-list .check-list-svg-container.green {
  color: #30AB66;
  fill: currentColor;
}
ul.check-list i.red,
ul.check-list .check-list-svg-container.red {
  color: #d0011b;
  fill: currentColor;
}
ul.check-list i.orange,
ul.check-list .check-list-svg-container.orange {
  color: #FF8C42;
  fill: currentColor;
}
ul.check-list i.grey,
ul.check-list .check-list-svg-container.grey {
  color: #bababb;
  fill: currentColor;
}
ul.check-list i.blue,
ul.check-list .check-list-svg-container.blue {
  color: #2b50aa;
  fill: currentColor;
}
/** End List **/
/**
 * Multiple Choice
 *
 * Options:
 * - @mc-picture-active-color @mc-option-active-color
 * - @p-font-size
 * - @option-counter-background
 * - @border-radius
 * - @default-block-padding
 * - @red
 * - @mc-picture-option-min-width
 * - @mc-picture-option-max-width
 * - @picture-label-background
 * - @font-color
 */
.multiple-choice-block {
  overflow: initial;
}
.multiple-choice-label {
  display: flex;
  justify-content: center;
}
.multiple-choice-label.align-left .block-label,
.multiple-choice-label.align-right .block-label,
.multiple-choice-label.align-center .block-label {
  width: 100%;
}
.option-content {
  position: relative;
  cursor: pointer;
  display: flex;
  transition: all;
  transition-duration: 0.1s;
  box-shadow: none;
  background: #ffffff;
  padding: 1em;
  border-width: 2px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 5px;
  flex-direction: row-reverse;
  justify-content: unset;
  align-items: center;
}
.option-content:not(.picture) .selector-container {
  margin-left: 8px;
}
.option-content:not(.picture) .image-container {
  margin-left: 8px;
}
.option-content .selector-container {
  display: block;
  font-size: 0;
  line-height: 0;
}
.option-content.reverse {
  flex-direction: row-reverse;
  justify-content: space-between;
}
.option-content.reverse > div:first-child {
  margin-right: 0;
}
.option-content .image-container {
  line-height: 0;
  overflow: hidden;
  height: 24px;
}
.option-content .image-container img {
  height: 100%;
}
.option-content .image-container i {
  font-size: 1.66rem;
  color: #505051;
}
.option-content .image-container svg {
  overflow: unset;
  transition-property: all;
  transition-timing-function: ease-in-out;
  width: 24px;
  height: 24px;
  transition-duration: 0.1s;
  color: #505051;
  fill: #505051;
}
.option-content .image-container .emoji {
  line-height: 1;
  font-size: 24px;
}
.option-content .label {
  cursor: pointer;
  transition: color;
  transition-duration: 0.1s;
  color: #0A0908;
  font-family: "Open Sans";
  font-size: 1rem;
  line-height: 1.1;
  font-weight: normal;
  text-transform: unset;
  letter-spacing: normal;
}
.option-content .text {
  line-height: 1.25;
  margin-top: 2px;
  color: #505051;
  font-size: 0.85rem;
  font-weight: normal;
  transition: color;
  transition-duration: 0.1s;
}
.option-content .input-container {
  flex: 1;
  z-index: 2;
}
.option-content .checkbox-selector {
  display: block;
}
.option-content .checkbox {
  transition: all;
  transition-duration: 0.1s;
  border-color: #eaeaeb;
  border-radius: 3px;
  background: transparent;
  height: 20px;
  width: 20px;
  transition: background 0.1s;
  position: relative;
}
.option-content .checkbox svg {
  transition: all;
  transition-duration: 0.1s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 18px;
  width: 18px;
  color: transparent;
}
.option-content .radio-selector {
  display: block;
}
.option-content .radio {
  transition: all;
  transition-duration: 0.1s;
  box-shadow: 0 0 0 1px #eaeaeb;
  border-width: 2.5px;
  height: 20px;
  width: 20px;
  background: transparent;
  border-color: transparent;
}
.option-counter {
  display: none;
  position: absolute;
  right: 6px;
  top: 6px;
  line-height: 1;
  padding: 5px 5px;
  background: #fafafb;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}
.multiple-choice-option.static .option-counter {
  display: none;
}
.multiple-choice-option .option-content,
.scale-option .option-content {
  height: 100%;
}
.multiple-choice-option.error,
.scale-option.error {
  animation: shake 0.5s linear both;
  transform: translate3d(0, 0, 0);
}
.multiple-choice-option.error .checkbox,
.scale-option.error .checkbox {
  border-color: #d0011b;
}
.multiple-choice-option.error .radio,
.scale-option.error .radio {
  box-shadow: 0 0 0 1px #d0011b;
}
.multiple-choice-block.inner-narrow .mc-smart-flex .multiple-choice-option-container {
  flex-basis: 50% !important;
}
.multiple-choice {
  position: relative;
  /* End mc-collapse */
}
.multiple-choice.mc-grid .multiple-choice-option,
.multiple-choice.mc-flex .multiple-choice-option,
.multiple-choice.mc-list .multiple-choice-option,
.multiple-choice.mc-smart-flex .multiple-choice-option {
  padding-bottom: 10px;
}
.multiple-choice.mc-flex .multiple-choice-inner {
  flex: 1;
}
.multiple-choice.mc-grid,
.multiple-choice.mc-flex,
.multiple-choice.mc-smart-flex {
  align-items: normal;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-bottom: -10px;
}
.multiple-choice.mc-grid .multiple-choice-option,
.multiple-choice.mc-flex .multiple-choice-option,
.multiple-choice.mc-smart-flex .multiple-choice-option {
  padding-right: 10px;
}
.multiple-choice.mc-grid .multiple-choice-inner,
.multiple-choice.mc-flex .multiple-choice-inner,
.multiple-choice.mc-smart-flex .multiple-choice-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.multiple-choice.mc-grid .multiple-choice-option,
.multiple-choice.mc-flex .multiple-choice-option,
.multiple-choice.mc-smart-flex .multiple-choice-option {
  max-width: 100%;
}
.multiple-choice.mc-smart-flex .multiple-choice-inner {
  flex-grow: 1;
  max-width: 100%;
}
.multiple-choice.mc-smart-flex:not(.picture) .multiple-choice-option-container {
  /* 1 */
  /* 2 */
  /* 0, 3, 6, (9), (12), 15 … */
  /* 5, (7), 9, (11), 13, 15, … */
  /* 4, (6), 8, 10, 12, 14 … */
  /* 7, 11 */
}
.multiple-choice.mc-smart-flex:not(.picture) .multiple-choice-option-container:first-child:nth-last-child(1) {
  width: 100%;
}
.multiple-choice.mc-smart-flex:not(.picture) .multiple-choice-option-container:first-child:nth-last-child(2),
.multiple-choice.mc-smart-flex:not(.picture) .multiple-choice-option-container:first-child:nth-last-child(2) ~ * {
  width: 50%;
}
.multiple-choice.mc-smart-flex:not(.picture) .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-smart-flex:not(.picture) .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
  width: 33.3333%;
}
.multiple-choice.mc-smart-flex:not(.picture) .multiple-choice-option-container:first-child:nth-last-child(2n + 3),
.multiple-choice.mc-smart-flex:not(.picture) .multiple-choice-option-container:first-child:nth-last-child(2n + 3) ~ * {
  width: 33.3333%;
}
.multiple-choice.mc-smart-flex:not(.picture) .multiple-choice-option-container:first-child:nth-last-child(2n + 4):not(:nth-last-child(6)),
.multiple-choice.mc-smart-flex:not(.picture) .multiple-choice-option-container:first-child:nth-last-child(2n + 4):not(:nth-last-child(6)) ~ * {
  width: 25%;
}
.multiple-choice.mc-smart-flex:not(.picture) .multiple-choice-option-container:first-child:nth-last-child(7),
.multiple-choice.mc-smart-flex:not(.picture) .multiple-choice-option-container:first-child:nth-last-child(7) ~ *,
.multiple-choice.mc-smart-flex:not(.picture) .multiple-choice-option-container:first-child:nth-last-child(11),
.multiple-choice.mc-smart-flex:not(.picture) .multiple-choice-option-container:first-child:nth-last-child(11) ~ * {
  width: 25%;
}
.multiple-choice.mc-smart-flex.picture .multiple-choice-option-container {
  max-width: 205px;
  min-width: 0;
  flex-basis: 25%;
  /* 1 */
  /* 2 */
  /* 0, 3, 6, (9), (12), 15 … */
  /* 5, (7), 9, (11), 13, 15, … */
  /* 4, (6), 8, 10, 12, 14 … */
  /* 7, 11 */
}
.multiple-choice.mc-smart-flex.picture .multiple-choice-option-container:first-child:nth-last-child(1) {
  flex-basis: 100%;
}
.multiple-choice.mc-smart-flex.picture .multiple-choice-option-container:first-child:nth-last-child(2),
.multiple-choice.mc-smart-flex.picture .multiple-choice-option-container:first-child:nth-last-child(2) ~ * {
  flex-basis: 50%;
}
.multiple-choice.mc-smart-flex.picture .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-smart-flex.picture .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
  flex-basis: 33.3333%;
}
.multiple-choice.mc-smart-flex.picture .multiple-choice-option-container:first-child:nth-last-child(2n + 3),
.multiple-choice.mc-smart-flex.picture .multiple-choice-option-container:first-child:nth-last-child(2n + 3) ~ * {
  flex-basis: 33.3333%;
}
.multiple-choice.mc-smart-flex.picture .multiple-choice-option-container:first-child:nth-last-child(2n + 4):not(:nth-last-child(6)),
.multiple-choice.mc-smart-flex.picture .multiple-choice-option-container:first-child:nth-last-child(2n + 4):not(:nth-last-child(6)) ~ * {
  flex-basis: 25%;
}
.multiple-choice.mc-smart-flex.picture .multiple-choice-option-container:first-child:nth-last-child(7),
.multiple-choice.mc-smart-flex.picture .multiple-choice-option-container:first-child:nth-last-child(7) ~ *,
.multiple-choice.mc-smart-flex.picture .multiple-choice-option-container:first-child:nth-last-child(11),
.multiple-choice.mc-smart-flex.picture .multiple-choice-option-container:first-child:nth-last-child(11) ~ * {
  flex-basis: 25%;
}
.multiple-choice.mc-grid .multiple-choice-option-container {
  flex: 1;
}
.multiple-choice.mc-grid .option-content.picture {
  max-width: 225px;
}
.multiple-choice.mc-collapse-list .multiple-choice-option-container .option-content:after,
.multiple-choice.mc-collapse-flex .multiple-choice-option-container .option-content:after {
  display: none;
  content: '.';
  position: absolute;
  top: -2px;
  left: -2px;
  font-size: 0;
  height: 100%;
  width: 100%;
  border-width: 2px;
  border-style: solid;
  z-index: 1;
}
.multiple-choice.mc-collapse-list .multiple-choice-option-container input[type='radio']:checked + .option-content,
.multiple-choice.mc-collapse-flex .multiple-choice-option-container input[type='radio']:checked + .option-content,
.multiple-choice.mc-collapse-list .multiple-choice-option-container input[type='checkbox']:checked + .option-content,
.multiple-choice.mc-collapse-flex .multiple-choice-option-container input[type='checkbox']:checked + .option-content {
  background: rgba(43, 80, 170, 0.05);
}
.multiple-choice.mc-collapse-list .multiple-choice-option-container input[type='radio']:checked + .option-content:after,
.multiple-choice.mc-collapse-flex .multiple-choice-option-container input[type='radio']:checked + .option-content:after,
.multiple-choice.mc-collapse-list .multiple-choice-option-container input[type='checkbox']:checked + .option-content:after,
.multiple-choice.mc-collapse-flex .multiple-choice-option-container input[type='checkbox']:checked + .option-content:after {
  display: block;
  border-color: #6983c3;
}
@media (pointer: fine) {
  .multiple-choice.mc-collapse-list .multiple-choice-option-container:hover .option-content,
  .multiple-choice.mc-collapse-flex .multiple-choice-option-container:hover .option-content {
    background: rgba(43, 80, 170, 0.02);
  }
  .multiple-choice.mc-collapse-list .multiple-choice-option-container:hover .option-content:after,
  .multiple-choice.mc-collapse-flex .multiple-choice-option-container:hover .option-content:after {
    display: block;
    border-color: rgba(105, 131, 195, 0.7);
  }
}
.multiple-choice.mc-collapse-flex .multiple-choice-inner {
  display: flex;
  flex-wrap: wrap;
}
.multiple-choice.mc-collapse-flex .multiple-choice-option-container {
  flex: 1;
}
.multiple-choice.mc-collapse-flex .multiple-choice-option {
  padding-right: 0;
}
.multiple-choice.mc-collapse-flex .multiple-choice-option-container:first-child .option-content {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.multiple-choice.mc-collapse-flex .multiple-choice-option-container:first-child .option-content:after {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.multiple-choice.mc-collapse-flex .multiple-choice-option-container:last-child .option-content {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.multiple-choice.mc-collapse-flex .multiple-choice-option-container:last-child .option-content:after {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.multiple-choice.mc-collapse-flex .multiple-choice-option-container:not(:first-child):not(:last-child) .option-content {
  border-radius: 0;
}
.multiple-choice.mc-collapse-flex .multiple-choice-option-container:not(:last-child) .option-content {
  border-right: none;
}
.multiple-choice.mc-collapse-list .multiple-choice-option {
  padding-bottom: 0;
}
.multiple-choice.mc-collapse-list .multiple-choice-option-container:not(:only-child):first-child .option-content {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.multiple-choice.mc-collapse-list .multiple-choice-option-container:first-child .option-content:after {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.multiple-choice.mc-collapse-list .multiple-choice-option-container:not(:only-child):last-child .option-content {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.multiple-choice.mc-collapse-list .multiple-choice-option-container:last-child .option-content:after {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.multiple-choice.mc-collapse-list .multiple-choice-option-container:not(:first-child):not(:last-child) .option-content {
  border-radius: 0;
}
.multiple-choice.mc-collapse-list .multiple-choice-option-container:not(:last-child) .option-content {
  border-bottom: none;
}
.multiple-choice .multiple-choice-option-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.multiple-choice.center {
  justify-content: center;
}
.multiple-choice .label-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
  text-align: left;
}
.multiple-choice .label-container > .label {
  padding: 2px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.multiple-choice .option-content.picture {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  text-align: center;
  flex-direction: column;
  overflow: hidden;
  justify-content: initial;
  transition: all;
  transition-duration: 0.1s;
  box-shadow: none;
  border-width: 3px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 15px;
  background: #ffffff;
}
.multiple-choice .option-content.picture .label-container {
  width: 100%;
  flex-direction: column;
  transition: all;
  transition-duration: 0.1s;
  border-top-width: 0px;
  border-top-style: solid;
  border-top-color: transparent;
  background: transparent;
  text-align: center;
  padding: 15px 0;
  flex: 1;
}
.multiple-choice .option-content.picture .label {
  letter-spacing: unset;
  text-transform: none;
  font-family: "Open Sans";
  font-size: 1rem;
  color: #0A0908;
  font-weight: 600;
  line-height: 1.2;
  margin-right: 0;
  transition: all;
  transition-duration: 0.1s;
  width: 100%;
  word-wrap: break-word;
}
.multiple-choice .option-content.picture .text {
  line-height: 1.25;
  margin-top: 2px;
  color: #505051;
  font-size: 0.85rem;
  font-weight: normal;
}
.multiple-choice .option-content.picture .image-container {
  height: auto;
  margin: 0 auto;
  max-width: unset;
  border-width: 0px;
  border-style: solid;
  border-color: #eaeaeb;
  border-bottom-color: transparent;
  background: transparent;
  width: 100%;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.multiple-choice .option-content.picture .image-container img {
  min-height: 1px;
  margin-right: 0;
  transition: filter;
  transition-duration: 0.1s;
  pointer-events: none;
  height: 100%;
  padding: 0px;
  width: 100%;
  filter: none;
  opacity: 1;
}
.multiple-choice .option-content.picture .image-container i {
  margin-right: 0;
  font-size: 100px;
  color: #5b78bd;
}
.multiple-choice .option-content.picture .image-container .svg-container {
  padding: 25px 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.multiple-choice .option-content.picture .image-container svg {
  height: 100%;
  width: 50px;
  color: #5b78bd;
  fill: #5b78bd;
}
.multiple-choice .option-content.picture .image-container .emoji {
  line-height: 1;
  font-size: 50px;
  padding: 25px 0 5px;
}
.multiple-choice .option-content.picture .image-container .svg-as-img {
  padding: 25px 0 5px;
  height: auto;
  width: 50px;
}
.multiple-choice .option-content.picture .selector-container {
  margin: 0;
  position: absolute;
  z-index: 1;
  top: 5px;
  right: 5px;
  bottom: initial;
  left: initial;
  display: none;
  transform: none;
}
.multiple-choice .option-content.picture .radio-selector {
  display: none;
}
.multiple-choice .option-content.picture .radio {
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 0 1px #eaeaeb;
  height: 20px;
  width: 20px;
}
.multiple-choice .option-content.picture .checkbox-selector {
  display: none;
}
.multiple-choice .option-content.picture .checkbox {
  background: #ffffff;
  border-color: #eaeaeb;
  height: 20px;
  width: 20px;
}
.multiple-choice .checkbox {
  border-color: #eaeaeb;
  border-radius: 3px;
  background: transparent;
  height: 20px;
  width: 20px;
  transition: background 0.1s;
  position: relative;
}
.multiple-choice .checkbox svg {
  height: 18px;
  width: 18px;
}
.multiple-choice .option-content.card {
  flex-direction: column;
  text-align: center;
  flex-basis: calc(50% - 10px);
  flex-grow: 1;
}
.multiple-choice .option-content.card:hover img {
  opacity: 0.8;
  filter: grayscale(0.2);
}
.multiple-choice .option-content.card img {
  height: 100px;
  opacity: 0.6;
  filter: grayscale(1);
  transition: all;
  transition-duration: 0.1s;
}
.multiple-choice .option-content.card .radio,
.multiple-choice .option-content.card .checkbox {
  position: absolute;
  left: 10px;
  top: 10px;
}
.multiple-choice .option-content.card .label {
  font-size: 19px;
  padding-top: 10px;
  line-height: 2;
}
.multiple-choice .option-content.card .text {
  font-size: 15px;
  line-height: 1.5;
}
.multiple-choice .message {
  margin: 10px 0 30px;
  display: flex;
  align-items: flex-end;
  display: none;
}
.multiple-choice .message .avatar {
  line-height: 0;
}
.multiple-choice .message .avatar img {
  border-radius: 20px;
  height: 40px;
}
.multiple-choice .message .text {
  line-height: 1.25;
  padding: 12px 7px 12px 17px;
  font-size: 15px;
  background: #fafafb;
  border-radius: 15px 15px 15px 0;
  text-align: left;
  margin-right: 30px;
}
.multiple-choice input[type='text'].error {
  border: 1px solid #d0011b;
}
.multiple-choice.picture {
  margin-bottom: -10px;
}
.multiple-choice.picture.mc-grid,
.multiple-choice.picture.mc-flex,
.multiple-choice.picture.mc-smart-flex {
  margin-right: -10px;
}
.multiple-choice.picture .multiple-choice-option {
  padding-right: 10px;
  padding-bottom: 10px;
}
@media (pointer: fine) {
  .option-content:hover,
  .option-content.hover {
    background: rgba(43, 80, 170, 0.02);
    border-color: rgba(105, 131, 195, 0.7);
    transform: none;
    box-shadow: none;
  }
  .option-content:hover .label,
  .option-content.hover .label {
    color: #122147;
    font-weight: normal;
  }
  .option-content:hover .text,
  .option-content.hover .text {
    color: #122147;
  }
  .option-content:hover .image-container i,
  .option-content.hover .image-container i {
    color: #8399cd;
  }
  .option-content:hover .image-container svg,
  .option-content.hover .image-container svg {
    color: #8399cd;
    fill: #8399cd;
  }
  .option-content:hover .radio-selector,
  .option-content.hover .radio-selector {
    display: block;
  }
  .option-content:hover .radio,
  .option-content.hover .radio {
    box-shadow: 0 0 0 1px rgba(105, 131, 195, 0.7);
  }
  .option-content:hover .checkbox-selector,
  .option-content.hover .checkbox-selector {
    display: block;
  }
  .option-content:hover .checkbox,
  .option-content.hover .checkbox {
    border-color: rgba(105, 131, 195, 0.7);
  }
  .option-content:hover .checkbox svg,
  .option-content.hover .checkbox svg {
    color: rgba(105, 131, 195, 0.7);
  }
  .option-content.picture:hover,
  .option-content.picture.hover {
    background: rgba(43, 80, 170, 0.05);
    border-color: rgba(43, 80, 170, 0.6);
    box-shadow: none;
    transform: none;
  }
  .option-content.picture:hover .label-container,
  .option-content.picture.hover .label-container {
    background: transparent;
    opacity: 1;
    border-top-color: rgba(43, 80, 170, 0.6);
  }
  .option-content.picture:hover .label,
  .option-content.picture.hover .label {
    color: #122147 !important;
    font-weight: 600 !important;
  }
  .option-content.picture:hover .text,
  .option-content.picture.hover .text {
    color: #122147;
    font-weight: normal;
  }
  .option-content.picture:hover .image-container,
  .option-content.picture.hover .image-container {
    background: transparent;
    border-width: 0px;
    border-style: solid;
    border-color: #2b50aa;
  }
  .option-content.picture:hover .image-container img,
  .option-content.picture.hover .image-container img {
    filter: none;
    opacity: 1;
  }
  .option-content.picture:hover .image-container i,
  .option-content.picture.hover .image-container i {
    color: #2b50aa;
  }
  .option-content.picture:hover .image-container svg,
  .option-content.picture.hover .image-container svg {
    color: #2b50aa;
    fill: #2b50aa;
  }
  .option-content.picture:hover .radio-selector,
  .option-content.picture.hover .radio-selector {
    display: none;
  }
  .option-content.picture:hover .radio,
  .option-content.picture.hover .radio {
    box-shadow: 0 0 0 1px #2b50aa;
  }
  .option-content.picture:hover .checkbox-selector,
  .option-content.picture.hover .checkbox-selector {
    display: none;
  }
  .option-content.picture:hover .checkbox,
  .option-content.picture.hover .checkbox {
    background: transparent;
    border-color: #2b50aa;
  }
  .option-content.picture:hover .checkbox svg,
  .option-content.picture.hover .checkbox svg {
    color: #2b50aa;
  }
}
.multiple-choice-option input[type='radio']:focus-visible + .option-content .checkbox,
.multiple-choice-option input[type='checkbox']:focus-visible + .option-content .checkbox,
.multiple-choice-option input[type='radio']:focus-visible + .option-content .radio,
.multiple-choice-option input[type='checkbox']:focus-visible + .option-content .radio {
  box-shadow: 0 0 0 1px white, 0 0 0 3px #005fcc;
}
.multiple-choice-option {
  flex: 1;
  padding-bottom: 5px;
}
.multiple-choice-option input[type='radio'],
.multiple-choice-option input[type='checkbox'] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.multiple-choice-option label {
  display: initial;
}
input.multiple-choice-option-input:not([type='checkbox']):not([type='radio']) {
  color: #0a1227;
  background: none;
  padding: 0.4em 0.5em 0.45em;
  font-size: 1rem;
  font-weight: normal;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 5px;
  border-top: 1px solid #eaeaeb;
  border-right: 1px solid #eaeaeb;
  border-bottom: 1px solid #eaeaeb;
  border-left: 1px solid #eaeaeb;
}
input.multiple-choice-option-input:not([type='checkbox']):not([type='radio']):focus,
input.multiple-choice-option-input:not([type='checkbox']):not([type='radio']):focus-within {
  border-color: #2b50aa;
  background: white;
}
input.multiple-choice-option-input:not([type='checkbox']):not([type='radio']):hover {
  border-color: #eaeaeb;
  background: none;
}
input.multiple-choice-option-input:not([type='checkbox']):not([type='radio'])::-webkit-input-placeholder {
  color: #bababb;
}
input.multiple-choice-option-input:not([type='checkbox']):not([type='radio']):-moz-placeholder {
  color: #bababb;
}
input.multiple-choice-option-input:not([type='checkbox']):not([type='radio'])::-moz-placeholder {
  color: #bababb;
}
input.multiple-choice-option-input:not([type='checkbox']):not([type='radio']):-ms-input-placeholder {
  color: #bababb;
}
input.multiple-choice-option-input:not([type='checkbox']):not([type='radio']).error {
  border-color: #d0011b;
}
.multiple-choice-option input[type='radio']:checked + .option-content,
.multiple-choice-option input[type='checkbox']:checked + .option-content {
  border-color: #6983c3;
  background: rgba(43, 80, 170, 0.05);
  transform: none;
  box-shadow: none;
}
.multiple-choice-option input[type='radio']:checked + .option-content .label,
.multiple-choice-option input[type='checkbox']:checked + .option-content .label {
  color: #0a1227;
  font-weight: normal;
}
.multiple-choice-option input[type='radio']:checked + .option-content .text,
.multiple-choice-option input[type='checkbox']:checked + .option-content .text {
  color: #0a1227;
  font-weight: normal;
}
.multiple-choice-option input[type='radio']:checked + .option-content .image-container i,
.multiple-choice-option input[type='checkbox']:checked + .option-content .image-container i {
  color: #5b78bd;
}
.multiple-choice-option input[type='radio']:checked + .option-content .image-container svg,
.multiple-choice-option input[type='checkbox']:checked + .option-content .image-container svg {
  color: #5b78bd;
  fill: #5b78bd;
}
.multiple-choice-option input[type='radio']:checked + .option-content .checkbox,
.multiple-choice-option input[type='checkbox']:checked + .option-content .checkbox {
  background: #6983c3;
  border-color: #6983c3;
}
.multiple-choice-option input[type='radio']:checked + .option-content .checkbox svg,
.multiple-choice-option input[type='checkbox']:checked + .option-content .checkbox svg {
  display: block;
  color: #ffffff;
}
.multiple-choice-option input[type='radio']:checked + .option-content .checkbox.light,
.multiple-choice-option input[type='checkbox']:checked + .option-content .checkbox.light {
  border-color: transparent;
  background: transparent;
}
.multiple-choice-option input[type='radio']:checked + .option-content .checkbox.light i,
.multiple-choice-option input[type='checkbox']:checked + .option-content .checkbox.light i {
  color: #6983c3;
}
.multiple-choice-option input[type='radio']:checked + .option-content .radio,
.multiple-choice-option input[type='checkbox']:checked + .option-content .radio {
  background: #2b50aa;
  border-color: #ffffff;
  box-shadow: 0 0 0 1px #2b50aa;
}
.multiple-choice-option input[type='radio']:checked + .option-content .radio-selector,
.multiple-choice-option input[type='checkbox']:checked + .option-content .radio-selector {
  display: block;
}
.multiple-choice-option input[type='radio']:checked + .option-content .checkbox-selector,
.multiple-choice-option input[type='checkbox']:checked + .option-content .checkbox-selector {
  display: block;
}
.multiple-choice-option input[type='radio']:checked + .option-content + .message,
.multiple-choice-option input[type='checkbox']:checked + .option-content + .message {
  display: flex;
}
.multiple-choice-option input[type='radio']:checked + .option-content.picture,
.multiple-choice-option input[type='checkbox']:checked + .option-content.picture {
  background: rgba(43, 80, 170, 0.1);
  box-shadow: none;
  transform: none;
  border-color: rgba(43, 80, 170, 0.7);
}
.multiple-choice-option input[type='radio']:checked + .option-content.picture .image-container,
.multiple-choice-option input[type='checkbox']:checked + .option-content.picture .image-container {
  background: transparent;
  border-width: 0px;
  border-style: solid;
  border-color: #eaeaeb;
}
.multiple-choice-option input[type='radio']:checked + .option-content.picture .label-container,
.multiple-choice-option input[type='checkbox']:checked + .option-content.picture .label-container {
  background: transparent;
  opacity: 1;
  border-top-color: rgba(43, 80, 170, 0.7);
}
.multiple-choice-option input[type='radio']:checked + .option-content.picture .label,
.multiple-choice-option input[type='checkbox']:checked + .option-content.picture .label {
  color: #0a1227 !important;
  font-weight: 600 !important;
  opacity: 1;
}
.multiple-choice-option input[type='radio']:checked + .option-content.picture .text,
.multiple-choice-option input[type='checkbox']:checked + .option-content.picture .text {
  color: #0a1227;
  font-weight: normal;
}
.multiple-choice-option input[type='radio']:checked + .option-content.picture img,
.multiple-choice-option input[type='checkbox']:checked + .option-content.picture img {
  filter: none;
  opacity: 1;
}
.multiple-choice-option input[type='radio']:checked + .option-content.picture i,
.multiple-choice-option input[type='checkbox']:checked + .option-content.picture i {
  color: #2b50aa;
}
.multiple-choice-option input[type='radio']:checked + .option-content.picture svg,
.multiple-choice-option input[type='checkbox']:checked + .option-content.picture svg {
  color: #2b50aa;
  fill: #2b50aa;
}
.multiple-choice-option input[type='radio']:checked + .option-content.picture .checkbox-selector,
.multiple-choice-option input[type='checkbox']:checked + .option-content.picture .checkbox-selector {
  display: none;
}
.multiple-choice-option input[type='radio']:checked + .option-content.picture .checkbox,
.multiple-choice-option input[type='checkbox']:checked + .option-content.picture .checkbox {
  background: #2b50aa;
  border-color: #2b50aa;
}
.multiple-choice-option input[type='radio']:checked + .option-content.picture .checkbox svg,
.multiple-choice-option input[type='checkbox']:checked + .option-content.picture .checkbox svg {
  display: block;
  color: #ffffff;
}
.multiple-choice-option input[type='radio']:checked + .option-content.picture .radio-selector,
.multiple-choice-option input[type='checkbox']:checked + .option-content.picture .radio-selector {
  display: none;
}
.multiple-choice-option input[type='radio']:checked + .option-content.picture .radio,
.multiple-choice-option input[type='checkbox']:checked + .option-content.picture .radio {
  background: #2b50aa;
  border-color: rgba(43, 80, 170, 0.1);
  box-shadow: 0 0 0 1px #2b50aa;
}
.multiple-choice-option input[type='radio']:checked + .option-content.card img,
.multiple-choice-option input[type='checkbox']:checked + .option-content.card img {
  opacity: 1;
  filter: grayscale(0);
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .option-counter {
      display: none;
    }
    .option-content .label {
      margin-right: 0;
    }
    .option-content .checkbox {
      height: 18px;
      width: 18px;
    }
    .option-content .checkbox svg {
      height: 18px;
      width: 18px;
    }
    .option-content .radio {
      height: 18px;
      width: 18px;
    }
  }
}
@container (max-width: 560px) {
  .option-counter {
    display: none;
  }
  .option-content .label {
    margin-right: 0;
  }
  .option-content .checkbox {
    height: 18px;
    width: 18px;
  }
  .option-content .checkbox svg {
    height: 18px;
    width: 18px;
  }
  .option-content .radio {
    height: 18px;
    width: 18px;
  }
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 380px) {
    .multiple-choice.mc-grid.picture .multiple-choice-option-container {
      flex-wrap: wrap;
      flex: 0 0 50% !important;
      max-width: 50% !important;
    }
    .multiple-choice.mc-grid .multiple-choice-option .option-content.picture {
      margin: auto;
      width: auto;
    }
    .multiple-choice.mc-grid .multiple-choice-option {
      flex: auto;
    }
  }
}
@container (max-width: 380px) {
  .multiple-choice.mc-grid.picture .multiple-choice-option-container {
    flex-wrap: wrap;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .multiple-choice.mc-grid .multiple-choice-option .option-content.picture {
    margin: auto;
    width: auto;
  }
  .multiple-choice.mc-grid .multiple-choice-option {
    flex: auto;
  }
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 615px) {
    .multiple-choice.mc-smart-flex .multiple-choice-option-container {
      /* 2 */
      /* 5, (7), 9, (11), 13, 15, … */
    }
    .multiple-choice.mc-smart-flex .multiple-choice-option-container:first-child:nth-last-child(2n),
    .multiple-choice.mc-smart-flex .multiple-choice-option-container:first-child:nth-last-child(2n) ~ * {
      flex-basis: 50% !important;
    }
    .multiple-choice.mc-smart-flex .multiple-choice-option-container:first-child:nth-last-child(2n + 3),
    .multiple-choice.mc-smart-flex .multiple-choice-option-container:first-child:nth-last-child(2n + 3) ~ * {
      flex-basis: 50%;
    }
  }
}
@container (max-width: 615px) {
  .multiple-choice.mc-smart-flex .multiple-choice-option-container {
    /* 2 */
    /* 5, (7), 9, (11), 13, 15, … */
  }
  .multiple-choice.mc-smart-flex .multiple-choice-option-container:first-child:nth-last-child(2n),
  .multiple-choice.mc-smart-flex .multiple-choice-option-container:first-child:nth-last-child(2n) ~ * {
    flex-basis: 50% !important;
  }
  .multiple-choice.mc-smart-flex .multiple-choice-option-container:first-child:nth-last-child(2n + 3),
  .multiple-choice.mc-smart-flex .multiple-choice-option-container:first-child:nth-last-child(2n + 3) ~ * {
    flex-basis: 50%;
  }
}
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-1,
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-1,
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: calc(1 * 205px + 20px);
  min-width: 205px;
}
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-1 .multiple-choice-option-container,
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-1 .multiple-choice-option-container,
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-1 .multiple-choice-option-container,
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
  flex: 0 1 calc(100% / 1) !important;
  max-width: 205px !important;
  min-width: calc(100% / 1) !important;
}
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-2,
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-2,
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: calc(2 * 205px + 20px);
  min-width: 205px;
}
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-2 .multiple-choice-option-container,
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-2 .multiple-choice-option-container,
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-2 .multiple-choice-option-container,
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
  flex: 0 1 calc(100% / 2) !important;
  max-width: 205px !important;
  min-width: calc(100% / 2) !important;
}
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-3,
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-3,
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: calc(3 * 205px + 20px);
  min-width: 205px;
}
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-3 .multiple-choice-option-container,
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-3 .multiple-choice-option-container,
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-3 .multiple-choice-option-container,
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
  flex: 0 1 calc(100% / 3) !important;
  max-width: 205px !important;
  min-width: calc(100% / 3) !important;
}
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-4,
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-4,
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: calc(4 * 205px + 20px);
  min-width: 205px;
}
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-4 .multiple-choice-option-container,
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-4 .multiple-choice-option-container,
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-4 .multiple-choice-option-container,
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
  flex: 0 1 calc(100% / 4) !important;
  max-width: 205px !important;
  min-width: calc(100% / 4) !important;
}
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-5,
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-5,
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: calc(5 * 205px + 20px);
  min-width: 205px;
}
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-5 .multiple-choice-option-container,
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-5 .multiple-choice-option-container,
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-5 .multiple-choice-option-container,
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n),
.multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
.multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
.multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
  flex: 0 1 calc(100% / 5) !important;
  max-width: 205px !important;
  min-width: calc(100% / 5) !important;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-1,
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-1,
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-1 {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      max-width: calc(1 * 205px + 20px);
      min-width: 205px;
    }
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container,
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container,
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container,
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n),
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n),
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n),
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
      flex: 0 1 calc(100% / 1) !important;
      max-width: 205px !important;
      min-width: calc(100% / 1) !important;
    }
  }
}
@container (max-width: 560px) {
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-1,
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-1,
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(1 * 205px + 20px);
    min-width: 205px;
  }
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container,
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container,
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container,
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n),
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n),
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n),
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-1 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
    flex: 0 1 calc(100% / 1) !important;
    max-width: 205px !important;
    min-width: calc(100% / 1) !important;
  }
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-2,
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-2,
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-2 {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      max-width: calc(2 * 205px + 20px);
      min-width: 205px;
    }
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container,
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container,
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container,
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n),
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n),
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n),
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
      flex: 0 1 calc(100% / 2) !important;
      max-width: 205px !important;
      min-width: calc(100% / 2) !important;
    }
  }
}
@container (max-width: 560px) {
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-2,
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-2,
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(2 * 205px + 20px);
    min-width: 205px;
  }
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container,
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container,
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container,
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n),
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n),
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n),
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-2 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
    flex: 0 1 calc(100% / 2) !important;
    max-width: 205px !important;
    min-width: calc(100% / 2) !important;
  }
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-3,
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-3,
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-3 {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      max-width: calc(3 * 205px + 20px);
      min-width: 205px;
    }
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container,
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container,
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container,
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n),
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n),
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n),
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
      flex: 0 1 calc(100% / 3) !important;
      max-width: 205px !important;
      min-width: calc(100% / 3) !important;
    }
  }
}
@container (max-width: 560px) {
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-3,
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-3,
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(3 * 205px + 20px);
    min-width: 205px;
  }
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container,
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container,
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container,
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n),
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n),
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n),
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-3 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
    flex: 0 1 calc(100% / 3) !important;
    max-width: 205px !important;
    min-width: calc(100% / 3) !important;
  }
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-4,
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-4,
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-4 {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      max-width: calc(4 * 205px + 20px);
      min-width: 205px;
    }
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container,
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container,
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container,
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n),
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n),
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n),
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
      flex: 0 1 calc(100% / 4) !important;
      max-width: 205px !important;
      min-width: calc(100% / 4) !important;
    }
  }
}
@container (max-width: 560px) {
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-4,
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-4,
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(4 * 205px + 20px);
    min-width: 205px;
  }
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container,
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container,
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container,
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n),
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n),
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n),
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-4 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
    flex: 0 1 calc(100% / 4) !important;
    max-width: 205px !important;
    min-width: calc(100% / 4) !important;
  }
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-5,
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-5,
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-5 {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      max-width: calc(5 * 205px + 20px);
      min-width: 205px;
    }
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container,
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container,
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container,
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n),
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n),
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n),
    .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
    .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
    .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
      flex: 0 1 calc(100% / 5) !important;
      max-width: 205px !important;
      min-width: calc(100% / 5) !important;
    }
  }
}
@container (max-width: 560px) {
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-5,
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-5,
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(5 * 205px + 20px);
    min-width: 205px;
  }
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container,
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container,
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container,
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n),
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n),
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n),
  .multiple-choice.mc-grid.picture .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
  .multiple-choice.mc-flex .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ *,
  .multiple-choice.mc-smart-flex .multiple-choice-inner.multiple-choice-mobile-cols-5 .multiple-choice-option-container:first-child:nth-last-child(3n) ~ * {
    flex: 0 1 calc(100% / 5) !important;
    max-width: 205px !important;
    min-width: calc(100% / 5) !important;
  }
}
/** END Checkbox, Radio **/
/**
 * Loader
 */
.loader-block img {
  width: 100%;
}
.loader-block > div {
  margin: 10px 0;
}
/** End Loader **/
/**
 * Circle Loader
 */
.circle-loader {
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-left-color: #2b50aa;
  animation-name: loader-spin;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.circle-loader,
.circle-loader:after {
  border-radius: 50%;
  width: 8rem;
  height: 8rem;
}
.circle-loader.small {
  width: 5em;
  height: 5em;
}
.circle-loader.small .circle-loader-checkmark {
  height: 2.5em;
  width: 1.25em;
  left: 1.25em;
  top: 2.5em;
}
.circle-loader-load-success {
  animation: none;
  border-color: #2b50aa;
  transition: border 500ms ease-out;
}
.circle-loader-load-error {
  animation: none;
  border-color: #d0011b;
  transition: border 500ms ease-out;
}
.circle-loader-checkmark {
  display: none;
}
.circle-loader-checkmark.draw:after {
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
}
.circle-loader-checkmark:after {
  opacity: 1;
  height: 4rem;
  width: 2rem;
  transform-origin: left top;
  border-right: 2px solid #2b50aa;
  border-top: 2px solid #2b50aa;
  content: '';
  left: 1.77777778rem;
  top: 4rem;
  position: absolute;
}
.circle-loader-cross {
  display: none;
}
.circle-loader-cross.draw:after {
  animation-duration: 500ms;
  animation-timing-function: ease;
  animation-name: cross01;
  transform: scaleX(-1) rotate(225deg);
}
.circle-loader-cross.draw:before {
  animation-duration: 500ms;
  animation-timing-function: ease;
  animation-name: cross02;
  transform: scaleX(-1) rotate(45deg);
}
.circle-loader-cross:after {
  opacity: 1;
  width: 3.55555556rem;
  transform-origin: left top;
  border-right: 2px solid #d0011b;
  border-top: 2px solid #d0011b;
  content: '';
  left: 2.66666667rem;
  top: 5.33333333rem;
  position: absolute;
}
.circle-loader-cross:before {
  opacity: 1;
  height: 3.55555556rem;
  transform-origin: left top;
  border-right: 2px solid #d0011b;
  border-top: 2px solid #d0011b;
  content: '';
  left: 2.66666667rem;
  top: 2.66666667rem;
  position: absolute;
}
.circle-loader-load-success .circle-loader-checkmark {
  display: block;
}
.circle-loader-load-error .circle-loader-cross {
  display: block;
}
@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 2rem;
    opacity: 1;
  }
  40% {
    height: 4rem;
    width: 2rem;
    opacity: 1;
  }
  100% {
    height: 4rem;
    width: 2rem;
    opacity: 1;
  }
}
@keyframes cross01 {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  100% {
    width: 3.55555556rem;
    opacity: 1;
  }
}
@keyframes cross02 {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  100% {
    height: 3.55555556rem;
    opacity: 1;
  }
}
/** END Cirlce Loader **/
/**
 * Link List
 */
.link-list-block.justify-center ul.link-list {
  justify-content: center;
}
.link-list-block.justify-right ul.link-list {
  justify-content: flex-end;
}
.link-list-block.justify-left ul.link-list {
  justify-content: flex-start;
}
ul.link-list {
  display: flex;
  justify-content: center;
  gap: 7px;
}
ul.link-list li {
  font-size: 13px;
  font-weight: normal;
}
ul.link-list li a {
  color: #bababb;
  text-decoration: none;
}
ul.link-list li a:hover {
  color: #2b50aa;
  text-decoration: underline;
}
/** End Link List **/
@keyframes indicatorSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes indicatorSlideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}
button.generic-button {
  width: 100%;
  max-width: 100%;
  transition-property: all;
  text-align: left;
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
  outline: none;
}
button.generic-button .graphic svg {
  transition-property: color;
  width: inherit;
  height: inherit;
  color: inherit;
  fill: currentColor;
}
button.generic-button .graphic img {
  width: 100%;
}
button.generic-button .content {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  transition-property: all;
}
button.generic-button .content.align-left {
  justify-content: flex-start;
}
button.generic-button .content.align-right {
  justify-content: flex-end;
}
button.generic-button .content.align-center {
  justify-content: center;
}
button.generic-button .content.align-space-between {
  justify-content: space-between;
}
button.generic-button .content.reverse {
  flex-direction: row-reverse;
}
button.generic-button .content.reverse .label-container + .graphic {
  margin-right: 10px;
  margin-left: 0;
}
button.generic-button .content.reverse.align-left {
  justify-content: flex-end;
}
button.generic-button .content.reverse.align-right {
  justify-content: flex-start;
}
button.generic-button .label-container {
  align-items: inherit;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  overflow-x: auto;
  overflow-x: clip;
}
button.generic-button .label-container + .graphic {
  margin-left: 10px;
}
button.generic-button .label-container.align-left {
  align-items: flex-start;
}
button.generic-button .label-container.align-center {
  align-items: center;
}
button.generic-button .label-container.align-right {
  align-items: flex-end;
}
button.generic-button .label,
button.generic-button .line2 {
  max-width: 100%;
  transition-property: all;
  overflow-x: auto;
  overflow-x: clip;
  text-overflow: ellipsis;
}
button.generic-button.collapse {
  width: unset;
}
button.generic-button.align-left {
  margin-right: auto;
}
button.generic-button.align-right {
  margin-left: auto;
}
button.generic-button.align-center {
  margin-left: auto;
  margin-right: auto;
}
/**
 * Mixin to dynamically scale a property of button elements based on a given percentage.
 *
 * @param @css-property - The CSS property to be scaled (e.g., 'font-size', 'width', 'height').
 * @param @prefix - The prefix used for constructing dynamic variable names.
 * @param @button-size - The size category of the button (e.g., 'small', 'large').
 * @param @button-element - The specific element of the button (e.g., 'label', 'line2').
 * @param @property - The button property to use in the dynamic var construction, as defined in the theme (e.g., 'size'). Defaults to @css-property .
 *
 * Example usage:
 * .button-scaled-property-mixin('width', 'button-continue', 'small', 'graphic', 'size');
 * This will calculate and set the "width" css property based on the less variables:
 * @button-continue-graphic-size;
 * @button-continue-small-graphic-size-percentage
 */
button.continue {
  padding: 0.875em 1em;
  transition-duration: 0.2s;
  border-width: 1px;
  border-style: solid;
  border-radius: 7.5px;
  background: #2b50aa;
  transform: none;
  box-shadow: unset;
  border-color: transparent;
}
button.continue .graphic {
  color: white;
  width: 1.25rem;
  height: 1.25rem;
}
button.continue .graphic svg {
  transition-duration: 0.2s;
}
button.continue .graphic .emoji {
  font-size: 1.25rem;
}
button.continue .label {
  color: white;
  font-size: 1rem;
  font-family: "Open Sans";
  text-transform: initial;
  letter-spacing: initial;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}
button.continue .line2 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.825rem;
  font-family: "Open Sans";
  text-transform: initial;
  letter-spacing: initial;
  font-weight: normal;
  line-height: 1.25;
}
button.continue .label,
button.continue .line2,
button.continue .content {
  transition-duration: 0.2s;
}
button.continue .status-indicator {
  left: 0.75em;
}
button.continue .status-indicator svg {
  color: white;
  transition-duration: 0.2s;
}
button.continue:hover:not(:focus):not(:focus-within) {
  background: #294ca2;
  transform: none;
  box-shadow: unset;
  border-color: transparent;
}
button.continue:hover:not(:focus):not(:focus-within) .label {
  color: white;
  text-decoration: none;
}
button.continue:hover:not(:focus):not(:focus-within) .line2 {
  color: white;
}
button.continue:hover:not(:focus):not(:focus-within) .graphic {
  color: white;
}
button.continue:hover:not(:focus):not(:focus-within) .status-indicator svg {
  color: white;
}
button.continue:focus,
button.continue:focus-within {
  background: #294ca2;
  transform: none;
  box-shadow: 0 0 0 1.5px #ffffff, 0 0 0 3px #005fcc;
  border-color: transparent;
}
button.continue:focus .label,
button.continue:focus-within .label {
  color: white;
  text-decoration: none;
}
button.continue:focus .line2,
button.continue:focus-within .line2 {
  color: white;
}
button.continue:focus .graphic,
button.continue:focus-within .graphic {
  color: white;
}
button.continue:focus .status-indicator svg,
button.continue:focus-within .status-indicator svg {
  color: white;
}
button.continue.small {
  padding: 0.875em 1em;
}
button.continue.small .label {
  font-size: 0.8rem;
}
button.continue.small .line2 {
  font-size: 0.72501rem;
}
button.continue.small .graphic {
  width: 1rem;
  height: 1rem;
}
button.continue.small .graphic .emoji {
  font-size: 1rem;
}
button.continue.large {
  padding: 0.875em 1em;
}
button.continue.large .label {
  font-size: 1.25rem;
}
button.continue.large .line2 {
  font-size: 0.9999rem;
}
button.continue.large .graphic {
  width: 1.5625rem;
  height: 1.5625rem;
}
button.continue.large .graphic .emoji {
  font-size: 1.5625rem;
}
button.submit {
  padding: 0.875em 1em;
  transition-duration: 0.2s;
  border-width: 1px;
  border-style: solid;
  border-radius: 7.5px;
  background: #C53029;
  transform: none;
  box-shadow: unset;
  border-color: transparent;
}
button.submit .graphic {
  color: white;
  width: 1.25rem;
  height: 1.25rem;
}
button.submit .graphic svg {
  transition-duration: 0.2s;
}
button.submit .graphic .emoji {
  font-size: 1.25rem;
}
button.submit .label {
  color: white;
  font-size: 1rem;
  font-family: "Open Sans";
  text-transform: initial;
  letter-spacing: initial;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}
button.submit .line2 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.825rem;
  font-family: "Open Sans";
  text-transform: initial;
  letter-spacing: initial;
  font-weight: normal;
  line-height: 1.25;
}
button.submit .label,
button.submit .line2,
button.submit .content {
  transition-duration: 0.2s;
}
button.submit .status-indicator {
  left: 0.75em;
}
button.submit .status-indicator svg {
  color: white;
  transition-duration: 0.2s;
}
button.submit:hover:not(:focus):not(:focus-within) {
  background: #bb2e27;
  transform: none;
  box-shadow: unset;
  border-color: transparent;
}
button.submit:hover:not(:focus):not(:focus-within) .label {
  color: white;
  text-decoration: none;
}
button.submit:hover:not(:focus):not(:focus-within) .line2 {
  color: white;
}
button.submit:hover:not(:focus):not(:focus-within) .graphic {
  color: white;
}
button.submit:hover:not(:focus):not(:focus-within) .status-indicator svg {
  color: white;
}
button.submit:focus,
button.submit:focus-within {
  background: #bb2e27;
  transform: none;
  box-shadow: 0 0 0 1.5px #ffffff, 0 0 0 3px #005fcc;
  border-color: transparent;
}
button.submit:focus .label,
button.submit:focus-within .label {
  color: white;
  text-decoration: none;
}
button.submit:focus .line2,
button.submit:focus-within .line2 {
  color: white;
}
button.submit:focus .graphic,
button.submit:focus-within .graphic {
  color: white;
}
button.submit:focus .status-indicator svg,
button.submit:focus-within .status-indicator svg {
  color: white;
}
button.submit.small {
  padding: 0.875em 1em;
}
button.submit.small .label {
  font-size: 0.8rem;
}
button.submit.small .line2 {
  font-size: 0.72501rem;
}
button.submit.small .graphic {
  width: 1rem;
  height: 1rem;
}
button.submit.small .graphic .emoji {
  font-size: 1rem;
}
button.submit.large {
  padding: 0.875em 1em;
}
button.submit.large .label {
  font-size: 1.25rem;
}
button.submit.large .line2 {
  font-size: 0.9999rem;
}
button.submit.large .graphic {
  width: 1.5625rem;
  height: 1.5625rem;
}
button.submit.large .graphic .emoji {
  font-size: 1.5625rem;
}
button.back {
  padding: 0.875em 1em;
  transition-duration: 0.2s;
  border-width: 1px;
  border-style: solid;
  border-radius: 7.5px;
  background: rgba(80, 80, 81, 0.1);
  transform: none;
  box-shadow: unset;
  border-color: transparent;
}
button.back .graphic {
  color: #505051;
  width: 1.25rem;
  height: 1.25rem;
}
button.back .graphic svg {
  transition-duration: 0.2s;
}
button.back .graphic .emoji {
  font-size: 1.25rem;
}
button.back .label {
  color: #505051;
  font-size: 1rem;
  font-family: "Open Sans";
  text-transform: initial;
  letter-spacing: initial;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}
button.back .line2 {
  color: rgba(80, 80, 81, 0.8);
  font-size: 0.825rem;
  font-family: "Open Sans";
  text-transform: initial;
  letter-spacing: initial;
  font-weight: normal;
  line-height: 1.25;
}
button.back .label,
button.back .line2,
button.back .content {
  transition-duration: 0.2s;
}
button.back .status-indicator {
  left: 0.75em;
}
button.back .status-indicator svg {
  color: #505051;
  transition-duration: 0.2s;
}
button.back:hover:not(:focus):not(:focus-within) {
  background: #eaeaea;
  transform: none;
  box-shadow: unset;
  border-color: transparent;
}
button.back:hover:not(:focus):not(:focus-within) .label {
  color: #505051;
  text-decoration: none;
}
button.back:hover:not(:focus):not(:focus-within) .line2 {
  color: #505051;
}
button.back:hover:not(:focus):not(:focus-within) .graphic {
  color: #505051;
}
button.back:hover:not(:focus):not(:focus-within) .status-indicator svg {
  color: #505051;
}
button.back:focus,
button.back:focus-within {
  background: #eaeaea;
  transform: none;
  box-shadow: 0 0 0 1.5px #ffffff, 0 0 0 3px #005fcc;
  border-color: transparent;
}
button.back:focus .label,
button.back:focus-within .label {
  color: #505051;
  text-decoration: none;
}
button.back:focus .line2,
button.back:focus-within .line2 {
  color: #505051;
}
button.back:focus .graphic,
button.back:focus-within .graphic {
  color: #505051;
}
button.back:focus .status-indicator svg,
button.back:focus-within .status-indicator svg {
  color: #505051;
}
button.back.small {
  padding: 0.875em 1em;
}
button.back.small .label {
  font-size: 0.8rem;
}
button.back.small .line2 {
  font-size: 0.72501rem;
}
button.back.small .graphic {
  width: 1rem;
  height: 1rem;
}
button.back.small .graphic .emoji {
  font-size: 1rem;
}
button.back.large {
  padding: 0.875em 1em;
}
button.back.large .label {
  font-size: 1.25rem;
}
button.back.large .line2 {
  font-size: 0.9999rem;
}
button.back.large .graphic {
  width: 1.5625rem;
  height: 1.5625rem;
}
button.back.large .graphic .emoji {
  font-size: 1.5625rem;
}
button.link {
  padding: 0px;
  transition-duration: 0.2s;
  border-width: 1px;
  border-style: solid;
  border-radius: 7.5px;
  background: transparent;
  transform: none;
  box-shadow: unset;
  border-color: transparent;
}
button.link .graphic {
  color: #2b50aa;
  width: 1.25rem;
  height: 1.25rem;
}
button.link .graphic svg {
  transition-duration: 0.2s;
}
button.link .graphic .emoji {
  font-size: 1.25rem;
}
button.link .label {
  color: #2b50aa;
  font-size: 1rem;
  font-family: "Open Sans";
  text-transform: initial;
  letter-spacing: initial;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}
button.link .line2 {
  color: rgba(43, 80, 170, 0.8);
  font-size: 0.825rem;
  font-family: "Open Sans";
  text-transform: initial;
  letter-spacing: initial;
  font-weight: normal;
  line-height: 1.25;
}
button.link .label,
button.link .line2,
button.link .content {
  transition-duration: 0.2s;
}
button.link .status-indicator {
  left: 0;
}
button.link .status-indicator svg {
  color: #2b50aa;
  transition-duration: 0.2s;
}
button.link:hover:not(:focus):not(:focus-within) {
  background: rgba(0, 0, 0, 0);
  transform: none;
  box-shadow: unset;
  border-color: transparent;
}
button.link:hover:not(:focus):not(:focus-within) .label {
  color: #2b50aa;
  text-decoration: underline;
}
button.link:hover:not(:focus):not(:focus-within) .line2 {
  color: #2b50aa;
}
button.link:hover:not(:focus):not(:focus-within) .graphic {
  color: #2b50aa;
}
button.link:hover:not(:focus):not(:focus-within) .status-indicator svg {
  color: #2b50aa;
}
button.link:focus,
button.link:focus-within {
  background: rgba(0, 0, 0, 0);
  transform: none;
  box-shadow: none;
  border-color: transparent;
}
button.link:focus .label,
button.link:focus-within .label {
  color: #2b50aa;
  text-decoration: underline;
}
button.link:focus .line2,
button.link:focus-within .line2 {
  color: #2b50aa;
}
button.link:focus .graphic,
button.link:focus-within .graphic {
  color: #2b50aa;
}
button.link:focus .status-indicator svg,
button.link:focus-within .status-indicator svg {
  color: #2b50aa;
}
button.link.small {
  padding: 0px;
}
button.link.small .label {
  font-size: 0.8rem;
}
button.link.small .line2 {
  font-size: 0.72501rem;
}
button.link.small .graphic {
  width: 1rem;
  height: 1rem;
}
button.link.small .graphic .emoji {
  font-size: 1rem;
}
button.link.large {
  padding: 0px;
}
button.link.large .label {
  font-size: 1.25rem;
}
button.link.large .line2 {
  font-size: 0.9999rem;
}
button.link.large .graphic {
  width: 1.5625rem;
  height: 1.5625rem;
}
button.link.large .graphic .emoji {
  font-size: 1.5625rem;
}
button.universal {
  padding: 0.875em 1em;
  transition-duration: 0.2s;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  background: rgba(91, 120, 189, 0.1);
  transform: none;
  box-shadow: unset;
  border-color: rgba(91, 120, 189, 0.75);
}
button.universal .graphic {
  color: #2b50aa;
  width: 1.25rem;
  height: 1.25rem;
}
button.universal .graphic svg {
  transition-duration: 0.2s;
}
button.universal .graphic .emoji {
  font-size: 1.25rem;
}
button.universal .label {
  color: #2b50aa;
  font-size: 1rem;
  font-family: "Open Sans";
  text-transform: initial;
  letter-spacing: initial;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}
button.universal .line2 {
  color: rgba(43, 80, 170, 0.8);
  font-size: 0.825rem;
  font-family: "Open Sans";
  text-transform: initial;
  letter-spacing: initial;
  font-weight: normal;
  line-height: 1.25;
}
button.universal .label,
button.universal .line2,
button.universal .content {
  transition-duration: 0.2s;
}
button.universal .status-indicator {
  left: 0.75em;
}
button.universal .status-indicator svg {
  color: #2b50aa;
  transition-duration: 0.2s;
}
button.universal:hover:not(:focus):not(:focus-within) {
  background: #eef1f8;
  transform: none;
  box-shadow: unset;
  border-color: rgba(91, 120, 189, 0.75);
}
button.universal:hover:not(:focus):not(:focus-within) .label {
  color: #2b50aa;
  text-decoration: none;
}
button.universal:hover:not(:focus):not(:focus-within) .line2 {
  color: #2b50aa;
}
button.universal:hover:not(:focus):not(:focus-within) .graphic {
  color: #2b50aa;
}
button.universal:hover:not(:focus):not(:focus-within) .status-indicator svg {
  color: #2b50aa;
}
button.universal:focus,
button.universal:focus-within {
  background: #eef1f8;
  transform: none;
  box-shadow: 0 0 0 1.5px #ffffff, 0 0 0 3px #005fcc;
  border-color: rgba(91, 120, 189, 0.75);
}
button.universal:focus .label,
button.universal:focus-within .label {
  color: #2b50aa;
  text-decoration: none;
}
button.universal:focus .line2,
button.universal:focus-within .line2 {
  color: #2b50aa;
}
button.universal:focus .graphic,
button.universal:focus-within .graphic {
  color: #2b50aa;
}
button.universal:focus .status-indicator svg,
button.universal:focus-within .status-indicator svg {
  color: #2b50aa;
}
button.universal.small {
  padding: 0.875em 1em;
}
button.universal.small .label {
  font-size: 0.8rem;
}
button.universal.small .line2 {
  font-size: 0.72501rem;
}
button.universal.small .graphic {
  width: 1rem;
  height: 1rem;
}
button.universal.small .graphic .emoji {
  font-size: 1rem;
}
button.universal.large {
  padding: 0.875em 1em;
}
button.universal.large .label {
  font-size: 1.25rem;
}
button.universal.large .line2 {
  font-size: 0.9999rem;
}
button.universal.large .graphic {
  width: 1.5625rem;
  height: 1.5625rem;
}
button.universal.large .graphic .emoji {
  font-size: 1.5625rem;
}
.generic-button .status-indicator {
  line-height: 1;
  height: 1.5em;
  width: 1.5em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  visibility: hidden;
}
.generic-button .status-indicator svg {
  height: 100%;
  width: 100%;
}
.generic-button .status-indicator .icon-spinner,
.generic-button .status-indicator .icon-check-mark,
.generic-button .status-indicator .icon-x-mark {
  animation: indicatorSlideOut 0.1s linear;
}
.generic-button .status-indicator > div {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}
.generic-button[data-status] {
  cursor: default;
  padding-left: 45px;
}
.generic-button[data-status] .status-indicator {
  visibility: visible;
}
.generic-button[data-status='loading'] {
  opacity: 0.8;
}
.generic-button[data-status='loading'] .status-indicator .icon-spinner {
  animation: indicatorSlideIn 0.1s;
  opacity: 1;
}
.generic-button[data-status='success'] .status-indicator .icon-check-mark {
  animation: indicatorSlideIn 0.1s;
  opacity: 1;
}
.generic-button[data-status='error'] .status-indicator .icon-x-mark {
  animation: indicatorSlideIn 0.1s;
  opacity: 1;
}
.generic-button[data-status='error'] {
  animation: shake 0.5s linear both;
}
/**
 * Simple Checkbox
 */
.simple-checkbox input {
  position: absolute;
  z-index: -1000;
  opacity: 0;
}
.simple-checkbox input:checked + .simple-checkbox-content .checkbox {
  background: #2b50aa;
  border-color: #2b50aa;
}
.simple-checkbox input:checked + .simple-checkbox-content .checkbox svg {
  color: #ffffff;
  display: block;
}
.simple-checkbox input:hover + .simple-checkbox-content {
  border-color: #2b50aa;
  background: rgba(0, 0, 0, 0.025);
}
.simple-checkbox input:hover + .simple-checkbox-content .simple-checkbox-text {
  color: #0a1227;
}
.simple-checkbox input:hover + .simple-checkbox-content .checkbox {
  border-color: #2b50aa;
  background: #ffffff;
}
.simple-checkbox input:focus-visible + .simple-checkbox-content .checkbox {
  box-shadow: 0 0 0 1px white, 0 0 0 3px #005fcc;
}
.simple-checkbox input:checked + .simple-checkbox-content {
  border-color: #2b50aa;
  background: rgba(0, 0, 0, 0.025);
}
.simple-checkbox input:checked + .simple-checkbox-content .simple-checkbox-text {
  color: #0a1227;
}
.simple-checkbox input:checked + .simple-checkbox-content .checkbox {
  border-color: #2b50aa;
  background: #2b50aa;
}
.simple-checkbox .checkbox {
  transition: all 0.1s;
  height: 20px;
  width: 20px;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaeb;
  background: #ffffff;
}
.simple-checkbox .checkbox svg {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
}
.simple-checkbox .label-container {
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.simple-checkbox .label-container:hover {
  cursor: pointer;
}
.simple-checkbox-content {
  transition: all 0.1s;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 5px;
  background: transparent;
  padding: 10px;
}
.simple-checkbox-text {
  transition: color 0.1s;
  font-family: "Open Sans";
  font-size: 0.9rem;
  color: #0A0908;
  line-height: 1.35;
}
.simple-checkbox-text > p {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}
.simple-checkbox-text > p:first-child {
  margin-top: 0;
}
.simple-checkbox-text > p:last-child {
  margin-bottom: 0;
}
.simple-checkbox-text a,
.simple-checkbox-text a:link,
.simple-checkbox-text a:focus,
.simple-checkbox-text a:visited {
  color: blue;
}
.simple-checkbox-text a:hover,
.simple-checkbox-text a:link:hover,
.simple-checkbox-text a:focus:hover,
.simple-checkbox-text a:visited:hover {
  text-decoration: underline;
}
.simple-checkbox.error {
  animation: shake 0.5s linear both;
  transform: translate3d(0, 0, 0);
}
.simple-checkbox.error .simple-checkbox-content {
  border-color: #d0011b;
}
.simple-checkbox.error .checkbox {
  border-color: #d0011b;
}
@supports not (container-type: inline-size) {
  @media only screen and (max-width: 560px) {
    .simple-checkbox .checkbox {
      height: 18px;
      width: 18px;
    }
    .simple-checkbox .checkbox svg {
      width: 16.2px;
      height: 16.2px;
    }
  }
}
@container (max-width: 560px) {
  .simple-checkbox .checkbox {
    height: 18px;
    width: 18px;
  }
  .simple-checkbox .checkbox svg {
    width: 16.2px;
    height: 16.2px;
  }
}
/** End Simple Checkbox **/
/**
 * Input
 */
input:not([type='checkbox']):not([type='radio']) {
  border: none;
  outline: none;
  background: none;
  width: 100%;
  -webkit-appearance: none;
  transition-property: all;
  font-size: 1.125rem;
  color: #0A0908;
  font-weight: normal;
  font-family: "Open Sans";
  box-shadow: none;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaeb;
  padding-top: 0.5em;
  padding-right: 0.6em;
  padding-bottom: 0.5em;
  padding-left: 0.6em;
  background: rgba(0, 0, 0, 0.01);
  transition-duration: 0.05s;
  border-top: 1px solid #eaeaeb;
  border-right: 1px solid #eaeaeb;
  border-bottom: 1px solid #eaeaeb;
  border-left: 1px solid #eaeaeb;
}
input:not([type='checkbox']):not([type='radio']):focus,
input:not([type='checkbox']):not([type='radio']):focus-within {
  border-color: #2b50aa;
  background: rgba(0, 0, 0, 0.025);
  box-shadow: 0 0 0 1px #2b50aa;
}
input:not([type='checkbox']):not([type='radio'])::-webkit-input-placeholder {
  line-height: normal;
  color: #bababb;
  font-family: "Open Sans";
}
input:not([type='checkbox']):not([type='radio']):-moz-placeholder {
  line-height: normal;
  color: #bababb;
  font-family: "Open Sans";
}
input:not([type='checkbox']):not([type='radio'])::-moz-placeholder {
  line-height: normal;
  color: #bababb;
  font-family: "Open Sans";
}
input:not([type='checkbox']):not([type='radio']):-ms-input-placeholder {
  line-height: normal;
  color: #bababb;
  font-family: "Open Sans";
}
.input-box.has-value input {
  border-color: #eaeaeb;
  background: rgba(0, 0, 0, 0.025);
  box-shadow: none;
}
.input-box.has-value .input-decorator {
  border-color: #eaeaeb;
  background: rgba(0, 0, 0, 0.025);
}
.input-decorator {
  width: auto;
  display: flex;
  align-items: center;
  line-height: normal;
  padding-top: 0;
  padding-bottom: 0;
  transition: all 0.05s;
  padding-right: 0.7em;
  padding-left: 0.7em;
  background: rgba(0, 0, 0, 0.01);
  font-size: 1.125rem;
  font-weight: 500;
  color: #505051;
  fill: currentColor;
}
.input-decorator svg {
  height: 1.125rem;
  width: 1.125rem;
}
.input-decorator.input-prefix {
  border-right: 0;
  transition: border-right 0s;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top: 1px solid #eaeaeb;
  border-bottom: 1px solid #eaeaeb;
  border-left: 1px solid #eaeaeb;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.input-decorator.input-suffix {
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top: 1px solid #eaeaeb;
  border-right: 1px solid #eaeaeb;
  border-bottom: 1px solid #eaeaeb;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.input.has-suffix input {
  padding-right: 0.6em;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input.has-prefix input {
  padding-left: 0.6em;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-box:hover input:not(:focus-within) {
  border-color: #eaeaeb;
  background: rgba(0, 0, 0, 0.025);
}
.input-box:hover .input-decorator {
  border-color: #eaeaeb;
  background: rgba(0, 0, 0, 0.025);
}
.input-box.has-focus .input-decorator {
  border-color: #2b50aa;
  background: rgba(0, 0, 0, 0.01);
  box-shadow: 0 0 0 1px #2b50aa;
}
input[disabled],
input[readonly]:not([data-blocktype='date-picker']) {
  cursor: not-allowed;
  font-style: italic;
  color: #bababb;
}
input[type='select'] {
  -moz-appearance: none;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  outline: 0 none;
  position: absolute;
  top: 0;
  width: 100%;
  vertical-align: middle;
}
input::-webkit-calendar-picker-indicator {
  display: none;
}
input::-webkit-date-and-time-value {
  height: 1.5em;
  line-height: 1.5em;
}
.input-box {
  line-height: 1.5;
}
.input-box:last-child {
  margin-bottom: 0;
}
.input-box label {
  padding-bottom: 5px;
}
.input-box > div > .input {
  position: relative;
}
.input-box .input-wrapper {
  flex: 1;
  position: relative;
}
section.navigated .input-box > div > .input.error,
.input-box.show-error-instantly > div > .input.error,
section.navigated .input-box > div > div > .input.error,
.input-box.show-error-instantly > div > div > .input.error,
section.navigated .input-box.preview-error > div > .input,
.input-box.show-error-instantly.preview-error > div > .input {
  animation: shake 0.5s linear both;
  transform: translate3d(0, 0, 0);
  z-index: 2;
}
section.navigated .input-box > div > .input.error .error-box,
.input-box.show-error-instantly > div > .input.error .error-box,
section.navigated .input-box > div > div > .input.error .error-box,
.input-box.show-error-instantly > div > div > .input.error .error-box,
section.navigated .input-box.preview-error > div > .input .error-box,
.input-box.show-error-instantly.preview-error > div > .input .error-box {
  display: flex;
  align-items: center;
}
section.navigated .input-box > div > .input.error input,
.input-box.show-error-instantly > div > .input.error input,
section.navigated .input-box > div > div > .input.error input,
.input-box.show-error-instantly > div > div > .input.error input,
section.navigated .input-box.preview-error > div > .input input,
.input-box.show-error-instantly.preview-error > div > .input input,
section.navigated .input-box > div > .input.error .input-decorator,
.input-box.show-error-instantly > div > .input.error .input-decorator,
section.navigated .input-box > div > div > .input.error .input-decorator,
.input-box.show-error-instantly > div > div > .input.error .input-decorator,
section.navigated .input-box.preview-error > div > .input .input-decorator,
.input-box.show-error-instantly.preview-error > div > .input .input-decorator {
  border-bottom: 0;
  border-width: 1px;
  border-style: solid;
  border-color: #d0011b;
}
section.navigated .input-box > div > .input.error input,
.input-box.show-error-instantly > div > .input.error input,
section.navigated .input-box > div > div > .input.error input,
.input-box.show-error-instantly > div > div > .input.error input,
section.navigated .input-box.preview-error > div > .input input,
.input-box.show-error-instantly.preview-error > div > .input input {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
section.navigated .input-box > div > .input.error .input-box:not(.has-focus) input,
.input-box.show-error-instantly > div > .input.error .input-box:not(.has-focus) input,
section.navigated .input-box > div > div > .input.error .input-box:not(.has-focus) input,
.input-box.show-error-instantly > div > div > .input.error .input-box:not(.has-focus) input,
section.navigated .input-box.preview-error > div > .input .input-box:not(.has-focus) input,
.input-box.show-error-instantly.preview-error > div > .input .input-box:not(.has-focus) input {
  background: rgba(0, 0, 0, 0.01);
}
section.navigated .input-box > div > .input.error.has-prefix input,
.input-box.show-error-instantly > div > .input.error.has-prefix input,
section.navigated .input-box > div > div > .input.error.has-prefix input,
.input-box.show-error-instantly > div > div > .input.error.has-prefix input,
section.navigated .input-box.preview-error > div > .input.has-prefix input,
.input-box.show-error-instantly.preview-error > div > .input.has-prefix input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 1px solid #eaeaeb;
}
section.navigated .input-box > div > .input.error.has-suffix input,
.input-box.show-error-instantly > div > .input.error.has-suffix input,
section.navigated .input-box > div > div > .input.error.has-suffix input,
.input-box.show-error-instantly > div > div > .input.error.has-suffix input,
section.navigated .input-box.preview-error > div > .input.has-suffix input,
.input-box.show-error-instantly.preview-error > div > .input.has-suffix input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 1px solid #eaeaeb;
}
section.navigated .input-box > div > .input.error .input-decorator,
.input-box.show-error-instantly > div > .input.error .input-decorator,
section.navigated .input-box > div > div > .input.error .input-decorator,
.input-box.show-error-instantly > div > div > .input.error .input-decorator,
section.navigated .input-box.preview-error > div > .input .input-decorator,
.input-box.show-error-instantly.preview-error > div > .input .input-decorator {
  border-bottom: none;
  border-color: #d0011b;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
section.navigated .input-box > div > .input.error .input-prefix,
.input-box.show-error-instantly > div > .input.error .input-prefix,
section.navigated .input-box > div > div > .input.error .input-prefix,
.input-box.show-error-instantly > div > div > .input.error .input-prefix,
section.navigated .input-box.preview-error > div > .input .input-prefix,
.input-box.show-error-instantly.preview-error > div > .input .input-prefix {
  border-right-color: transparent;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 0;
}
section.navigated .input-box > div > .input.error .input-suffix,
.input-box.show-error-instantly > div > .input.error .input-suffix,
section.navigated .input-box > div > div > .input.error .input-suffix,
.input-box.show-error-instantly > div > div > .input.error .input-suffix,
section.navigated .input-box.preview-error > div > .input .input-suffix,
.input-box.show-error-instantly.preview-error > div > .input .input-suffix {
  border-left-color: transparent;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
}
section.navigated .input-box.preview-error > div > .input,
.input-box.show-error-instantly.preview-error > div > .input {
  animation: none;
}
.input-inner {
  display: flex;
  position: relative;
}
.input .error-box {
  display: none;
  border-width: 1px;
  border-style: solid;
  border-top: none;
  border-right: 1px solid #d0011b;
  border-bottom: 1px solid #d0011b;
  border-left: 1px solid #d0011b;
  border-color: #d0011b;
  border-radius: 0 0 5px 5px;
  font-size: 0.9rem;
  background: #fceff1;
  color: #d0011b;
  padding: 10px;
}
.input .error-box svg {
  padding-right: 5px;
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  color: #d0011b;
}
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideOutToBottom {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}
.input-floating-label {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
  transition: all 0.2s ease-out;
  padding-left: 0.6em;
  background: transparent;
  pointer-events: none;
  max-width: 100%;
  line-height: normal;
  font-family: "Open Sans";
}
.input-floating-label > label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.input-floating-label.visible {
  opacity: 1;
  display: block;
}
.input-box.with-floating-label .input-floating-label {
  display: block;
}
.input-box.with-floating-label .input-floating-label label {
  display: initial;
  transition: color 0.2s ease-out;
  color: #bababb;
}
.input-box.with-floating-label label {
  display: none;
}
.input-box.with-floating-label input::-webkit-input-placeholder {
  color: transparent;
}
.input-box.with-floating-label input:-moz-placeholder {
  color: transparent;
}
.input-box.with-floating-label input::-moz-placeholder {
  color: transparent;
}
.input-box.with-floating-label input:-ms-input-placeholder {
  color: transparent;
}
.input-box.with-floating-label input:focus + .input-floating-label,
.input-box.with-floating-label.has-value .input-floating-label,
.input-box.with-floating-label.has-focus .input-floating-label,
.input-box.with-floating-label .input-floating-label.is-offset {
  top: -0.9rem;
}
.input-box.with-floating-label input:focus + .input-floating-label label,
.input-box.with-floating-label.has-value .input-floating-label label,
.input-box.with-floating-label.has-focus .input-floating-label label,
.input-box.with-floating-label .input-floating-label.is-offset label {
  color: #505051;
  font-size: 1em;
}
.input-box.with-floating-label .info-label {
  display: block;
}
.input-box.with-floating-label:not(.floating-label-inline) .input {
  margin-top: 1.35rem;
}
.input-box.with-floating-label.floating-label-inline .input-floating-label {
  left: 0;
  padding-left: 0.6em;
}
.input-box.with-floating-label.floating-label-inline input {
  padding-bottom: 0.7em;
  padding-top: 1.9em;
  padding-left: 0.6em;
  padding-right: 0.6em;
  font-size: 0.9em;
  font-weight: 600;
}
.input-box.with-floating-label.floating-label-inline input:focus + .input-floating-label,
.input-box.with-floating-label.floating-label-inline.has-value .input-floating-label,
.input-box.with-floating-label.floating-label-inline.has-focus .input-floating-label,
.input-box.with-floating-label.floating-label-inline .input-floating-label.is-offset {
  top: 0;
  transform: translateX(0);
  font-size: 0.9em;
  padding-left: 0.6em;
  padding-top: 0.7em;
}
/**/
/**
 * Autosuggest Custom Theme
 */
.autocomplete-list {
  border-width: 1px;
  border-style: solid;
  border-top: 1px solid #eaeaeb;
  border-right: 1px solid #eaeaeb;
  border-bottom: 1px solid #eaeaeb;
  border-left: 1px solid #eaeaeb;
  border-color: #eaeaeb;
  border-radius: 3px 3px 3px 3px;
  font-size: 16px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-top: 3px;
  visibility: hidden;
  position: absolute;
  width: 100%;
  z-index: 4;
}
.autocomplete-list > div {
  cursor: pointer;
  padding: 10px;
  font-family: "Open Sans";
  font-size: 16px;
  color: #bababb;
  background: #ffffff;
}
.autocomplete-list > div:hover,
.autocomplete-list > div[aria-selected='true'] {
  color: #ffffff;
  background: #2b50aa;
}
.autocomplete-list > div:hover mark,
.autocomplete-list > div[aria-selected='true'] mark {
  color: white;
}
.autocomplete-list > div:first-child {
  border-radius: 3px 3px 0 0;
}
.autocomplete-list > div:last-child {
  border-radius: 0 0 3px 3px;
}
.autocomplete-list mark {
  background-color: transparent;
  font-weight: bold;
}
.input .status-indicator {
  font-size: 1rem;
  transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  visibility: hidden;
  position: absolute;
  top: 50%;
  right: 0.6em;
}
.input .status-indicator svg {
  height: 100%;
  width: 100%;
}
.input .status-indicator .icon-spinner,
.input .status-indicator .icon-check-mark,
.input .status-indicator .icon-x-mark {
  animation: fadeScaleOut 0.1s;
}
.input .status-indicator .icon-check-mark {
  color: #30AB66;
}
.input .status-indicator .icon-x-mark {
  color: #d0011b;
}
.input .status-indicator > div {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}
.input[data-status='loading'] .status-indicator .icon-spinner {
  animation: fadeScaleIn 0.2s;
  opacity: 1;
}
.input[data-status='success'] .status-indicator .icon-check-mark {
  animation: fadeScaleIn 0.2s;
  opacity: 1;
}
.input[data-status='error'] .status-indicator .icon-x-mark {
  animation: fadeScaleIn 0.2s;
  opacity: 1;
}
.input[data-status='error'] .status-indicator:not(.hidden),
.input[data-status='success'] .status-indicator:not(.hidden),
.input[data-status='loading'] .status-indicator:not(.hidden) {
  visibility: visible;
}
.input[data-status] input {
  padding-right: calc(0.6em + 1.5em);
}
@keyframes fadeScaleIn {
  from {
    transform: scale(0.75);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeScaleOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.75);
    opacity: 0;
  }
}
/** End Input **/
.date-picker-block-body > label {
  padding-bottom: 5px;
}
.date-picker-block-content .input .decorators-wrapper {
  display: flex;
}
.date-picker-block-content .input .decorators-wrapper input {
  cursor: pointer;
}
.date-picker-block-content .input .decorators-wrapper .date-picker-dummy-input {
  width: 0;
  border-color: transparent;
  border-left: none;
  border-right: none;
  padding-left: 0;
  padding-right: 0;
}
.date-picker-block-content .input .decorators-wrapper .flatpickr-wrapper {
  width: 100%;
}
.date-picker-block-content .input .decorators-wrapper .input-wrapper {
  flex: 1;
  position: relative;
}
.date-picker-block-content .input.error {
  animation: shake 0.5s linear both;
  transform: translate3d(0, 0, 0);
}
.date-picker-block-content .input.error .decorators-wrapper {
  border-color: #d0011b;
  border-style: solid;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.date-picker-block-content .input.error .error-box {
  display: flex;
  align-items: center;
}
.date-picker-block-content .input.error input,
.date-picker-block-content .input.error .input-decorator {
  border-bottom: 0;
  border-width: 1px;
  border-style: solid;
  border-color: #d0011b;
}
.date-picker-block-content .input.error input {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.date-picker-block-content .input.error .date-picker-block:not(.has-focus) input {
  background: rgba(0, 0, 0, 0.01);
}
.date-picker-block-content .input.error.has-prefix input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 1px solid #eaeaeb;
}
.date-picker-block-content .input.error.has-suffix input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 1px solid #eaeaeb;
}
.date-picker-block-content .input.error .input-decorator {
  border-bottom: none;
  border-color: #d0011b;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.date-picker-block-content .input.error .input-prefix {
  border-right-color: transparent;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 0;
}
.date-picker-block-content .input.error .input-suffix {
  border-left-color: transparent;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
}
.date-picker-block-content .input.has-suffix input {
  padding-right: 0.6em;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.date-picker-block-content .input.has-prefix input {
  padding-left: 0.6em;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-decorator {
  width: auto;
  display: flex;
  align-items: center;
  line-height: normal;
  padding-top: 0;
  padding-bottom: 0;
  transition: all 0.05s;
  padding-right: 0.7em;
  padding-left: 0.7em;
  background: rgba(0, 0, 0, 0.01);
  font-size: 1.125rem;
  font-weight: 500;
  color: #505051;
  fill: currentColor;
}
.input-decorator svg {
  height: 1.125rem;
  width: 1.125rem;
}
.input-decorator.input-prefix {
  border-right: 0;
  transition: border-right 0s;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top: 1px solid #eaeaeb;
  border-bottom: 1px solid #eaeaeb;
  border-left: 1px solid #eaeaeb;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.input-decorator.input-suffix {
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top: 1px solid #eaeaeb;
  border-right: 1px solid #eaeaeb;
  border-bottom: 1px solid #eaeaeb;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.date-picker-block.has-focus .input-decorator,
.date-picker-block.is-calendar-open .input-decorator {
  border-color: #2b50aa;
  background: rgba(0, 0, 0, 0.01);
  box-shadow: 0 0 0 1px #2b50aa;
}
.flatpickr-calendar {
  --bg-light: #f0f0f0;
  --accent-color: #2b50aa;
  overflow: hidden;
  border-radius: 5px;
  font-family: "Open Sans";
}
.flatpickr-calendar.static.arrowBottom {
  bottom: calc(100% + 2px);
  top: auto;
}
.flatpickr-calendar.static.arrowTop {
  bottom: auto;
  top: calc(100% + 2px);
}
.flatpickr-calendar .flatpickr-day.flatpickr-disabled,
.flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover,
.flatpickr-calendar .flatpickr-day.flatpickr-disabled,
.flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover {
  color: rgba(0, 0, 0, 0.15);
}
.flatpickr-calendar .flatpickr-day.prevMonthDay,
.flatpickr-calendar .flatpickr-day.nextMonthDay,
.flatpickr-calendar .flatpickr-day.notAllowed,
.flatpickr-calendar .flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-calendar .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(0, 0, 0, 0.3);
}
.flatpickr-calendar .flatpickr-day {
  display: flex;
  align-items: center;
  color: #0A0908;
  position: relative;
}
.flatpickr-calendar .flatpickr-day.today {
  border-color: var(--bg-light);
}
.flatpickr-calendar .flatpickr-day.today:hover {
  border-color: transparent;
  background-color: var(--bg-light);
  color: black;
}
.flatpickr-calendar .flatpickr-day.inRange {
  box-shadow: -5px 0 0 var(--bg-light), 5px 0 0 var(--bg-light);
}
.flatpickr-calendar .flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-calendar .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-calendar .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n + 1)) {
  box-shadow: none;
}
.flatpickr-calendar .flatpickr-day.inRange,
.flatpickr-calendar .flatpickr-day.prevMonthDay.inRange,
.flatpickr-calendar .flatpickr-day.nextMonthDay.inRange,
.flatpickr-calendar .flatpickr-day.today.inRange,
.flatpickr-calendar .flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-calendar .flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-calendar .flatpickr-day:hover,
.flatpickr-calendar .flatpickr-day.prevMonthDay:hover,
.flatpickr-calendar .flatpickr-day.nextMonthDay:hover,
.flatpickr-calendar .flatpickr-day:focus,
.flatpickr-calendar .flatpickr-day.prevMonthDay:focus,
.flatpickr-calendar .flatpickr-day.nextMonthDay:focus {
  background: var(--bg-light);
  border-color: transparent;
}
.flatpickr-calendar .flatpickr-day.today:focus,
.flatpickr-calendar .flatpickr-day.selected,
.flatpickr-calendar .flatpickr-day.startRange,
.flatpickr-calendar .flatpickr-day.endRange,
.flatpickr-calendar .flatpickr-day.selected.inRange,
.flatpickr-calendar .flatpickr-day.startRange.inRange,
.flatpickr-calendar .flatpickr-day.endRange.inRange,
.flatpickr-calendar .flatpickr-day.selected:focus,
.flatpickr-calendar .flatpickr-day.startRange:focus,
.flatpickr-calendar .flatpickr-day.endRange:focus,
.flatpickr-calendar .flatpickr-day.selected:hover,
.flatpickr-calendar .flatpickr-day.startRange:hover,
.flatpickr-calendar .flatpickr-day.endRange:hover,
.flatpickr-calendar .flatpickr-day.selected.prevMonthDay,
.flatpickr-calendar .flatpickr-day.startRange.prevMonthDay,
.flatpickr-calendar .flatpickr-day.endRange.prevMonthDay,
.flatpickr-calendar .flatpickr-day.selected.nextMonthDay,
.flatpickr-calendar .flatpickr-day.startRange.nextMonthDay,
.flatpickr-calendar .flatpickr-day.endRange.nextMonthDay {
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: none;
  color: white;
}
.flatpickr-calendar .flatpickr-weekday {
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
}
.flatpickr-calendar .flatpickr-current-month {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flatpickr-calendar .flatpickr-current-month .numInput.cur-year {
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 300;
  font-size: inherit;
}
.flatpickr-calendar .flatpickr-months {
  background-color: var(--accent-color);
  padding-bottom: 10px;
}
.flatpickr-calendar .flatpickr-months * {
  color: white;
  fill: white;
}
.flatpickr-calendar .flatpickr-next-month,
.flatpickr-calendar .flatpickr-prev-month {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
}
.date-picker-block {
  /**
	 * Floating label styles
	 * TODO: these have been copied & adapted from the input.less file;
	 * extract shared code to separate file and refactor accordingly
	 * https://app.shortcut.com/heyflow/story/12869/refactor-extract-input-component-s-shared-styles-and-behavior-to-separate-file
	 */
}
.date-picker-block.is-calendar-open input {
  border-color: #2b50aa;
  background: rgba(0, 0, 0, 0.025);
  box-shadow: 0 0 0 1px #2b50aa;
}
.date-picker-block .input-floating-label {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
  transition: all 0.2s ease-out;
  padding-left: 0.6em;
  background: transparent;
  pointer-events: none;
  max-width: 100%;
  font-family: "Open Sans";
}
.date-picker-block .input-floating-label > label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.date-picker-block.with-floating-label .input-floating-label {
  display: block;
}
.date-picker-block.with-floating-label .input-floating-label label {
  transition: color 0.2s ease-out;
  color: #bababb;
}
.date-picker-block.with-floating-label input::-webkit-input-placeholder {
  color: transparent;
}
.date-picker-block.with-floating-label input:-moz-placeholder {
  color: transparent;
}
.date-picker-block.with-floating-label input::-moz-placeholder {
  color: transparent;
}
.date-picker-block.with-floating-label input:-ms-input-placeholder {
  color: transparent;
}
.date-picker-block.with-floating-label.has-value .input-floating-label,
.date-picker-block.with-floating-label.has-focus .input-floating-label,
.date-picker-block.with-floating-label.is-calendar-open .input-floating-label,
.date-picker-block.with-floating-label .input-floating-label.is-offset {
  top: -0.9rem;
}
.date-picker-block.with-floating-label.has-value .input-floating-label label,
.date-picker-block.with-floating-label.has-focus .input-floating-label label,
.date-picker-block.with-floating-label.is-calendar-open .input-floating-label label,
.date-picker-block.with-floating-label .input-floating-label.is-offset label {
  color: #505051;
  font-size: 1em;
}
.date-picker-block.with-floating-label:not(.floating-label-inline) .input {
  margin-top: 1.35rem;
}
.date-picker-block.with-floating-label.floating-label-inline .input-floating-label {
  left: 0;
  padding-left: 0.6em;
}
.date-picker-block.with-floating-label.floating-label-inline input {
  padding-bottom: 0.7em;
  padding-top: 1.9em;
  padding-left: 0.6em;
  padding-right: 0.6em;
  font-size: 0.9em;
  font-weight: 600;
}
.date-picker-block.with-floating-label.floating-label-inline.has-value .input-floating-label,
.date-picker-block.with-floating-label.floating-label-inline.has-focus .input-floating-label,
.date-picker-block.with-floating-label.floating-label-inline.is-calendar-open .input-floating-label,
.date-picker-block.with-floating-label.floating-label-inline .input-floating-label.is-offset {
  top: 0;
  transform: translateX(0);
  font-size: 0.9em;
  padding-left: 0.6em;
  padding-top: 0.7em;
}
/**/
/**
 * Custom
 */
