.rc-alert > * {
  text-align: center;
}
.rc-alert .rc-alert-content {
  text-align: left;
}
.rc-alert .rc-alert-footer {
  display: flex;
  justify-content: center;
}
.rc-alert .rc-alert-footer .rc-alert-button {
  text-align: center;
}

.rc-avatar {
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.rc-avatar.avatar-from-text > span {
  font-size: 16px;
}
.rc-avatar.avatar-from-image {
  background-size: cover;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
::-moz-focus-inner {
  border: 0;
}

::-moz-focus-outer {
  outline: none;
}

.btn-simple {
  height: 36px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 8px 32px;
  font-size: 14px;
  line-height: 20px;
  user-select: none;
  border: none;
  outline: none;
  font-family: inherit;
  color: inherit;
  background-color: transparent;
}
.btn-simple.keyboard-focus:focus * {
  text-decoration: underline;
  text-underline-position: under;
}
.btn-simple.keyboard-focus:focus .sgw-icon:before {
  color: #3669c4;
}
.btn-simple.keyboard-focus:focus.btn-action .sgw-icon:before {
  color: #ffffff;
}
.btn-simple.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn-simple.sgw-icon:before {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.btn-simple.btn-no-padding {
  padding: 0;
}
.btn-simple.btn-dark {
  background-color: #d8d8d8;
  color: #000000;
}
.btn-simple.btn-dark:hover {
  background-color: #cbcbcb;
}
.btn-simple.btn-dark:active {
  background-color: #bfbfbf;
}
.btn-simple.btn-dark a {
  color: #000000;
}
.btn-simple.btn-darker {
  background-color: #cccccc;
  color: #000000;
}
.btn-simple.btn-darker:hover {
  background-color: #bfbfbf;
}
.btn-simple.btn-darker:active {
  background-color: #b3b3b3;
}
.btn-simple.btn-darker a {
  color: #000000;
}
.btn-simple.btn-dark-grey {
  color: #ffffff;
  background-color: #6e6e6e;
}
.btn-simple.btn-dark-grey:hover {
  background-color: #616161;
}
.btn-simple.btn-dark-grey:active {
  background-color: #555555;
}
.btn-simple.btn-dark-grey a {
  color: #ffffff;
}
.btn-simple.btn-default {
  background-color: #EFEFEF;
  color: #000000;
}
.btn-simple.btn-default:hover {
  background-color: #e2e2e2;
}
.btn-simple.btn-default:hover .sgw-icon:before {
  color: #3669c4;
}
.btn-simple.btn-default:active {
  background-color: #d6d6d6;
}
.btn-simple.btn-default a {
  color: #000000;
}
.btn-simple.btn-submit {
  background-color: #6c9d0d;
  color: #ffffff;
}
.btn-simple.btn-submit:hover {
  background-color: #79ab19;
}
.btn-simple.btn-submit:active {
  background-color: #5e8d04;
}
.btn-simple.btn-submit a {
  color: #ffffff;
}
.btn-simple.btn-action {
  color: #ffffff;
  background-color: #3669c4;
}
.btn-simple.btn-action:hover {
  background-color: #537ac1;
}
.btn-simple.btn-action:active {
  background-color: #255bbb;
}
.btn-simple.btn-action a {
  color: #ffffff;
}
.btn-simple.btn-light-grey {
  color: #000000;
  background-color: #efefef;
}
.btn-simple.btn-light-grey:hover {
  background-color: #fcfcfc;
}
.btn-simple.btn-light-grey:active {
  background-color: #e5dfdf;
}
.btn-simple.btn-light-grey a {
  color: #000000;
}
.btn-simple .sgw-icon {
  width: 26px;
  height: 26px;
  padding: 0;
  margin-right: 8px;
}
.btn-simple a {
  text-decoration: none;
}
.btn-simple * > * {
  margin: 0;
}
.btn-simple.button-link {
  background-color: transparent !important;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 8px 0 16px;
}
.btn-simple.button-link div.btn-label {
  flex: 1;
  text-align: left;
}
.btn-simple.btn-stretched {
  width: 100%;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px 0 16px;
}
.btn-icon.btn-icon-after-text {
  padding: 0 16px 0 32px;
}
.btn-icon.btn-icon-after-text.button-link {
  padding: 0 8px 0 16px;
}
.btn-icon.btn-icon-after-text .sgw-icon {
  margin-right: unset;
  margin-left: 8px;
}
.btn-icon .sgw-icon:before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 21px;
  width: 26px;
  height: 26px;
  line-height: 26px;
}
.btn-icon.btn-icon-only {
  padding: 0;
  width: 36px;
  height: 36px;
}

.rc-mobile-component.btn-simple {
  height: 44px;
  font-size: 16px;
}
.rc-mobile-component.btn-simple .sgw-icon:before {
  font-size: 26px;
}
.rc-mobile-component.btn-icon.btn-icon-only {
  width: 44px;
}

.btn-icon .sgw-icon {
  position: relative;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  padding: 0;
}

.btn-simple.btn-submit .sgw-icon:before,
.btn-simple.btn-action .sgw-icon:before {
  color: #ffffff;
}

.btn-simple.sgw-icon.arrow_right_line:before {
  color: #ffffff;
  right: 8px;
  left: inherit;
}

.btn-simple:hover:before {
  color: #3669c4;
}

.btn-simple.sgw-icon.arrow_left_line:hover:before {
  color: #3669c4;
}

/* Icons */
.btn-simple.sgw-icon.arrow_left_line:before {
  color: #000000;
  left: 0;
}

.btn-simple.btn-icon-only .sgw-icon {
  margin: 0;
  position: relative;
}

.btn-simple.btn-icon-only .sgw-icon:before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btn-disabled {
  opacity: 0.5;
  pointer-events: none;
  touch-action: none;
}

.btn-danger {
  background: #D9052F;
  color: white;
}
.btn-danger > .rc-icon:before {
  color: white;
}

a.btn-simple {
  color: #000000;
  text-decoration: none;
}

@media (max-width: 800px) {
  .btn-simple {
    font-size: 16px;
  }
}
.rc-floating-button {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex: 0 0 40px;
  justify-content: center;
}
.rc-floating-button button {
  width: auto;
  border-radius: 16px;
}
.rc-floating-button button.rc-mobile-component {
  border-radius: 22px;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-card {
  padding: 16px;
  box-sizing: border-box;
}
.rc-card.rc-card-light {
  background-color: #FFFFFF;
}
.rc-card.rc-card-dark {
  background-color: #EFEFEF;
}
.rc-card > .rc-card-content {
  position: relative;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-checkbox {
  position: relative;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
}
.rc-checkbox.rc-error {
  border-bottom: none;
}
.rc-checkbox > div {
  margin-top: 2px;
}
.rc-checkbox .rc-checkbox-box {
  min-width: 12px;
  min-height: 12px;
  width: 12px;
  height: 12px;
  border: 1px solid #cccccc;
  position: relative;
  margin-right: 4px;
  margin-top: 3px;
}
.rc-checkbox .rc-checkbox-box.rc-checkbox-light {
  background-color: #ffffff;
}
.rc-checkbox .rc-checkbox-box .sgw-icon.minimize:before {
  top: 15%;
}
.rc-checkbox .rc-checkbox-box .sgw-icon:before {
  color: #6E6E6E;
  top: 50%;
  left: 43%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.rc-checkbox:hover .rc-checkbox-box {
  border-color: #3669c4;
}
.rc-checkbox:hover .sgw-icon:before {
  color: #3669c4;
}

.rc-checkbox-group {
  display: inline-flex;
  flex-direction: column;
  position: relative;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.checkout-group-content .group-content-item, .content-group-table-row .group-content-item {
  position: relative;
}
.checkout-group-content .group-content-item .group-content-item-edit, .content-group-table-row .group-content-item .group-content-item-edit {
  color: #3669c4;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.checkout-group-content .group-content, .content-group-table-row .group-content {
  margin-bottom: 8px;
}
.checkout-group-content .group-content video, .checkout-group-content .group-content img, .content-group-table-row .group-content video, .content-group-table-row .group-content img {
  max-width: 100%;
}
.checkout-group-content .group-content .group-content, .content-group-table-row .group-content .group-content {
  margin-bottom: unset;
}
.checkout-group-content .group-content.group-content-carousel.desktop-carousel, .content-group-table-row .group-content.group-content-carousel.desktop-carousel {
  display: flex;
  flex-wrap: nowrap;
}
.checkout-group-content .group-content.group-content-carousel.desktop-carousel .group-content-carousel-item, .content-group-table-row .group-content.group-content-carousel.desktop-carousel .group-content-carousel-item {
  flex: auto;
  margin-right: 16px;
}
.checkout-group-content .group-content.group-content-carousel.desktop-carousel .group-content-carousel-item:last-child, .content-group-table-row .group-content.group-content-carousel.desktop-carousel .group-content-carousel-item:last-child {
  margin-right: 0;
}
.checkout-group-content .group-content.group-content-carousel.mobile-carousel, .content-group-table-row .group-content.group-content-carousel.mobile-carousel {
  display: block;
}
.checkout-group-content .group-content.group-content-carousel.mobile-carousel .carousel-horizontal-scroll, .content-group-table-row .group-content.group-content-carousel.mobile-carousel .carousel-horizontal-scroll {
  padding-left: 8px;
  overflow-x: scroll;
}
.checkout-group-content .group-content.group-content-carousel.mobile-carousel .carousel-horizontal-scroll .carousel-horizontal-scroll-content, .content-group-table-row .group-content.group-content-carousel.mobile-carousel .carousel-horizontal-scroll .carousel-horizontal-scroll-content {
  display: inline-flex;
  box-sizing: border-box;
  padding: 0 8px 0 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
}
.checkout-group-content .group-content.group-content-carousel.mobile-carousel .carousel-horizontal-scroll .carousel-horizontal-scroll-content .group-content-carousel-item, .content-group-table-row .group-content.group-content-carousel.mobile-carousel .carousel-horizontal-scroll .carousel-horizontal-scroll-content .group-content-carousel-item {
  flex: 0 0 90vw;
  margin-right: 16px;
}
.checkout-group-content .group-content.group-content-carousel.mobile-carousel .carousel-horizontal-scroll .carousel-horizontal-scroll-content .group-content-carousel-item:last-child, .content-group-table-row .group-content.group-content-carousel.mobile-carousel .carousel-horizontal-scroll .carousel-horizontal-scroll-content .group-content-carousel-item:last-child {
  margin-right: 0;
}
.checkout-group-content .group-content.group-content-dotnav .website-promotion-banner, .content-group-table-row .group-content.group-content-dotnav .website-promotion-banner {
  margin: unset;
  position: relative;
}
.checkout-group-content .group-content.group-content-dotnav .website-promotion-banner .content, .content-group-table-row .group-content.group-content-dotnav .website-promotion-banner .content {
  display: none;
}
.checkout-group-content .group-content.group-content-dotnav .website-promotion-banner .dotted-nav, .content-group-table-row .group-content.group-content-dotnav .website-promotion-banner .dotted-nav {
  position: absolute;
  width: 100%;
  bottom: 0;
}
@media only screen and (min-width: 800px) {
  .checkout-group-content .group-content.group-content-dotnav .website-promotion-banner .slider-images picture, .content-group-table-row .group-content.group-content-dotnav .website-promotion-banner .slider-images picture {
    padding-bottom: calc(100% / 2.169);
  }
}
.checkout-group-content .group-content.group-content-label, .content-group-table-row .group-content.group-content-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.checkout-group-content .group-content.group-content-label p, .content-group-table-row .group-content.group-content-label p {
  width: 100%;
}
.checkout-group-content .group-content.group-content-label p + p, .content-group-table-row .group-content.group-content-label p + p {
  margin-top: 16px;
}
.checkout-group-content .group-content.group-content-label p:last-child, .content-group-table-row .group-content.group-content-label p:last-child {
  margin-bottom: 16px;
}
.checkout-group-content .group-content.group-content-label.group-important, .content-group-table-row .group-content.group-content-label.group-important {
  font-weight: bold;
}
.checkout-group-content .group-content.group-content-label .label-heading, .content-group-table-row .group-content.group-content-label .label-heading {
  font-size: 18px;
}
.checkout-group-content .group-content.group-content-label.label-heading-bold, .content-group-table-row .group-content.group-content-label.label-heading-bold {
  font-size: 18px;
  font-weight: bold;
}
.checkout-group-content .group-content.group-content-label.rc-mobile-component.label-heading, .content-group-table-row .group-content.group-content-label.rc-mobile-component.label-heading {
  font-size: 24px;
}
.checkout-group-content .group-content.group-content-label.rc-mobile-component.label-heading-bold, .content-group-table-row .group-content.group-content-label.rc-mobile-component.label-heading-bold {
  font-size: 24px;
  font-weight: bold;
}
.checkout-group-content .group-content.group-content-project-page-svg, .content-group-table-row .group-content.group-content-project-page-svg {
  position: relative;
}
.checkout-group-content .group-content.group-content-checkbox, .checkout-group-content .group-content.group-content-label, .content-group-table-row .group-content.group-content-checkbox, .content-group-table-row .group-content.group-content-label {
  width: unset;
  flex: 0;
  min-height: 36px;
  font-size: 14px;
}
.checkout-group-content .group-content.group-content-checkbox.rc-mobile-component, .checkout-group-content .group-content.group-content-label.rc-mobile-component, .content-group-table-row .group-content.group-content-checkbox.rc-mobile-component, .content-group-table-row .group-content.group-content-label.rc-mobile-component {
  min-height: 44px;
}
.checkout-group-content .group-content.group-content-key-value, .content-group-table-row .group-content.group-content-key-value {
  padding: 4px 16px 12px 0;
}
.checkout-group-content .group-content.group-content-key-value .group-content-key-value-key, .content-group-table-row .group-content.group-content-key-value .group-content-key-value-key {
  line-height: 20px;
  font-size: 14px;
  margin: unset;
}
.checkout-group-content .group-content.group-content-key-value .group-content-key-value-value, .content-group-table-row .group-content.group-content-key-value .group-content-key-value-value {
  line-height: 20px;
  font-size: 18px;
}
.checkout-group-content .group-content.group-content-key-value .group-content-key-value-value s, .content-group-table-row .group-content.group-content-key-value .group-content-key-value-value s {
  font-weight: normal;
}
.checkout-group-content .group-content.group-content-key-value p, .content-group-table-row .group-content.group-content-key-value p {
  margin-top: unset;
  margin-bottom: unset;
}
.checkout-group-content .group-content.group-content-radio-group, .content-group-table-row .group-content.group-content-radio-group {
  margin-top: 1px;
  min-height: 36px;
  font-size: 14px;
}
.checkout-group-content .group-content.group-content-radio-group .radio-container, .checkout-group-content .group-content.group-content-radio-group label, .content-group-table-row .group-content.group-content-radio-group .radio-container, .content-group-table-row .group-content.group-content-radio-group label {
  cursor: pointer;
}
.checkout-group-content .group-content.group-content-radio-group .group-content-radio .radio-container label strong, .content-group-table-row .group-content.group-content-radio-group .group-content-radio .radio-container label strong {
  color: #686868;
}
.checkout-group-content .group-content.group-content-radio-group .group-content-radio.selected .radio-container label strong, .content-group-table-row .group-content.group-content-radio-group .group-content-radio.selected .radio-container label strong {
  color: #000000;
}
.checkout-group-content .group-content.group-content-radio-group .rc-radio, .content-group-table-row .group-content.group-content-radio-group .rc-radio {
  align-items: flex-start;
  display: inline-flex;
  margin: 0;
}
.checkout-group-content .group-content.group-content-radio-group .rc-radio .rc-radio-element, .content-group-table-row .group-content.group-content-radio-group .rc-radio .rc-radio-element {
  margin-top: 2px;
}
.checkout-group-content .group-content.group-content-radio-group .rc-radio .rc-radio-label, .content-group-table-row .group-content.group-content-radio-group .rc-radio .rc-radio-label {
  line-height: 1.5em;
  flex: 1;
}
.checkout-group-content .group-content.group-content-spacer, .content-group-table-row .group-content.group-content-spacer {
    display: block;
    height: 8px;
    margin-bottom: 0;
}
.checkout-group-content .group-content.group-content-spacer-big, .content-group-table-row .group-content.group-content-spacer-big {
    display: block;
    height: 16px;
    margin-bottom: 0;
}
.checkout-group-content .group-content.group-content-divider, .content-group-table-row .group-content.group-content-divider {
  margin-top: 16px;
  margin-bottom: 15px;
  height: 1px;
  background-color: #dcdcdc;
}
.checkout-group-content .group-content.group-content-button.button-submit, .content-group-table-row .group-content.group-content-button.button-submit {
  padding: 8px 0;
}
.checkout-group-content .group-content.group-content-button.button-link, .content-group-table-row .group-content.group-content-button.button-link {
  padding-bottom: 4px;
  margin-bottom: 3px;
  border-bottom: 1px solid #CCCCCC;
  box-sizing: border-box;
}
.checkout-group-content .group-content.group-content-horizontal-group, .checkout-group-content .group-content.group-content-horizontal-group-line-break, .content-group-table-row .group-content.group-content-horizontal-group, .content-group-table-row .group-content.group-content-horizontal-group-line-break {
  display: flex;
  flex-direction: row;
}
.checkout-group-content .group-content.group-content-horizontal-group > *, .checkout-group-content .group-content.group-content-horizontal-group-line-break > *, .content-group-table-row .group-content.group-content-horizontal-group > *, .content-group-table-row .group-content.group-content-horizontal-group-line-break > * {
  margin-right: 8px;
  width: 100%;
}
.checkout-group-content .group-content.group-content-horizontal-group > *:last-child, .checkout-group-content .group-content.group-content-horizontal-group-line-break > *:last-child, .content-group-table-row .group-content.group-content-horizontal-group > *:last-child, .content-group-table-row .group-content.group-content-horizontal-group-line-break > *:last-child {
  margin-right: 0;
}
.checkout-group-content .group-content.group-content-horizontal-group .group-content-key-value.group-content, .checkout-group-content .group-content.group-content-horizontal-group-line-break .group-content-key-value.group-content, .content-group-table-row .group-content.group-content-horizontal-group .group-content-key-value.group-content, .content-group-table-row .group-content.group-content-horizontal-group-line-break .group-content-key-value.group-content {
  width: unset;
}
.checkout-group-content .group-content.group-content-horizontal-group button.btn-icon-only, .checkout-group-content .group-content.group-content-horizontal-group-line-break button.btn-icon-only, .content-group-table-row .group-content.group-content-horizontal-group button.btn-icon-only, .content-group-table-row .group-content.group-content-horizontal-group-line-break button.btn-icon-only {
  flex: 0 0 25px;
}
.checkout-group-content .group-content.group-content-horizontal-group .numeric-buttons button.btn-icon-only, .checkout-group-content .group-content.group-content-horizontal-group-line-break .numeric-buttons button.btn-icon-only, .content-group-table-row .group-content.group-content-horizontal-group .numeric-buttons button.btn-icon-only, .content-group-table-row .group-content.group-content-horizontal-group-line-break .numeric-buttons button.btn-icon-only {
  flex-basis: 17px;
  width: 26px;
}
.checkout-group-content .group-content.group-content-drop-down .select-options-list, .content-group-table-row .group-content.group-content-drop-down .select-options-list {
  max-height: 200px;
  overflow-y: auto;
}
.checkout-group-content .group-content.group-color, .content-group-table-row .group-content.group-color {
  color: #d7032c;
  font-weight: bold;
}
.checkout-group-content .group-content.group-color.group-content-progressbar .progress-bar-filled, .content-group-table-row .group-content.group-color.group-content-progressbar .progress-bar-filled {
  background-color: #d7032c;
}
.checkout-group-content .group-content.group-small, .content-group-table-row .group-content.group-small {
  flex: 0 0 25%;
}
.checkout-group-content .group-content.group-content-switch, .content-group-table-row .group-content.group-content-switch {
  display: flex;
  flex-wrap: nowrap;
}
.checkout-group-content .group-content.group-content-switch .group-content-label, .content-group-table-row .group-content.group-content-switch .group-content-label {
  flex: 1;
}
.checkout-group-content .group-content.group-content-avatar, .content-group-table-row .group-content.group-content-avatar {
  width: 48px;
  height: 48px;
}
.checkout-group-content .group-content.group-content-avatar .avatar-from-text > span, .content-group-table-row .group-content.group-content-avatar .avatar-from-text > span {
  font-size: 18px;
}
.checkout-group-content .group-content.group-content-project-page, .content-group-table-row .group-content.group-content-project-page {
  margin-bottom: 16px;
}
.checkout-group-content .group-content.group-content-project-page .group-content-project-page-svg, .content-group-table-row .group-content.group-content-project-page .group-content-project-page-svg {
  position: relative;
}
.checkout-group-content .group-content.group-content-project-page .group-content-project-page-svg svg, .content-group-table-row .group-content.group-content-project-page .group-content-project-page-svg svg {
  height: auto;
  width: 100%;
  display: block;
}
.checkout-group-content .group-content .rc-component, .content-group-table-row .group-content .rc-component {
  width: 100%;
  max-width: unset;
}
.checkout-group-content .group-content.group-content-image, .content-group-table-row .group-content.group-content-image {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.checkout-group-content .group-content.group-content-image.group-align-left, .content-group-table-row .group-content.group-content-image.group-align-left {
  align-items: flex-start;
}
.checkout-group-content .group-content.group-content-image.group-align-right, .content-group-table-row .group-content.group-content-image.group-align-right {
  align-items: flex-end;
}
.checkout-group-content .group-content.group-content-tabcontrol, .content-group-table-row .group-content.group-content-tabcontrol {
  display: flex;
  justify-content: center;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-confirm {
  /*> * {
      text-align: center;
  }*/
}
.rc-confirm .rc-confirm-content {
  text-align: left;
}

.rc-confirm-footer {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.rc-confirm-footer button:first-child {
  margin-right: 4px;
}
.rc-confirm-footer button:last-child {
  margin-left: 4px;
}

.rc-confirm-title {
  display: flex;
  justify-content: left;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 18px;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-dialog-open > *:not(.rc-dialog):not(.apip-error-alert):not(.rc-loader-locked):not(.rc-loader) {
  -webkit-filter: blur(4px);
  -ms-filter: blur(4px);
  filter: blur(4px);
}

.rc-dialog .rc-dialog-wrapper {
  flex: auto;
}
.rc-dialog .rc-dialog-wrapper.wide-dialog {
  max-width: 672px;
  min-width: 320px;
}
.rc-dialog .rc-dialog-wrapper.slim-dialog {
  max-width: 446px;
  min-width: 320px;
}
.rc-dialog .rc-dialog-wrapper .rc-dialog-content .dialog-control {
  display: flex;
  justify-content: space-between;
  margin: -16px -16px 0;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 10;
  flex: 0;
}
.rc-dialog .rc-dialog-wrapper .rc-dialog-content .dialog-control .close-button {
  z-index: 1;
}
.rc-dialog .rc-dialog-wrapper .rc-dialog-content .dialog-control .dialog-title {
  min-height: 36px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.rc-dialog.dialog-with-scrollable-content .rc-dialog-wrapper .rc-dialog-content {
  padding: unset;
  max-height: 90vh;
}
.rc-dialog.dialog-with-scrollable-content .rc-dialog-wrapper .rc-dialog-content .dialog-control {
  margin: 0;
}
.rc-dialog.dialog-with-scrollable-content .rc-dialog-wrapper .rc-dialog-content .dialog-scrollable-content {
  flex: 1;
  overflow: hidden;
  overflow-y: auto;
  padding: 16px;
  position: relative;
}
.rc-dialog.dialog-with-scrollable-content .rc-dialog-wrapper .rc-dialog-content .dialog-scrollable-content.rc-mobile-view-dark {
  background-color: #efefef;
}
.rc-dialog.dialog-with-scrollable-content .rc-dialog-wrapper .rc-dialog-content .dialog-scrollable-content.rc-mobile-view-light {
  background-color: #FFFFFF;
}

@media (min-width: 500px) {
  .rc-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .rc-dialog.rc-dialog-blur {
    -webkit-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
  }
  .rc-dialog.rc-dialog-bg-shadow:before {
    content: "";
    width: 100%;
    height: 100vh;
    position: absolute;
    background-color: #353840;
    opacity: 0.8;
  }
}
@media (min-width: 500px) and (max-height: 800px) {
  .rc-dialog.rc-dialog-bg-shadow:before {
    height: 150vh;
  }
}
@media (min-width: 500px) {
  .rc-dialog .rc-dialog-wrapper {
    display: flex;
    position: relative;
    width: auto;
    pointer-events: none;
    align-items: center;
    margin: 16px auto;
    min-height: calc(100% - (16px * 2));
    max-width: 500px;
  }
  .rc-dialog .rc-dialog-wrapper .rc-dialog-content {
    position: relative;
    display: flex;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 16px;
    pointer-events: auto;
    -webkit-box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.4);
  }
  .rc-dialog .rc-dialog-wrapper .rc-dialog-content.no-padding {
    padding: 0;
  }
  .rc-dialog .rc-dialog-wrapper .rc-dialog-content.no-background {
    background: unset;
    box-shadow: unset;
  }
}
@media (min-width: 500px) and (max-height: 800px) {
  .rc-dialog {
    overflow-y: auto;
  }
}
@media (max-width: 500px) {
  .rc-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .rc-dialog.rc-dialog-blur {
    -webkit-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
  }
  .rc-dialog.rc-dialog-bg-shadow:before {
    content: "";
    background-color: #353840;
    opacity: 0.8;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
  }
  .rc-dialog .rc-dialog-wrapper {
    display: flex;
    position: relative;
    width: auto;
    pointer-events: none;
    align-items: center;
    margin: 0 auto;
    min-height: calc(100% - (16px * 2));
    max-width: 500px;
  }
  .rc-dialog .rc-dialog-wrapper .rc-dialog-content {
    position: relative;
    display: flex;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 16px;
    pointer-events: auto;
    overflow: auto;
    max-height: 75vh;
    margin: 0 auto;
    -webkit-box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.4);
  }
  .rc-dialog .rc-dialog-wrapper .rc-dialog-content .tooltip-text > p {
    padding-bottom: 0;
  }
  .rc-dialog .rc-dialog-wrapper .rc-dialog-content.no-padding {
    padding: 0;
  }
  .rc-dialog .rc-dialog-wrapper .rc-dialog-content.no-background {
    background: unset;
    box-shadow: unset;
  }
  .rc-dialog .rc-dialog-wrapper .rc-alert-footer {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    min-height: 40px;
    z-index: 20;
    padding: 10px 0;
    background-color: white;
  }
}
@media (max-width: 500px) and (max-height: 800px) {
  .rc-dialog:not(.rc-confirm) {
    overflow-y: auto;
  }
}
@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-file-upload {
  position: relative;
  display: inline-flex;
}
.rc-file-upload .rc-icon {
  margin-right: 4px;
}
.rc-file-upload.rc-error .rc-error-label {
  display: block;
}
.rc-file-upload input[type=file] {
  display: none;
  /*opacity: 0;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  text-indent: -999px;*/
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
form .btn-simple.keyboard-focus:focus * {
  text-decoration: underline;
  text-underline-position: under;
}
form .btn-simple.keyboard-focus:focus .sgw-icon:before {
  color: #3669c4;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-input {
  position: relative;
  height: 36px;
  border-bottom: 1px solid #CCCCCC;
  box-sizing: border-box;
  display: inline-flex;
  align-items: flex-end;
  cursor: text;
  min-width: 80px;
}
.rc-input.rc-empty-input:not(.focus) > .rc-label {
  margin-top: 0;
}
.rc-input.rc-input-dark {
  background-color: #EFEFEF;
}
.rc-input.rc-input-light {
  background-color: #FFFFFF;
}
.rc-input.rc-input-small {
  height: 25px;
  min-width: 50px;
}
.rc-input.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.rc-input:hover {
  border-bottom: 1px solid #3669c4;
}
.rc-input:hover > .rc-label {
  color: #3669c4;
}
.rc-input.valid {
  border-bottom: 1px solid #6c9d0d;
}
.rc-input.valid > .rc-label {
  color: #6c9d0d;
}
.rc-input.focus {
  border-bottom: 1px solid #3669c4;
}
.rc-input.focus .rc-error {
  display: block;
}
.rc-input.focus > .rc-label {
  color: #3669c4;
}
.rc-input > .rc-label {
  position: absolute;
  top: 4px;
  left: 8px;
  line-height: 12px;
  font-size: 12px;
  color: #5d5d5d;
  cursor: text;
  pointer-events: none;
  touch-action: none;
  transition: all 0.3s;
  z-index: 1;
  white-space: nowrap;
}
.rc-input > .rc-label .rc-icon {
  display: inline-flex;
  padding-left: 14px;
  height: inherit;
  position: relative;
}
.rc-input > .rc-label .sgw-icon:before,
.rc-input > .rc-label .checkbox:before,
.rc-input > .rc-label .sgw-upload-stage:before {
  color: inherit;
}
.rc-input > .rc-label.empty-input {
  top: 50%;
  font-size: 14px;
  color: #000000;
  transform: translate(0, -50%);
  z-index: 0;
  white-space: unset;
}
.rc-input .rc-input-wrapper {
  position: relative;
  color: rgba(0, 0, 0, 0.87);
  cursor: text;
  display: inline-flex;
  width: 100%;
  padding-left: 8px;
}
.rc-input .rc-input-wrapper input {
  font-family: "SourceSansPro-Regular", sans-serif;
  flex: auto;
  height: auto;
  width: 100%;
  border: none;
  font-size: 14px;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
  margin: 0;
  outline: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
.rc-input.mobile-numeric {
  display: flex;
}
.rc-input.mobile-numeric .rc-input-wrapper {
  height: 100%;
  flex: 1;
}
.rc-input.mobile-numeric .rc-input-wrapper input {
  padding: 2px;
  text-align: center;
}
.rc-input.mobile-numeric .btn-simple.btn-icon-only {
  width: 44px;
  height: 44px;
}
.rc-input.rc-empty-input:not(.focus) .rc-input-wrapper {
  display: flex;
  align-self: center;
}
.rc-input .numeric-buttons {
  justify-self: flex-end;
  position: relative;
  display: flex;
  flex-direction: column;
}
.rc-input .numeric-buttons :hover {
  background-color: #e2e2e2;
}
.rc-input .numeric-buttons .numeric-arrow-down {
  height: 17px;
  padding: 0;
  overflow: hidden;
}
.rc-input .numeric-buttons .numeric-arrow-up {
  height: 17px;
  padding: 0;
  overflow: hidden;
}
.rc-input .numeric-buttons .sgw-icon {
  height: 17px;
}
.rc-input .numeric-buttons .sgw-icon :before {
  color: #6e6e6e;
  height: 17px;
  line-height: 17px;
}
.rc-input .numeric-buttons > div {
  width: 21px;
  height: 21px;
  position: relative;
}
.rc-input.rc-mobile-component {
  height: 44px;
}
.rc-input.rc-mobile-component .rc-label.empty-input {
  font-size: 16px;
}
.rc-input.rc-mobile-component .rc-input-wrapper {
  padding-bottom: 4px;
}
.rc-input.rc-mobile-component .rc-input-wrapper input {
  font-size: 16px;
}
.rc-input input[type=date] {
  min-height: 24px;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-loader-locked {
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rc-loader-content-locked {
  position: absolute;
  z-index: 100000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rc-loader {
  background-color: #EFEFEF;
  font-size: 0;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100001;
  overflow: hidden;
}
.rc-loader.content-loader {
  position: absolute;
}
.rc-loader > div > div {
  width: 6px;
  height: 8px;
  background-color: #c2c2c2;
  margin: 1px;
  display: inline-block;
  -webkit-animation: rc-loader-key-frame 1s infinite;
  animation: rc-loader-key-frame 1s infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.rc-loader .rc-loader-i1 {
  -webkit-animation-delay: 0.33s;
  animation-delay: 0.33s;
}
.rc-loader .rc-loader-i2 {
  -webkit-animation-delay: 0.66s;
  animation-delay: 0.66s;
}

@-webkit-keyframes rc-loader-key-frame {
  0% {
    background-color: #c2c2c2;
  }
  10% {
    background-color: #868686;
  }
}
@keyframes rc-loader-key-frame {
  0% {
    background-color: #c2c2c2;
  }
  10% {
    background-color: #868686;
  }
}
@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-mobile-view {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
}
.rc-mobile-view button {
  touch-action: manipulation;
}

.rc-mobile-view > main {
  overflow: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex: 1;
}
.rc-mobile-view > main.rc-mobile-view-dark {
  background-color: #efefef;
}
.rc-mobile-view > main.rc-mobile-view-light {
  background-color: #FFFFFF;
}
.rc-mobile-view > main > div {
  width: 100%;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-mobile-view footer {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 8px 8px 16px;
  border-top: 1px solid #dcdcdc;
  box-sizing: border-box;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
  position: -webkit-sticky;
  /* Safari */
  position: relative;
  bottom: 0;
}
.rc-mobile-view footer.mobile-tabs {
  flex: 0 0 60px;
  flex-direction: row;
}
.rc-mobile-view footer.mobile-tabs > div {
  flex: 1;
  display: flex;
  justify-content: center;
}
.rc-mobile-view footer.mobile-tabs > div.tab-active {
  color: #3669c4;
}
.rc-mobile-view footer.mobile-tabs > div.tab-active .rc-icon:before {
  color: #3669c4;
}
.rc-mobile-view footer.mobile-tabs > div button {
  display: flex;
  flex-direction: column;
  padding: unset;
  height: 60px;
}
.rc-mobile-view footer.mobile-tabs > div button.btn-icon .sgw-icon {
  margin-right: unset;
}
.rc-mobile-view footer.mobile-dark-footer {
  background-color: #000000;
  color: #FFFFFF;
  border-top: 1px solid #000000;
}
.rc-mobile-view footer.mobile-dark-footer button .sgw-icon:before {
  color: #FFFFFF;
}
.rc-mobile-view footer .footer-submit-button {
  width: 100%;
}
.rc-mobile-view footer .footer-submit-button .btn-simple.btn-submit, .rc-mobile-view footer .footer-submit-button .btn-simple.btn-action {
  width: 100%;
}
.rc-mobile-view footer .rc-mobile-priceinfo {
  text-align: right;
}
.rc-mobile-view footer .rc-mobile-priceinfo .price-info {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  height: 100%;
}
.rc-mobile-view footer .rc-mobile-priceinfo .valid-to {
  color: #d9052f;
  margin-left: 8px;
}
.rc-mobile-view footer .rc-mobile-priceinfo .price-original {
  text-decoration: line-through;
  margin-right: 4px;
  margin-bottom: 1px;
  color: #868686;
  font-size: 18px;
}
.rc-mobile-view footer .rc-mobile-priceinfo .price {
  font-size: 18px;
}
.rc-mobile-view footer .rc-mobile-priceinfo .rc-mobile-priceinfo-info {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.rc-mobile-view footer .rc-mobile-priceinfo .rc-mobile-priceinfo-info .valid-to {
  color: #d9052f;
  margin-left: 8px;
}
.rc-mobile-view footer .rc-mobile-priceinfo .rc-mobile-priceinfo-info > * {
  white-space: nowrap;
}
.rc-mobile-view footer label {
  width: 100%;
  font-size: 14px;
  display: block;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-mobile-view > header {
  flex: 0 0 44px;
  width: 100%;
  background-color: #ffffff;
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 0;
  border-bottom: 1px solid #dcdcdc;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  padding: 0 8px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.28);
  /*button {
      width: 32px;
      height: 48px;

      .sgw-icon:before {
          width: 32px;
          height: 48px;
          line-height: 48px;
          font-size: 20px;
      }
  }*/
}
.rc-mobile-view > header.mobile-black-options-header {
  background-color: #000000;
  color: #FFFFFF;
  border-bottom: 1px solid #000000;
}
.rc-mobile-view > header.mobile-black-options-header button .sgw-icon:before {
  color: #FFFFFF;
}
.rc-mobile-view > header .back-button {
  position: absolute;
  left: 0;
  /* button {
       width: 32px;

       .sgw-icon:before {
           width: 32px;
           font-size: 32px;
       }
   }*/
}
.rc-mobile-view > header .mobile-page-title {
  flex: 1;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  line-height: 20px;
  align-self: center;
  margin: 0 32px;
}
.rc-mobile-view > header.mobile-options-header {
  background-color: #3669c4;
}
.rc-mobile-view > header.mobile-options-header button .sgw-icon:before {
  color: #ffffff;
}
.rc-mobile-view > header.mobile-options-header .mobile-page-title {
  color: #ffffff;
}

.rc-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  border-top: 1px solid #dcdcdc;
}
.rc-mobile-menu.non-modal {
  position: relative;
}
.rc-mobile-menu:before {
  content: "";
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #6e6e6e;
  opacity: 0.8;
}
.rc-mobile-menu .menu-divider {
  height: 1px;
  width: 100%;
  margin: 8px 16px;
  background-color: #cccccc;
}
.rc-mobile-menu .mobile-menu-content {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 11;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.rc-mobile-menu .mobile-menu-content > div > .btn-simple, .rc-mobile-menu .mobile-menu-content > .btn-simple {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin: 0 4px;
}
.rc-mobile-menu .mobile-menu-content > div {
  width: 100%;
}
.rc-mobile-menu .mobile-menu-content > hr {
  width: 100%;
  border: 0;
  border-top: 1px solid #dcdcdc;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-multi-accept-input form {
  display: flex;
  flex-wrap: wrap;
}
.rc-multi-accept-input form > * {
  margin-right: 8px;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-radio {
  display: flex;
  cursor: pointer;
  align-items: center;
  user-select: none;
  margin: 4px 2px;
}
.rc-radio .rc-radio-element {
  margin-right: 8px;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: 1px solid #cccccc;
  position: relative;
}
.rc-radio .rc-radio-element.selected:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #333333;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.rc-radio .rc-radio-element.disabled {
  opacity: 0.5;
}
.rc-radio img {
  margin-right: 8px;
}
.rc-radio:hover .rc-radio-element.selected:before {
  background: #3669c4;
}
.rc-radio:hover .rc-radio-element {
  border-color: #3669c4;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-select {
  position: relative;
  user-select: none;
  text-align: left;
}
.rc-select:focus {
  outline: none;
}
.rc-select.rc-select-dark {
  background: #EFEFEF;
}
.rc-select.rc-select-light {
  background: #FFFFFF;
}
.rc-select.rc-select-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.rc-select .select-options-wrapper:focus {
  outline: none;
}
.rc-select > label {
  position: absolute;
  top: 4px;
  left: 8px;
  font-size: 12px;
  z-index: 1;
  cursor: pointer;
  color: #5d5d5d;
}
.rc-select > label.no-selection {
  top: 50%;
  font-size: 14px;
  color: #000000;
  transform: translate(0, -50%);
}
.rc-select:hover > label, .rc-select.focusin > label {
  color: #3669c4;
}
.rc-select:hover .selected-option, .rc-select.focusin .selected-option {
  border-color: #3669c4;
}
.rc-select:hover .selected-option > .sgw-icon:before, .rc-select.focusin .selected-option > .sgw-icon:before {
  color: #3669c4;
}
.rc-select.open .select-options-list {
  visibility: visible;
  opacity: 1;
}
.rc-select.open > label {
  color: #3669c4;
}
.rc-select.open .rc-select-component-wrapper {
  padding: 16px;
  cursor: default;
}
.rc-select.open .rc-select-component-wrapper h2 {
  margin-top: 0;
  margin-bottom: 8px;
}
.rc-select.open .rc-select-component-wrapper p {
  margin-bottom: 0;
}
.rc-select.open .selected-option {
  border-color: #3669c4;
}
.rc-select.open .selected-option > .sgw-icon:before {
  color: #3669c4;
}
.rc-select.no-prompt .selected-option .selected-option-label {
  font-size: 14px;
  align-self: center;
}
.rc-select .selected-option {
  display: flex;
  position: relative;
  height: 36px;
  align-items: flex-end;
  cursor: pointer;
  padding-left: 8px;
  box-sizing: border-box;
  border-bottom: 1px solid #cccccc;
}
.rc-select .selected-option .sgw-icon.arrow_down2 {
  width: 26px;
  height: 26px;
  position: relative;
  align-self: center;
}
.rc-select .selected-option .sgw-icon:before {
  width: 26px;
  height: 26px;
  line-height: 26px;
  position: relative;
  left: unset;
  top: unset;
}
.rc-select .selected-option .selected-option-label {
  flex: auto;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}
.rc-select .select-options-list {
  position: absolute;
  top: 100%;
  min-width: 100%;
  box-shadow: 0 1px 3px #5F5F5F;
  background: #FFFFFF;
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  max-height: 200px;
  overflow: auto;
}
.rc-select .select-options-list .select-options-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 4px;
  margin-bottom: 2px;
  background: #FFFFFF;
  font-weight: normal;
}
.rc-select .select-options-list .select-options-item.image-right .option-text {
  order: 1;
}
.rc-select .select-options-list .select-options-item.image-right .option-image {
  order: 2;
}
.rc-select .select-options-list .select-options-item.image-left .option-text {
  order: 2;
}
.rc-select .select-options-list .select-options-item.image-left .option-image {
  order: 1;
}
.rc-select .select-options-list .select-options-item:nth-child(odd) {
  background: #EFEFEF;
}
.rc-select .select-options-list .select-options-item.selected, .rc-select .select-options-list .select-options-item.focusin {
  background: #D8D8D8;
}
.rc-select .select-options-list .select-options-item:hover:not(.disabled):not(.focusin) {
  background: #E8E8E8;
}
.rc-select .select-options-list .select-options-item.disabled {
  opacity: 0.5;
}
.rc-select.rc-mobile-component .selected-option {
  height: 44px;
  padding-bottom: 4px;
}
.rc-select.rc-mobile-component .selected-option .selected-option-label {
  font-size: 16px;
}
.rc-select.rc-mobile-component label.no-selection {
  font-size: 16px;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-icon {
  display: inline-block;
  padding-left: 32px;
  position: relative;
}
.rc-icon:before {
  color: #6e6e6e;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.rc-icon:hover:before {
  color: #3669c4;
}

.demo-rc-icon:hover {
  background-color: #efefef;
}
.demo-rc-icon .rc-icon:before {
  top: 0;
  left: 0;
  transform: unset;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-textarea {
  border: 0;
  position: relative;
  min-height: 100px;
  min-width: 300px;
  border-bottom: 1px solid #cccccc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  cursor: text;
}
.rc-textarea.rc-textarea-dark {
  background-color: #EFEFEF;
}
.rc-textarea.rc-textarea-light {
  background-color: #FFFFFF;
}
.rc-textarea.rc-textarea-small {
  height: 25px;
  min-width: 50px;
}
.rc-textarea.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.rc-textarea:hover {
  border-bottom: 1px solid #3669c4;
}
.rc-textarea:hover > label {
  color: #3669c4;
}
.rc-textarea.error {
  border-bottom: 1px solid #d7032c !important;
}
.rc-textarea.error > label {
  color: #d9052f !important;
}
.rc-textarea .rc-error {
  background: #d9052f;
  padding: 4px 8px;
  color: #ffffff;
  bottom: 100%;
  right: 0;
  position: absolute;
  z-index: 2;
  min-width: 20px;
  display: none;
}
.rc-textarea .rc-error:after {
  content: " ";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #d7032c;
  bottom: -6px;
  left: 8px;
  position: absolute;
}
.rc-textarea.focus {
  border: 0;
  border-bottom: 1px solid #3669c4;
  outline: none;
}
.rc-textarea.focus .rc-error {
  display: block;
}
.rc-textarea.focus > label {
  color: #3669c4;
}
.rc-textarea > label {
  position: absolute;
  top: 3px;
  left: 8px;
  line-height: 14px;
  font-size: 12px;
  z-index: 1;
  color: #5d5d5d;
  cursor: text;
  pointer-events: none;
  touch-action: none;
  transition: all 0.3s;
}
.rc-textarea > label.empty-textarea {
  top: 16px;
  font-size: 14px;
  color: #000000;
  transform: translate(0, -50%);
}
.rc-textarea textarea {
  font-family: "SourceSansPro-Regular", serif;
  position: absolute;
  top: 16px;
  left: 4px;
  bottom: 0;
  resize: none;
  flex: auto;
  height: auto;
  width: 100%;
  border: none;
  font-size: 13px;
  background: transparent;
  padding: 0 4px;
  -webkit-appearance: none;
  margin: 0;
  outline: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mouse-tooltip {
  position: fixed;
  background: #ffffff;
  box-shadow: 2px 2px 6px -2px #000000;
  padding: 4px;
  font-size: 12px;
  color: #000000;
  white-space: nowrap;
  transition-timing-function: ease-out;
}

.rc-radio-group {
  display: inline-flex;
  position: relative;
  flex-direction: column;
}

.smile-negative-on, .smile-negative-off, .smile-neutral-on, .smile-neutral-off, .smile-positive-on, .smile-positive-off {
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
  height: 28px;
  width: 28px;
  margin-right: 5px;
}

.smile-negative-on {
  background-image: url("https://fra-webresources.s3.eu-central-1.amazonaws.com/assets/svg/Smiley_negative_on.svg");
}

.smile-negative-off {
  background-image: url("https://fra-webresources.s3.eu-central-1.amazonaws.com/assets/svg/Smiley_negative_off.svg");
}

.smile-neutral-on {
  background-image: url("https://fra-webresources.s3.eu-central-1.amazonaws.com/assets/svg/Smiley_neutral_on.svg");
}

.smile-neutral-off {
  background-image: url("https://fra-webresources.s3.eu-central-1.amazonaws.com/assets/svg/Smiley_neutral_off.svg");
}

.smile-positive-on {
  background-image: url("https://fra-webresources.s3.eu-central-1.amazonaws.com/assets/svg/Smiley_positive_on.svg");
}

.smile-positive-off {
  background-image: url("https://fra-webresources.s3.eu-central-1.amazonaws.com/assets/svg/Smiley_positive_off.svg");
}

.rc-smile {
  display: flex;
  height: auto;
  margin-bottom: 2vh;
}
.rc-smile .rc-smile-label-wrapper {
  width: 125px;
  max-width: 125px;
  min-width: 125px;
}
.rc-smile .smiles {
  width: 100%;
}
.rc-smile > .rc-smile-label-wrapper:first-child {
  width: auto;
}

.rc-smile-label-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.smiles {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-right: 0.5rem;
}

@media only screen and (max-width: 500px) {
  .rc-smile > .rc-smile-label-wrapper:first-child {
    width: auto !important;
    min-width: unset !important;
    max-width: unset !important;
  }
}
.star-on, .star-off {
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
  height: 32px;
  width: 32px;
}

.star-on {
  background-image: url("https://fra-webresources.s3.eu-central-1.amazonaws.com/assets/svg/Star_on.svg");
}

.star-off {
  background-image: url("https://fra-webresources.s3.eu-central-1.amazonaws.com/assets/svg/Star_off.svg");
}

.rc-star {
  display: flex;
  height: auto;
  margin-bottom: 2vh;
}
.rc-star .rc-star-label-wrapper {
  width: 125px;
  max-width: 125px;
  min-width: 125px;
}
.rc-star > .rc-star-label-wrapper:first-child {
  width: auto;
}

.rc-star-label-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 5px;
}

.stars {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-right: 0.5rem;
}

@media only screen and (max-width: 500px) {
  .rc-star .rc-star-label-wrapper:first-child {
    width: auto !important;
    min-width: unset !important;
    max-width: unset !important;
  }
}
.rc-tabcontrol {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.rc-tabcontrol .rc-tabcontrol-tab {
  padding: 0 16px;
  cursor: pointer;
  min-height: 28px;
  display: flex;
  align-items: center;
}
.rc-tabcontrol .rc-tabcontrol-tab.rc-tabcontrol-tab-selected {
  cursor: auto;
  font-weight: bold;
  background-color: white;
  border-radius: 14px;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.28);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.28);
}

.rc-switch {
  height: 36px;
  padding-right: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  flex: auto;
}
.rc-switch .rc-switch-label {
  flex: 1;
  font-size: 14px;
  order: 1;
  margin-left: 16px;
}
.rc-switch .rc-switch-dot {
  flex: 0 0 36px;
  height: 12px;
  cursor: pointer;
  border-radius: 100px;
  position: relative;
  background-color: #d8d8d8;
}
.rc-switch .rc-switch-dot div {
  height: 20px;
  width: 20px;
  position: absolute;
  top: -4px;
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.49);
  -moz-box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.49);
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.49);
  transition: 500ms left ease;
  left: -2.5px;
  background-color: #efefef;
}
.rc-switch.active .rc-switch-dot {
  background-color: #afcb7b;
}
.rc-switch.active .rc-switch-dot div {
  left: 14.5px;
  background-color: #6c9d0d;
}
.rc-switch.rc-mobile-component {
  height: 44px;
}
.rc-switch.rc-mobile-component .rc-switch-label {
  font-size: 16px;
}

.progress-bar-base {
  width: 100%;
  background-color: #EFEFEF;
  height: 8px;
}
.progress-bar-base .progress-bar-filled {
  height: 8px;
  background-color: #3669C4;
}

body.desktop-menu-visible {
  margin-left: 75px;
}

.desktop-menu-wrapper {
  background-color: white;
  position: fixed;
  width: 75px;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.desktop-menu-wrapper .desktop-menu-item-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 56px;
  cursor: pointer;
  position: relative;
}
.desktop-menu-wrapper .desktop-menu-item-button .rc-component.rc-badge .badge-count {
  transform: translateX(100%) translateY(0);
}
.desktop-menu-wrapper .desktop-menu-item-button button {
  height: 48px;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.desktop-menu-wrapper .desktop-menu-item-button button .rc-icon.sgw-icon {
  width: 32px;
  padding: 0;
  margin: 0;
}
.desktop-menu-wrapper .desktop-menu-item-button button .btn-label {
  font-size: 12px;
  line-height: 12px;
  max-width: 75px;
}
.desktop-menu-wrapper .desktop-menu-item-button .rc-icon:before {
  height: 26px;
  width: 26px;
  font-size: 26px;
}
.desktop-menu-wrapper .desktop-menu-item-button.login-button .rc-icon.sgw-icon {
  background-color: #efefef;
  height: 32px;
  border-radius: 50%;
}
.desktop-menu-wrapper .desktop-menu-item-button.login-button .rc-icon.sgw-icon:before {
  line-height: 22px;
  transform: translate(-50%, -50%);
}
.desktop-menu-wrapper .desktop-menu-item-button.desktop-menu-item-selected .rc-icon:before, .desktop-menu-wrapper .desktop-menu-item-button.desktop-menu-item-selected .btn-label {
  color: #3669c4;
}
.desktop-menu-wrapper .desktop-menu-item-button:hover .rc-icon:before, .desktop-menu-wrapper .desktop-menu-item-button:hover p {
  color: #3669c4;
}

.rc-mobile-view footer.mobile-tabs.mobile-navigation-tabs {
  padding: 0 0 16px;
  z-index: 1;
  justify-content: center;
}
.rc-mobile-view footer.mobile-tabs.mobile-navigation-tabs .mobile-navigation-extension {
  flex-wrap: wrap;
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  background-color: #ffffff;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.rc-mobile-view footer.mobile-tabs.mobile-navigation-tabs .mobile-navigation-extension.subview-is-shown {
  display: flex;
}
.rc-mobile-view footer.mobile-tabs.mobile-navigation-tabs .mobile-navigation-tabs-item {
  flex: 0 0 75px;
  display: flex;
  justify-content: center;
  margin-top: 6px;
}
.rc-mobile-view footer.mobile-tabs.mobile-navigation-tabs .mobile-navigation-tabs-item.mobile-navigation-tabs-item-selected .rc-icon:before, .rc-mobile-view footer.mobile-tabs.mobile-navigation-tabs .mobile-navigation-tabs-item.mobile-navigation-tabs-item-selected .btn-label {
  color: #3669c4;
}
.rc-mobile-view footer.mobile-tabs.mobile-navigation-tabs .mobile-navigation-tabs-item button {
  height: unset;
  min-height: 48px;
  justify-content: flex-start;
}
.rc-mobile-view footer.mobile-tabs.mobile-navigation-tabs .mobile-navigation-tabs-item button .btn-label {
  font-size: 12px;
  max-width: 75px;
  line-height: 12px;
}
.rc-mobile-view footer.mobile-tabs.mobile-navigation-tabs .mobile-navigation-tabs-item.login-button .rc-icon.sgw-icon {
  background-color: #efefef;
  border-radius: 50%;
}
.rc-mobile-view footer.mobile-tabs.mobile-navigation-tabs .mobile-navigation-tabs-item.login-button .rc-icon.sgw-icon:before {
  font-size: 21px;
}

.navigation-item-avatar {
  height: 48px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  align-items: center;
}
.navigation-item-avatar .rc-avatar {
  width: 26px;
  height: 26px;
}
.navigation-item-avatar .avatar-label {
  font-size: 12px;
  line-height: 12px;
}
.navigation-item-avatar.selected .avatar-label {
  color: #3669c4;
}

.rc-component.rc-snackbar {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #707070;
  color: #ffffff;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity ease-out 0.5s;
  cursor: pointer;
}
.rc-component.rc-snackbar.is-opened {
  opacity: 1;
  transition: opacity ease-out 0.5s;
}

.rc-context-menu {
  position: relative;
  z-index: 1;
}
.rc-context-menu .context-menu {
  right: 0;
  position: absolute;
  text-align: left;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.44);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10;
  background: #ffffff;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  min-width: 320px;
}
.rc-context-menu .context-menu .context-menu-body {
  flex: auto;
  overflow-y: auto;
  margin: 8px 0;
}
.rc-context-menu .context-menu .context-menu-body button {
  width: 100%;
  justify-content: left;
}
.rc-context-menu .menu-divider {
  height: 1px;
  margin: 8px 16px;
  background-color: #cccccc;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-component.rc-badge {
  position: relative;
  display: inline-block;
}
.rc-component.rc-badge .badge-count {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(100%) translateY(-100%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 10px;
  display: flex;
  justify-content: center;
  line-height: 12px;
  align-items: center;
}
.rc-component.rc-badge .badge-count.badge-count-default {
  background-color: #3669c4;
}
.rc-component.rc-badge .badge-count.badge-count-important {
  background-color: #d9052f;
}
.rc-component.rc-badge.rc-mobile-component .badge-count {
  transform: translateX(100%) translateY(0);
}

.drop-zone {
  outline: none;
}

.drag-file:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 4px solid #3669C4;
}

.flex-card-list-dummy-item {
  order: 2;
}

.rc-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  border-top: 1px solid #dcdcdc;
}
.rc-mobile-menu.non-modal {
  position: relative;
}
.rc-mobile-menu:before {
  content: "";
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #6e6e6e;
  opacity: 0.8;
}
.rc-mobile-menu .menu-divider {
  height: 1px;
  width: 100%;
  margin: 8px 16px;
  background-color: #cccccc;
}
.rc-mobile-menu .mobile-menu-content {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 11;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.rc-mobile-menu .mobile-menu-content > div > .btn-simple, .rc-mobile-menu .mobile-menu-content > .btn-simple {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin: 0 4px;
}
.rc-mobile-menu .mobile-menu-content > div {
  width: 100%;
}
.rc-mobile-menu .mobile-menu-content > hr {
  width: 100%;
  border: 0;
  border-top: 1px solid #dcdcdc;
}

.rc-context-menu.rc-context-menu-v2 {
  position: relative;
  z-index: unset;
}
.rc-context-menu.rc-context-menu-v2 .context-menu {
  right: 0;
  position: absolute;
  text-align: left;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.44);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10;
  background: #ffffff;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  min-width: 320px;
}
.rc-context-menu.rc-context-menu-v2 .context-menu .context-menu-body {
  flex: auto;
  overflow-y: auto;
  margin: 8px 0;
}
.rc-context-menu.rc-context-menu-v2 .context-menu .context-menu-body button {
  width: 100%;
  justify-content: left;
}
.rc-context-menu.rc-context-menu-v2 .menu-divider {
  height: 1px;
  margin: 8px 16px;
  background-color: #cccccc;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes SlideUp {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -125%);
    -moz-transform: translate(0, -125%);
    -ms-transform: translate(0, -125%);
    -o-transform: translate(0, -125%);
    transform: translate(0, -125%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rc-component.rc-error {
  border-bottom: 1px solid #d9052f !important;
}
.rc-component.rc-error label {
  color: #d9052f !important;
}
.rc-component .rc-error-label {
  background: #d9052f;
  padding: 4px 8px;
  color: #ffffff;
  bottom: calc(100% + 4px);
  left: 0;
  position: absolute;
  z-index: 2;
  min-width: 150px;
  display: none;
  font-size: 14px;
}
.rc-component .rc-error-label:after {
  content: " ";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #d7032c;
  bottom: -4px;
  left: 8px;
  position: absolute;
}
.rc-component:hover .rc-error-label, .rc-component:focus .rc-error-label, .rc-component:focus-within .rc-error-label {
  display: block;
}


