/* variables */
/* mixins */
/* material design */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/material-icons-regular.woff2") format("woff2"), url(https://fonts.gstatic.com/s/materialicons/v32/2fcrYFNaTjcS6g4U3t-Y5UEw0lE80llgEseQY3FEmqw.woff2) format("woff2");
}
.material-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Rules for sizing the icon. */
  /* Rules for using icons as black on a light background. */
  /* Rules for using icons as white on a dark background. */
}
.material-icons:hover {
  cursor: default;
}
.material-icons.md-18 {
  font-size: 18px !important;
}
.material-icons.md-24 {
  font-size: 24px !important;
}
.material-icons.md-36 {
  font-size: 36px !important;
}
.material-icons.md-48 {
  font-size: 48px !important;
}
.material-icons.md-60 {
  font-size: 60px !important;
}
.material-icons.md-72 {
  font-size: 72px !important;
}
.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54);
}
.material-icons.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}
.material-icons.md-light {
  color: white;
}
.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}

.shadow-1 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* resuables */
.overlay {
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.54);
  display: none;
}
.overlay.visible {
  display: flex;
}
.overlay .modal-wrapper {
  z-index: 13;
  width: 320px;
  background-color: #FAFAFA;
  color: rgba(0, 0, 0, 0.54);
}
.overlay .modal-wrapper.centered {
  top: 50%;
  left: 50%;
  margin-top: -100px;
  margin-left: -160px;
}
.overlay .modal-wrapper .modal {
  padding-top: 8px;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 0;
}
.overlay .modal-wrapper .modal .header {
  height: 48px;
  line-height: 48px;
}
.overlay .modal-wrapper .modal .body {
  padding: 8px 0 16px 0;
}
.overlay .modal-wrapper .modal .footer {
  display: flex;
  height: 40px;
  text-align: right;
  justify-content: space-between;
}
.overlay .modal-wrapper .modal .footer a {
  color: #71ac29;
  cursor: pointer;
}

.code-input {
  width: 100%;
  box-shadow: 0 0 1px 1px #ddd;
  background-color: white;
  padding: 8px 0 8px 0;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
.code-input.fixed {
  position: fixed;
}
.code-input > input {
  outline: none;
  border: 0;
  width: 100%;
  height: 100%;
  padding-left: 16px;
  font-size: 16px;
}
.code-input > input::placeholder {
  color: rgba(0, 0, 0, 0.26);
}
.code-input .confirm-icon {
  width: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.centered {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: absolute;
  height: 100%;
}

.bold {
  font-weight: bold;
  font-family: robotoregular;
}

.loading-wrapper {
  display: flex;
  position: fixed;
  left: 0;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.loading-wrapper.hidden {
  display: none;
}

.loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid #71ac29;
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

.mobile-top-app-bar {
  font-family: "robotolight";
  color: #71ac29;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid #ccc;
  white-space: nowrap;
  height: 56px;
  background-color: #fafafa;
  line-height: 56px;
  text-overflow: ellipsis;
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
}
.mobile-top-app-bar.fixed {
  position: fixed;
}
.mobile-top-app-bar .logo {
  vertical-align: middle;
  display: inline-block;
  height: 50%;
}
.mobile-top-app-bar .back-arrow {
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.56);
  padding: 16px;
}
.mobile-top-app-bar > h1 {
  font-weight: normal;
  font-size: 20px;
  vertical-align: top;
  margin: 0;
  display: inline-block;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
.button-wrapper {
  width: 100%;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.button-wrapper:hover {
  cursor: default;
}
.button-wrapper .icon {
  vertical-align: middle;
  width: 24px;
}
.button-wrapper .button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  color: white;
  padding: 8px 8px 8px 8px;
  vertical-align: middle;
  font-weight: bold;
}
.button-wrapper .button .button-text {
  vertical-align: middle;
  font-weight: bold;
}

.hidden {
  display: none;
}

.modal.finder, .modal.found {
  position: absolute;
  z-index: 101;
  left: 24px;
  right: 24px;
  top: 56px;
  padding: 24px 8px 24px 8px;
  background: white;
  border-radius: 4px;
  display: none;
}
.modal.finder.visible, .modal.found.visible {
  display: block;
}
.modal.finder .modal-title, .modal.found .modal-title {
  font-size: 20px;
  color: #71ac29;
  margin: 0;
}
.modal.finder .modal-subtitle, .modal.found .modal-subtitle {
  font-size: 12px;
  margin: 16px 8px 16px 8px;
  color: rgba(0, 0, 0, 0.84);
}
.modal.finder .modal-input, .modal.found .modal-input {
  height: 36px;
  background-color: white;
  border: 3px solid #71ac29;
  padding: 0;
  margin: 32px 8px 0 8px;
  display: flex;
  z-index: 1;
}
.modal.finder .modal-input > input, .modal.found .modal-input > input {
  color: rgba(0, 0, 0, 0.84);
  text-align: center;
  outline: none;
  border: 0;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  margin: 8px;
  font-size: 16px;
}
.modal.finder .modal-input > input::placeholder, .modal.found .modal-input > input::placeholder {
  color: #aeaeae;
}
.modal.finder .modal-button, .modal.found .modal-button {
  width: 100%;
  text-align: right;
  font-family: robotoregular;
  text-decoration: none;
  margin-top: 32px;
}
.modal.finder .modal-button .button, .modal.found .modal-button .button {
  margin-right: 8px;
}

/* styleguide */
.font-style-display-4 {
  font-family: "robotolight";
  font-size: 112px;
}

.font-style-display-3 {
  font-family: "robotoregular";
  font-size: 56px;
}

.font-style-display-2 {
  font-family: "robotoregular";
  font-size: 45px;
}

.font-style-display-1 {
  font-family: "robotoregular";
  font-size: 36px;
}

.font-style-headline {
  font-family: "robotoregular";
  font-size: 24px;
}

.font-style-title {
  font-family: "robotomedium";
  font-size: 20px;
}

.font-style-subheader {
  font-family: "robotoregular";
  font-size: 16px;
}

.font-style-body-2 {
  font-family: "robotomedium";
  font-size: 14px;
}

.font-style-body-1 {
  font-family: "robotoregular";
  font-size: 14px;
}

.font-style-caption {
  font-family: "robotoregular";
  font-size: 12px;
}

.font-color-primary {
  color: rgba(0, 0, 0, 0.84);
}

.font-color-secondary {
  color: rgba(0, 0, 0, 0.54);
}

.font-color-disabled {
  color: rgba(0, 0, 0, 0.26);
}

.shadow-1-without-hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.shadow-1 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shadow-1:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25), 0 4px 4px rgba(0, 0, 0, 0.22);
}

.shadow-2 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.shadow-3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.shadow-4 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.shadow-5 {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

/* fonts */
@font-face {
  font-family: "robotoregular";
  font-display: auto;
  src: url("/static/fonts/robotoregular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "robotomedium";
  font-display: auto;
  src: url("/static/fonts/robotomedium.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "robotolight";
  font-display: auto;
  src: url("/static/fonts/robotolight.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "centurygothic";
  font-display: auto;
  src: url("/static/fonts/centurygothic.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "montserrat";
  font-display: auto;
  src: url("/static/fonts/montserrat.ttf");
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  font-family: "robotoregular";
}

html, body {
  height: 100%;
}

a {
  color: #71ac29;
}

/* chat */
.chat {
  box-sizing: border-box;
  margin: auto;
  padding: 72px 16px 0 16px;
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background-color: #f5f5f5;
}
.chat .speech-bubble-wrapper {
  list-style-type: none;
  margin-bottom: 20px;
  text-align: center;
}
.chat .speech-bubble-wrapper:last-of-type {
  margin-bottom: 80px;
}
.chat .speech-bubble-wrapper.incoming {
  text-align: right;
}
.chat .speech-bubble-wrapper.incoming .speech-bubble {
  background-color: #71ac29;
  color: white;
  border-bottom-right-radius: 0;
}
.chat .speech-bubble-wrapper.outgoing {
  text-align: left;
}
.chat .speech-bubble-wrapper.outgoing .speech-bubble {
  background-color: white;
  color: #71ac29;
  border-bottom-left-radius: 0;
}
.chat .speech-bubble-wrapper.deleted {
  opacity: 0.5;
}
.chat .speech-bubble-wrapper .speech-bubble {
  background-color: white;
  color: rgba(0, 0, 0, 0.84);
  max-width: 50%;
  position: relative;
  border-radius: 20px;
  padding: 20px;
  display: inline-block;
  font-size: 13px;
}
.chat .speech-bubble-wrapper .speech-bubble .content {
  text-align: left;
}
.chat .speech-bubble-wrapper .speech-bubble .meta, .chat .speech-bubble-wrapper .speech-bubble .author {
  color: rgba(0, 0, 0, 0.3);
  margin-bottom: 5px;
}

.chat-title {
  font-family: "robotolight";
  color: #71ac29;
  overflow: hidden;
  padding: 0;
  padding-left: 16px;
  border-bottom: 1px solid #ccc;
  white-space: nowrap;
  height: 56px;
  background-color: #fafafa;
  line-height: 56px;
  text-overflow: ellipsis;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  width: 100%;
  z-index: 1;
}
.chat-title .logo {
  vertical-align: middle;
  display: inline-block;
  height: 50%;
  margin-bottom: auto;
  margin-top: auto;
}
.chat-title .menu-button {
  color: #333333;
  font-size: 40px;
  margin-right: 32px;
  line-height: 6px;
  height: 38px;
  border-radius: 24px;
  padding: 2px 16px 2px 16px;
}
.chat-title .menu-button:hover {
  cursor: pointer;
  background-color: #eaeaea;
}
.chat-title ul.context-menu {
  position: fixed;
  right: 32px;
  top: 4px;
  background: white;
  list-style-type: none;
  padding-left: 0;
  padding: 8px;
  max-height: 100px;
  max-width: 200px;
  visibility: visible;
  overflow: hidden;
  transition: max-height 0.2s ease-out, max-width 0.2s ease-out, visibility 0.2s;
}
.chat-title ul.context-menu.hidden-menu {
  max-height: 0px;
  max-width: 0px;
  visibility: hidden;
}
.chat-title ul.context-menu li {
  line-height: 32px;
  padding: 0 8px 0 8px;
}
.chat-title ul.context-menu li a {
  color: #333333;
  text-decoration: none;
}
.chat-title > h1 {
  font-weight: normal;
  font-size: 20px;
  vertical-align: top;
  margin: 0;
  margin-left: 8px;
  display: inline-block;
}

.chat-message-input {
  height: 48px;
  bottom: 16px;
  left: 16px;
  right: 82px;
  border-radius: 16px;
  border-top-right-radius: 0;
  position: fixed;
  background-color: white;
  padding: 0;
  display: flex;
  z-index: 1;
}
.chat-message-input > input {
  outline: none;
  border: 0;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  margin: 8px;
  font-size: 16px;
}
.chat-message-input > input::placeholder {
  color: #aeaeae;
}

.confirm-icon-chat {
  position: fixed;
  background-color: #71ac29;
  right: 16px;
  bottom: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
  color: white;
  cursor: pointer;
}
.confirm-icon-chat > i {
  cursor: pointer !important;
}

@media only screen and (min-width: 769px) {
  .chat-not-found {
    background-image: url("../images/under-construction/bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .chat-not-found .message {
    border-radius: 8px;
    text-align: center;
    background-color: white;
    flex-direction: column;
    padding: 48px 48px 24px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    font-family: robotolight;
  }
  .chat-not-found .message .logo {
    width: 240px;
    margin-bottom: 16px;
  }
  .chat-not-found .message .badges {
    display: flex;
    margin-top: 16px;
    align-items: center;
    justify-content: center;
  }
  .chat-not-found .message .badges .badge {
    display: flex;
    align-items: center;
  }
  .chat-not-found .message .badges .badge.apple img {
    padding: 8px;
  }
  .chat-not-found .message .badges .badge img {
    max-width: 160px;
  }
}
@media only screen and (max-width: 768px) {
  .chat-not-found .message {
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    background-color: white;
    flex-direction: column;
    padding: 48px 48px 24px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: robotolight;
  }
  .chat-not-found .message .logo {
    width: 240px;
    margin-bottom: 16px;
  }
  .chat-not-found .message .badges {
    display: flex;
    margin-top: 16px;
    align-items: center;
    justify-content: center;
  }
  .chat-not-found .message .badges .badge {
    display: flex;
    align-items: center;
  }
  .chat-not-found .message .badges .badge.apple img {
    padding: 8px;
  }
  .chat-not-found .message .badges .badge img {
    max-width: 152px;
  }
}
.privacy-content {
  padding: 16px;
  background-color: white;
}
.privacy-content ul {
  padding-left: 20px;
}

.imprint-content {
  padding: 16px;
  background-color: white;
}
.imprint-content ul {
  list-style-type: none;
}

@media only screen and (min-width: 769px) {
  .landingpage-business .section.desktop {
    display: block;
  }
  .landingpage-business .section.mobile {
    display: none !important;
  }

  .mobile.navigation {
    display: none;
  }

  .section.navigation {
    background-color: white;
    display: flex !important;
    justify-content: space-between;
    height: 64px;
    align-items: center;
    position: fixed;
    left: 0;
    z-index: 5;
    color: black;
    align-items: center;
    width: 100%;
  }
  .section.navigation .brand {
    width: 128px;
    margin-left: 24px;
  }
  .section.navigation .menu {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .section.navigation .menu li {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin-left: 8px;
    padding-right: 24px;
    font-family: "robotolight";
  }
  .section.navigation .menu li:last-of-type {
    border: none;
  }
  .section.navigation .menu li.active {
    font-family: "robotoregular";
  }
  .section.navigation .menu li:hover {
    font-family: "robotoregular";
  }
  .section.navigation .menu li a {
    color: black;
    text-decoration: none;
  }

  .landingpage-business .section.header {
    color: white;
    background-color: #71ac29;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding-top: 128px;
    padding-bottom: 180px;
    background-image: url("../images/under-construction/bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .landingpage-business .section.header .header-image {
    top: 0;
    position: absolute;
    height: 100%;
    left: 0;
  }
  .landingpage-business .section.header .body {
    z-index: 2;
    display: flex;
    margin-top: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .landingpage-business .section.header .body .title {
    text-align: center;
    font-size: 22px;
    font-weight: normal;
    margin: 0;
  }
  .landingpage-business .section.header .body .subtitle {
    text-align: center;
    font-family: "montserrat";
    font-size: 44px;
    margin: 32px 0 32px 0;
  }
  .landingpage-business .section.header .body .explanation {
    width: 400px;
    text-align: center;
    font-size: 16px;
    font-family: "robotolight";
  }
  .landingpage-business .section.header .body .button-wrapper {
    width: 100%;
    text-align: center;
  }
  .landingpage-business .section.header .body .button-wrapper .icon {
    vertical-align: middle;
    width: 24px;
  }
  .landingpage-business .section.header .body .button-wrapper .button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    margin-top: 32px;
    display: inline-block;
    background-color: #f73f10;
    color: white;
    padding: 8px 48px 8px 48px;
    vertical-align: middle;
    font-weight: bold;
  }
  .landingpage-business .section.header .body .button-wrapper .button .button-text {
    vertical-align: middle;
    font-weight: bold;
  }

  .landingpage-business .section.community {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .landingpage-business .section.community .wrapper {
    max-width: 1000px;
    width: 100%;
    position: relative;
    background-color: white;
    padding: 32px;
    text-align: center;
    margin: -64px 80px 0 80px;
    border-radius: 16px;
    z-index: 1;
  }
  .landingpage-business .section.community .wrapper .headline {
    margin-top: 0;
    font-weight: normal;
    font-family: "montserrat";
  }
  .landingpage-business .section.community .wrapper .explanation {
    margin-top: 16px;
    font-size: 14px;
  }
  .landingpage-business .section.community .wrapper .badges {
    display: flex;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
    height: 56px;
  }
  .landingpage-business .section.community .wrapper .badges.manual {
    margin-top: 0;
  }
  .landingpage-business .section.community .wrapper .badges .badge-manual {
    background: black;
    color: white;
    display: flex;
    align-items: center;
    height: 36px;
    border-radius: 8px;
    padding: 2px 12px;
    margin: 8px;
    font-family: robotoregular;
    text-decoration: none;
  }
  .landingpage-business .section.community .wrapper .badges .badge {
    display: flex;
    align-items: center;
    height: 56px;
  }
  .landingpage-business .section.community .wrapper .badges .badge.apple img {
    padding: 8px;
  }
  .landingpage-business .section.community .wrapper .badges .badge img {
    max-height: 100%;
  }
  .landingpage-business .section.community .wrapper .divider {
    border: 0;
    height: 1px;
    margin: 40px 0 16px 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  }
  .landingpage-business .section.community .wrapper .image {
    text-decoration: none;
  }
  .landingpage-business .section.community .wrapper .image img {
    width: 33%;
  }
  .landingpage-business .section.community .wrapper .image img {
    max-width: 200px;
  }
  .landingpage-business .section.community .info {
    margin-top: 16px;
  }
  .landingpage-business .section.community .info > a {
    font-weight: bold;
    text-decoration: none;
  }

  .landingpage-business .section.videos {
    background-color: #fafafa;
    padding: 64px 80px 64px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .landingpage-business .section.videos .sample {
    display: flex;
  }
  .landingpage-business .section.videos .sample:last-of-type {
    margin-top: 48px;
  }
  .landingpage-business .section.videos .sample .video-area {
    margin-right: 40px;
    width: 660px;
    height: 495px;
  }
  .landingpage-business .section.videos .sample .video-area iframe {
    width: 100%;
    height: 100%;
  }
  .landingpage-business .section.videos .sample .explanation-area {
    margin-left: 40px;
    max-width: 660px;
    height: 495px;
    vertical-align: top;
  }
  .landingpage-business .section.videos .sample .explanation-area .headline {
    margin-top: 0;
    font-weight: normal;
    color: #71ac29;
  }
  .landingpage-business .section.videos .sample .explanation-area .explanation .sample-code {
    display: flex;
    align-items: center;
    justify-content: left;
    height: 240px;
  }
  .landingpage-business .section.videos .sample .explanation-area .explanation .sample-code > img {
    padding: 16px;
    border: 2px solid rgba(0, 0, 0, 0.34);
    border-radius: 8px;
    max-width: 160px;
  }

  .landingpage-business .section.shops {
    position: relative;
    padding: 64px 80px 64px 80px;
    background-color: #71ac29;
  }
  .landingpage-business .section.shops h1.shops-headline {
    color: white;
    text-align: center;
    font-size: 28px;
    margin-top: 0;
  }
  .landingpage-business .section.shops .subheader {
    font-size: 16px;
    text-align: center;
    color: white;
    margin: 24px 0 40px 0;
  }
  .landingpage-business .section.shops .possibilities {
    text-align: center;
    margin-top: 24px;
  }
  .landingpage-business .section.shops .possibilities .possibility {
    display: inline-block;
    width: 400px;
    margin: 24px;
    vertical-align: top;
  }
  .landingpage-business .section.shops .possibilities .possibility .image {
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 196px;
    width: 100%;
  }
  .landingpage-business .section.shops .possibilities .possibility.diy .image {
    background-image: url("/static/images/landingpage-public/possibility-diy.jpg");
  }
  .landingpage-business .section.shops .possibilities .possibility.gift .image {
    background-image: url("/static/images/landingpage-public/possibility-gift.jpg");
  }
  .landingpage-business .section.shops .possibilities .possibility.buy-tag .image {
    background-image: url("/static/images/landingpage-public/possibility-buy-tag.jpg");
  }
  .landingpage-business .section.shops .possibilities .possibility.buy-case-tag .image {
    background-image: url("/static/images/landingpage-business/shop-case.jpg");
  }
  .landingpage-business .section.shops .possibilities .possibility.buy-tag-default .image {
    background-image: url("/static/images/landingpage-business/shop-qr.jpg");
  }
  .landingpage-business .section.shops .possibilities .possibility.buy-sticker .image {
    background-image: url("/static/images/landingpage-public/possibility-buy-sticker.jpg");
  }
  .landingpage-business .section.shops .possibilities .possibility .body {
    padding: 24px;
    font-size: 14px;
    background-color: white;
    color: rgba(0, 0, 0, 0.54);
    min-height: 88px;
    display: flex;
    text-align: left;
    flex-direction: column;
  }
  .landingpage-business .section.shops .possibilities .possibility .body h2 {
    color: rgba(0, 0, 0, 0.84);
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 16px;
  }
  .landingpage-business .section.shops .possibilities .possibility .body .subtitle {
    color: rgba(0, 0, 0, 0.54);
  }
  .landingpage-business .section.shops .possibilities .possibility img {
    width: 100%;
  }
  .landingpage-business .section.shops .possibilities .link-wrapper {
    width: 100%;
    text-align: right;
    font-family: robotoregular;
    margin-top: 16px;
  }
  .landingpage-business .section.shops .possibilities .link-wrapper .link {
    text-decoration: none;
  }
  .landingpage-business .app-store-modal-wrapper {
    display: none;
  }

  .landingpage-business .section.statistics {
    position: relative;
    padding: 64px 80px 64px 80px;
  }
  .landingpage-business .section.statistics .body {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .landingpage-business .section.statistics .body .statistics-text {
    color: #999999;
    display: inline-block;
    vertical-align: top;
    width: 560px;
  }
  .landingpage-business .section.statistics .body .statistics-text.mobile {
    display: none;
  }
  .landingpage-business .section.statistics .body .statistics-text h1.title {
    margin: 0;
    color: #71ac29;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation {
    margin-top: 32px;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation ul.statistics-list {
    margin-top: 32px;
    padding-left: 0px;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation ul.statistics-list li {
    background-image: url("/static/images/landingpage-business/ic_check.svg");
    background-repeat: no-repeat;
    padding-left: 30px;
    list-style-type: none;
    background-position-y: center;
    margin-bottom: 16px;
  }
  .landingpage-business .section.statistics .body .statistics-image {
    display: flex;
    align-items: center;
  }
  .landingpage-business .section.statistics .body .statistics-image .legend {
    margin-left: 24px;
  }
  .landingpage-business .section.statistics .body .statistics-image .legend .legend-part {
    padding: 8px 24px 8px 24px;
    border-radius: 2px;
    text-align: center;
  }
  .landingpage-business .section.statistics .body .statistics-image .legend .legend-part.active {
    background: #71ac29;
    color: white;
    margin-bottom: 16px;
  }
  .landingpage-business .section.statistics .body .statistics-image .legend .legend-part.inactive {
    background: #eaeaea;
    color: rgba(0, 0, 0, 0.56);
  }
  .landingpage-business .section.statistics .body .statistics-image .piechart {
    margin-left: 24px;
    position: relative;
    width: 250px;
    height: 250px;
  }
  .landingpage-business .section.statistics .body .statistics-image .piechart .label {
    z-index: 2;
    position: absolute;
    font-size: 24px;
    font-weight: bold;
  }
  .landingpage-business .section.statistics .body .statistics-image .piechart .label.active {
    color: rgba(0, 0, 0, 0.56);
    top: 64px;
    right: 48px;
  }
  .landingpage-business .section.statistics .body .statistics-image .piechart .label.inactive {
    color: white;
    bottom: 64px;
    left: 80px;
  }
  .landingpage-business .section.statistics .body .statistics-image .piechart .piece {
    position: absolute;
    width: 250px;
    height: 250px;
    clip: rect(0px, 250px, 250px, 125px);
    border-radius: 125px;
    transition: all 0.8s ease-out;
  }
  .landingpage-business .section.statistics .body .statistics-image .piechart .piece.active-1 {
    transform: rotate(90deg);
    background: #71ac29;
    z-index: 1;
  }
  .landingpage-business .section.statistics .body .statistics-image .piechart .piece.active-2 {
    transform: rotate(180deg);
    background: #71ac29;
    z-index: 1;
  }
  .landingpage-business .section.statistics .body .statistics-image .piechart .piece.inactive {
    background: #eaeaea;
    clip: unset;
  }
  .landingpage-business .section.statistics .body .statistics-image .piechart .piece .piece-inner {
    position: absolute;
    width: 250px;
    height: 250px;
    clip: rect(0px, 125px, 250px, 0px);
    border-radius: 125px;
    -webkit-backface-visibility: hidden;
    transition: all 0.8s ease-out;
  }
  .landingpage-business .section.statistics .footer {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-top: 24px;
  }
  .landingpage-business .section.statistics .footer .info {
    text-align: center;
    color: #707070;
  }
  .landingpage-business .section.statistics .footer .button-wrapper {
    width: 100%;
    text-align: center;
  }
  .landingpage-business .section.statistics .footer .button-wrapper .icon {
    vertical-align: middle;
    width: 24px;
  }
  .landingpage-business .section.statistics .footer .button-wrapper .button {
    text-decoration: none;
    cursor: pointer;
    margin-top: 24px;
    display: inline-block;
    background-color: #f73f10;
    color: white;
    padding: 8px 48px 8px 48px;
  }

  .landingpage-business .section.owners-advantages {
    background-color: #71ac29;
    padding: 64px 80px 64px 80px;
  }
  .landingpage-business .section.owners-advantages h1 {
    color: white;
    text-align: center;
    margin-top: 0;
  }
  .landingpage-business .section.owners-advantages .body {
    display: flex;
    justify-content: center;
    align-items: top;
    margin-top: 64px;
  }
  .landingpage-business .section.owners-advantages .body .advantages-image {
    width: 320px;
    height: 200px;
    margin-right: 40px;
    display: flex;
    justify-content: center;
  }
  .landingpage-business .section.owners-advantages .body .advantages-image img {
    height: 100%;
    color: white;
  }
  .landingpage-business .section.owners-advantages .body .advantages-explanation {
    max-width: 560px;
    color: white;
  }
  .landingpage-business .section.owners-advantages .body .advantages-explanation .advantages-explanation-headline {
    font-size: 18px;
    font-weight: bold;
    margin-top: 16px;
  }
  .landingpage-business .section.owners-advantages .body .advantages-explanation .advantages-explanation-body {
    margin-top: 16px;
  }
  .landingpage-business .section.owners-advantages .body .advantages-explanation .advantages-explanation-footer {
    margin-top: 16px;
  }
  .landingpage-business .section.owners-advantages .footer {
    display: flex;
    justify-content: center;
    margin-top: 64px;
  }
  .landingpage-business .section.owners-advantages .footer .text {
    background-color: white;
    padding: 24px;
    text-align: center;
    border-radius: 12px;
  }

  .landingpage-business .section.privacy {
    background-color: #71ac29;
    color: white;
    padding: 64px 80px 64px 80px;
    display: flex;
    justify-content: center;
  }
  .landingpage-business .section.privacy .icons {
    width: 660px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
  }
  .landingpage-business .section.privacy .icons .icon {
    height: 120px;
    position: relative;
  }
  .landingpage-business .section.privacy .icons .icon:nth-of-type(2) {
    height: 180px;
  }
  .landingpage-business .section.privacy .icons .icon img {
    height: 100%;
  }
  .landingpage-business .section.privacy .icons .icon img.mobile {
    display: none;
  }
  .landingpage-business .section.privacy .icons .icon img.symbol {
    position: absolute;
  }
  .landingpage-business .section.privacy .icons .icon img.symbol.lock {
    left: 40px;
    width: 40px;
    top: 0;
  }
  .landingpage-business .section.privacy .icons .icon img.symbol.figure {
    left: 50px;
    width: 80px;
    top: 0;
  }
  .landingpage-business .section.privacy .icons .icon img.symbol.rulers {
    left: 40px;
    width: 40px;
    top: 0;
  }
  .landingpage-business .section.privacy .explanation-area {
    margin-left: 40px;
    max-width: 660px;
    vertical-align: top;
  }
  .landingpage-business .section.privacy .explanation-area ul {
    padding-left: 20px;
  }
  .landingpage-business .section.privacy .explanation-area ul li {
    background-image: url(/static/images/landingpage-public/ic_check_white.svg);
    background-repeat: no-repeat;
    padding-left: 40px;
    list-style-type: none;
    background-position-y: center;
    text-align: left;
    margin-bottom: 16px;
  }
  .landingpage-business .section.privacy .explanation-area .headline {
    margin-bottom: 32px;
    margin-top: 0;
    font-weight: normal;
  }
  .landingpage-business .section.privacy {
    background-color: white;
  }
  .landingpage-business .section.privacy .headline, .landingpage-business .section.privacy .explanation {
    color: rgba(0, 0, 0, 0.84);
  }
  .landingpage-business .section.privacy .explanation ul li {
    background-image: url(/static/images/landingpage-business/ic_check.svg) !important;
  }

  .landingpage-business .section.contact {
    background-color: #71ac29;
    padding: 64px 80px 64px 80px;
  }
  .landingpage-business .section.contact h1 {
    color: white;
    text-align: center;
    padding-bottom: 40px;
    margin: 0;
  }
  .landingpage-business .section.contact .business-card-wrapper {
    display: flex;
    justify-content: center;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card img {
    height: 320px;
    margin-right: -4px;
    display: inline-block;
    vertical-align: top;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body {
    display: inline-block;
    vertical-align: top;
    width: 400px;
    height: 100%;
    background-color: white;
    padding-left: 32px;
    padding-top: 32px;
    box-sizing: border-box;
    color: #888888;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body .name {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 34px;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body .mail {
    margin-bottom: 16px;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body .phone {
    margin-bottom: 16px;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body .social-media {
    margin-top: 32px;
    height: 32px;
    width: 100%;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body .social-media a {
    text-decoration: none;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body .social-media a img {
    height: 100%;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body .social-media a img:first-of-type {
    margin-right: 8px;
  }

  .landingpage-business .section.footer {
    height: 160px;
    background-color: #073B3A;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .landingpage-business .section.footer.mobile {
    display: none;
  }
  .landingpage-business .section.footer a {
    color: white;
    margin-right: 24px;
    cursor: pointer;
    text-decoration: none;
  }
  .landingpage-business .section.footer a:last-of-type {
    margin-right: 0;
  }
  .landingpage-business .section.footer .legal-links {
    font-size: 14px;
    position: absolute;
    right: 32px;
    bottom: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .landingpage-business .section {
    padding: 32px;
  }
  .landingpage-business .section.desktop {
    display: none !important;
  }
  .landingpage-business .section.mobile {
    display: block;
    padding: 24px;
  }

  .mobile.navigation {
    background-color: white;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 6;
    color: black;
    left: 0;
    top: 0;
    transition: left 0.5s ease;
  }
  .mobile.navigation.shifted {
    left: 100%;
  }
  .mobile.navigation .header {
    width: 100%;
    border-bottom: 1px solid #71ac29;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }
  .mobile.navigation .header .logo {
    height: 32px;
    margin-left: 24px;
  }
  .mobile.navigation .header .close-button {
    height: 32px;
    margin-right: 16px;
    cursor: pointer;
  }
  .mobile.navigation .menu {
    text-align: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .mobile.navigation .menu li {
    border-bottom: 1px solid #eaeaea;
    font-family: "robotoregular";
    text-decoration: none;
    cursor: pointer;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile.navigation .menu li.active {
    color: #71ac29;
  }
  .mobile.navigation .menu li a {
    color: black;
    text-decoration: none;
  }
  .mobile.navigation .language {
    font-family: "robotoregular";
    width: 100%;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    position: absolute;
    height: 80px;
  }
  .mobile.navigation .language a {
    color: black;
    text-decoration: none;
  }

  .landingpage-business .section.header {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding: 0 0 80px 0;
    background-image: url(/static/images/header/dog.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
  }
  .landingpage-business .section.header .header-image {
    top: 0;
    position: absolute;
    height: 100%;
    left: 0;
  }
  .landingpage-business .section.header .content {
    z-index: 2;
  }
  .landingpage-business .section.header .content .button-wrapper .mag-icon {
    vertical-align: middle;
  }
  .landingpage-business .section.header .content .button-wrapper .button .button-text {
    vertical-align: middle;
    font-weight: bold;
  }
  .landingpage-business .section.header .brand {
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 24px;
    box-sizing: border-box;
    position: fixed;
    background-color: white;
    top: 0;
    z-index: 5;
    height: 64px;
  }
  .landingpage-business .section.header .brand img {
    height: 32px;
  }
  .landingpage-business .section.header .brand img.menu-button {
    cursor: pointer;
  }
  .landingpage-business .section.header .content {
    padding: 24px;
    margin-top: 65px;
    color: white;
  }
  .landingpage-business .section.header .content .title {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 0;
    font-size: 16px;
  }
  .landingpage-business .section.header .content .explanation {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
  }
  .landingpage-business .section.header .content .button-wrapper {
    width: 100%;
    text-align: center;
  }
  .landingpage-business .section.header .content .button-wrapper .icon {
    vertical-align: middle;
    width: 24px;
  }
  .landingpage-business .section.header .content .button-wrapper .button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    margin-top: 32px;
    display: inline-block;
    background-color: #f73f10;
    color: white;
    padding: 8px 48px 8px 48px;
    vertical-align: middle;
    font-weight: bold;
  }
  .landingpage-business .section.header {
    margin-top: 24px;
  }

  .landingpage-business .section.community {
    background-color: white;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 24px 24px 2px 24px;
  }
  .landingpage-business .section.community .headline {
    margin: 0 0 16px 0;
  }
  .landingpage-business .section.community .wrapper {
    max-width: 1000px;
    width: 100%;
    position: relative;
    background-color: white;
    padding: 16px;
    text-align: center;
    margin-top: -64px;
    border-radius: 16px;
    z-index: 1;
  }
  .landingpage-business .section.community .wrapper .explanation {
    margin-top: 16px;
    line-height: 24px;
  }
  .landingpage-business .section.community .wrapper .badges {
    display: flex;
    margin-top: 16px;
    align-items: center;
    justify-content: center;
  }
  .landingpage-business .section.community .wrapper .badges.manual {
    margin: 0;
  }
  .landingpage-business .section.community .wrapper .badges .badge-manual {
    background: black;
    color: white;
    display: flex;
    align-items: center;
    height: 36px;
    border-radius: 8px;
    padding: 2px 12px;
    margin: 8px;
    font-family: robotoregular;
    text-decoration: none;
  }
  .landingpage-business .section.community .wrapper .badges .badge {
    display: flex;
    align-items: center;
  }
  .landingpage-business .section.community .wrapper .badges .badge.apple img {
    padding: 8px;
  }
  .landingpage-business .section.community .wrapper .badges .badge img {
    max-width: 160px;
  }
  .landingpage-business .section.community .wrapper .divider {
    border: 0;
    height: 1px;
    margin: 24px 0 16px 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  }
  .landingpage-business .section.community .wrapper .image {
    text-decoration: none;
  }
  .landingpage-business .section.community .wrapper .image img {
    width: 50%;
  }
  .landingpage-business .info {
    margin-top: 16px;
  }
  .landingpage-business .info > a {
    font-weight: bold;
    text-decoration: none;
  }
  .landingpage-business .section.community .wrapper {
    margin: -64px 0 0 0;
  }

  .landingpage-business .section.video-explanation, .landingpage-business .section.video-experiment {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 3;
    padding: 0 0 24px 0;
    box-sizing: border-box;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.24);
  }
  .landingpage-business .section.video-explanation .video-area, .landingpage-business .section.video-experiment .video-area {
    margin-top: 24px;
    width: 100%;
    text-align: center;
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
  }
  .landingpage-business .section.video-explanation .video-area iframe,
.landingpage-business .section.video-explanation .video-area object,
.landingpage-business .section.video-explanation .video-area embed, .landingpage-business .section.video-experiment .video-area iframe,
.landingpage-business .section.video-experiment .video-area object,
.landingpage-business .section.video-experiment .video-area embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .landingpage-business .section.video-explanation .explanation, .landingpage-business .section.video-experiment .explanation {
    width: 100%;
    line-height: 24px;
    padding: 0 24px 0 24px;
    box-sizing: border-box;
  }
  .landingpage-business .section.video-explanation .explanation .button-wrapper, .landingpage-business .section.video-experiment .explanation .button-wrapper {
    margin-top: 24px;
    box-sizing: border-box;
  }
  .landingpage-business .section.video-explanation .explanation .button-wrapper .button, .landingpage-business .section.video-experiment .explanation .button-wrapper .button {
    padding: 8px 16px 8px 16px;
    background: #71ac29;
  }
  .landingpage-business .section.video-explanation h2, .landingpage-business .section.video-explanation h3, .landingpage-business .section.video-experiment h2, .landingpage-business .section.video-experiment h3 {
    color: #71ac29;
    width: 100%;
    padding: 24px;
    margin: 0;
    box-sizing: border-box;
  }
  .landingpage-business .section.video-explanation h2, .landingpage-business .section.video-experiment h2 {
    font-size: 20px;
  }
  .landingpage-business .section.video-explanation h3, .landingpage-business .section.video-experiment h3 {
    font-size: 16px;
  }

  .landingpage-business .section.shops {
    background-color: #71ac29;
    color: white;
  }
  .landingpage-business .section.shops .title {
    font-size: 20px;
  }
  .landingpage-business .section.shops .subtitle {
    font-size: 16px;
    margin: 16px 0 16px 0;
    line-height: 24px;
  }
  .landingpage-business .section.shops .possibilities {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .landingpage-business .section.shops .possibilities .possibility {
    margin-top: 24px;
    color: rgba(0, 0, 0, 0.84);
  }
  .landingpage-business .section.shops .possibilities .possibility .image {
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 160px;
    width: 100%;
  }
  .landingpage-business .section.shops .possibilities .possibility.diy .image {
    background-image: url("/static/images/landingpage-public/possibility-diy.jpg");
  }
  .landingpage-business .section.shops .possibilities .possibility.gift .image {
    background-image: url("/static/images/landingpage-public/possibility-gift.jpg");
  }
  .landingpage-business .section.shops .possibilities .possibility.buy-case-tag .image {
    background-image: url("/static/images/landingpage-business/shop-case.jpg");
  }
  .landingpage-business .section.shops .possibilities .possibility.buy-tag-default .image {
    background-image: url("/static/images/landingpage-business/shop-qr.jpg");
  }
  .landingpage-business .section.shops .possibilities .possibility.buy-tag .image {
    background-image: url("/static/images/landingpage-public/possibility-buy-tag.jpg");
  }
  .landingpage-business .section.shops .possibilities .possibility.buy-sticker .image {
    background-image: url("/static/images/landingpage-public/possibility-buy-sticker.jpg");
  }
  .landingpage-business .section.shops .possibilities .possibility .body {
    padding: 24px;
    font-size: 14px;
    background-color: white;
    min-height: 158px;
    display: flex;
    flex-direction: column;
  }
  .landingpage-business .section.shops .possibilities .possibility .body h2 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 16px;
  }
  .landingpage-business .section.shops .possibilities .possibility:last-of-type {
    margin-right: 0;
  }
  .landingpage-business .section.shops .possibilities .link-wrapper {
    width: 100%;
    text-align: left;
    font-family: robotoregular;
  }
  .landingpage-business .section.shops .possibilities .link-wrapper .link {
    text-decoration: none;
  }

  .landingpage-business .section.statistics {
    position: relative;
    padding-top: 40px;
  }
  .landingpage-business .section.statistics .body {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .landingpage-business .section.statistics .body .statistics-image.desktop {
    display: none;
  }
  .landingpage-business .section.statistics .body .statistics-text {
    color: #999999;
    display: inline-block;
    vertical-align: top;
  }
  .landingpage-business .section.statistics .body .statistics-text.desktop {
    display: none;
  }
  .landingpage-business .section.statistics .body .statistics-text h1.title {
    margin: 0;
    color: #71ac29;
    text-align: center;
    font-size: 18px;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation {
    text-align: center;
    line-height: 24px;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation ul.statistics-list {
    margin-top: 32px;
    padding-right: 16px;
    padding-left: 16px;
    display: flex;
    justify-content: center;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation ul.statistics-list li {
    background-image: url("/static/images/landingpage-business/ic_check.svg");
    background-repeat: no-repeat;
    padding-left: 30px;
    list-style-type: none;
    background-position-y: center;
    margin-bottom: 16px;
    text-align: left;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation .statistics-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation .statistics-image .legend {
    margin-left: 24px;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation .statistics-image .legend .legend-part {
    font-size: 12px;
    padding: 8px 16px 8px 16px;
    border-radius: 2px;
    text-align: center;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation .statistics-image .legend .legend-part.active {
    background: #71ac29;
    color: white;
    margin-bottom: 16px;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation .statistics-image .legend .legend-part.inactive {
    background: #eaeaea;
    color: rgba(0, 0, 0, 0.56);
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation .statistics-image .piechart {
    position: relative;
    width: 150px;
    height: 150px;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation .statistics-image .piechart .label {
    z-index: 2;
    position: absolute;
    font-size: 18px;
    font-weight: bold;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation .statistics-image .piechart .label.active {
    color: rgba(0, 0, 0, 0.56);
    top: 32px;
    right: 24px;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation .statistics-image .piechart .label.inactive {
    color: white;
    bottom: 32px;
    left: 40px;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation .statistics-image .piechart .piece {
    position: absolute;
    width: 150px;
    height: 150px;
    clip: rect(0px, 150px, 150px, 75px);
    border-radius: 75px;
    transition: all 0.8s ease-out;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation .statistics-image .piechart .piece.active-1 {
    transform: rotate(90deg);
    background: #71ac29;
    z-index: 1;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation .statistics-image .piechart .piece.active-2 {
    transform: rotate(180deg);
    background: #71ac29;
    z-index: 1;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation .statistics-image .piechart .piece.inactive {
    background: #eaeaea;
    clip: unset;
  }
  .landingpage-business .section.statistics .body .statistics-text .explanation .statistics-image .piechart .piece .piece-inner {
    position: absolute;
    width: 150px;
    height: 150px;
    clip: rect(0px, 75px, 150px, 0px);
    border-radius: 75px;
    -webkit-backface-visibility: hidden;
    transition: all 0.8s ease-out;
  }
  .landingpage-business .section.statistics .footer {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-top: 24px;
  }
  .landingpage-business .section.statistics .footer .info {
    display: none;
  }
  .landingpage-business .section.statistics .footer .button-wrapper {
    width: 100%;
    text-align: center;
  }
  .landingpage-business .section.statistics .footer .button-wrapper .icon {
    vertical-align: middle;
    width: 24px;
  }
  .landingpage-business .section.statistics .footer .button-wrapper .button {
    text-decoration: none;
    cursor: pointer;
    margin-top: 24px;
    display: inline-block;
    background-color: #f73f10;
    color: white;
    padding: 8px 48px 8px 48px;
  }

  .landingpage-business .section.owners-advantages {
    background-color: #71ac29;
  }
  .landingpage-business .section.owners-advantages h1 {
    color: white;
    text-align: center;
    font-size: 18px;
    margin: 0;
  }
  .landingpage-business .section.owners-advantages .body {
    margin-top: 40px;
  }
  .landingpage-business .section.owners-advantages .body .advantages-image {
    text-align: center;
  }
  .landingpage-business .section.owners-advantages .body .advantages-image img {
    width: 120px;
    color: white;
  }
  .landingpage-business .section.owners-advantages .body .advantages-explanation {
    text-align: center;
    line-height: 24px;
    color: white;
    margin-top: 32px;
  }
  .landingpage-business .section.owners-advantages .body .advantages-explanation .advantages-explanation-headline {
    font-size: 16px;
  }
  .landingpage-business .section.owners-advantages .body .advantages-explanation .advantages-explanation-body {
    margin-top: 16px;
  }
  .landingpage-business .section.owners-advantages .body .advantages-explanation .advantages-explanation-footer {
    margin-top: 16px;
  }
  .landingpage-business .section.owners-advantages .footer {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  .landingpage-business .section.owners-advantages .footer .text {
    background-color: white;
    padding: 24px;
    text-align: center;
    border-radius: 12px;
  }

  .landingpage-business .section.privacy {
    background-color: #71ac29;
    padding: 24px;
    position: relative;
    z-index: 1;
  }
  .landingpage-business .section.privacy .icons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .landingpage-business .section.privacy .icons .icon {
    position: relative;
    height: 80px;
  }
  .landingpage-business .section.privacy .icons .icon:nth-of-type(2) {
    height: 136px;
  }
  .landingpage-business .section.privacy .icons .icon img {
    height: 100%;
  }
  .landingpage-business .section.privacy .icons .icon img.desktop {
    display: none;
  }
  .landingpage-business .section.privacy .icons .icon img.symbol {
    position: absolute;
  }
  .landingpage-business .section.privacy .icons .icon img.symbol.lock {
    left: 28px;
    width: 24px;
    top: 0;
  }
  .landingpage-business .section.privacy .icons .icon img.symbol.figure {
    left: 33px;
    width: 72px;
    top: 0;
  }
  .landingpage-business .section.privacy .icons .icon img.symbol.rulers {
    left: 24px;
    width: 32px;
    top: 0;
  }
  .landingpage-business .section.privacy .explanation-area {
    vertical-align: top;
    color: white;
  }
  .landingpage-business .section.privacy .explanation-area ul {
    padding-left: 0;
    margin-top: 32px;
    margin-bottom: 0;
  }
  .landingpage-business .section.privacy .explanation-area ul li {
    background-image: url(/static/images/landingpage-public/ic_check_white.svg);
    background-repeat: no-repeat;
    padding-left: 40px;
    list-style-type: none;
    background-position-y: center;
    font-size: 16px;
    margin-bottom: 16px;
    text-align: left;
  }
  .landingpage-business .section.privacy .explanation-area ul li:last-of-type {
    margin-bottom: 0;
  }
  .landingpage-business .section.privacy .explanation-area .headline {
    margin-top: 24px;
    font-weight: normal;
    text-align: center;
    font-size: 20px;
  }
  .landingpage-business .section.privacy {
    background-color: white;
  }
  .landingpage-business .section.privacy .headline, .landingpage-business .section.privacy .explanation {
    color: rgba(0, 0, 0, 0.84);
  }
  .landingpage-business .section.privacy .explanation ul li {
    background-image: url(/static/images/landingpage-business/ic_check.svg) !important;
  }

  .landingpage-business .section.contact {
    background-color: #71ac29;
    padding-bottom: 8px;
  }
  .landingpage-business .section.contact.desktop {
    display: none;
  }
  .landingpage-business .section.contact h1 {
    color: white;
    text-align: center;
    padding-bottom: 24px;
    margin: 0;
    font-size: 20px;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card img {
    display: none;
    height: 200px;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body {
    background-color: white;
    padding: 32px;
    box-sizing: border-box;
    color: #888888;
    margin-bottom: 40px;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body .name {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 24px;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body .mail {
    margin-bottom: 16px;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body .phone {
    margin-bottom: 16px;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body .social-media {
    margin-top: 32px;
    height: 32px;
    width: 100%;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body .social-media a {
    text-decoration: none;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body .social-media a img {
    display: inline-block;
    height: 100%;
  }
  .landingpage-business .section.contact .business-card-wrapper .business-card .body .social-media a img:first-of-type {
    margin-right: 8px;
  }

  .landingpage-business .section.footer {
    background-color: #073B3A;
  }
  .landingpage-business .section.footer.desktop {
    display: none;
  }
  .landingpage-business .section.footer a {
    text-decoration: none;
    color: white;
  }
  .landingpage-business .section.footer .links {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    padding-left: 0;
    list-style-type: none;
    line-height: 64px;
  }
  .landingpage-business .section.footer .brand {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .landingpage-business .section.footer .brand img {
    height: 36px;
  }
  .landingpage-business .section.footer .brand .patavinus-title {
    font-family: "centurygothic";
    display: inline-block;
    color: white;
    height: 72px;
    line-height: 72px;
    vertical-align: top;
    margin-left: 16px;
    font-size: 32px;
  }
}
.landingpage-business {
  font-family: "robotolight";
}
.landingpage-business h1, .landingpage-business h2, .landingpage-business h3 {
  font-family: "montserrat";
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  .dashboard {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .dashboard canvas {
    margin-top: 24px;
    width: 800px;
    margin-bottom: 48px;
  }
  .dashboard h1, .dashboard h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .dashboard {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .dashboard canvas {
    margin-top: 24px;
    margin-bottom: 48px;
  }
  .dashboard h1, .dashboard h2 {
    text-align: center;
  }
}
@media only screen and (min-width: 769px) {
  .landingpage h1, .landingpage h2, .landingpage h3 {
    font-family: "montserrat";
  }
  .landingpage .section.desktop {
    display: block;
  }
  .landingpage .section.mobile {
    display: none !important;
  }

  .mobile.navigation {
    display: none;
  }

  .section.navigation {
    background-color: white;
    display: flex !important;
    justify-content: space-between;
    height: 64px;
    align-items: center;
    position: fixed;
    left: 0;
    z-index: 5;
    color: black;
    align-items: center;
    width: 100%;
  }
  .section.navigation .brand {
    width: 128px;
    margin-left: 24px;
  }
  .section.navigation .menu {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .section.navigation .menu li {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin-left: 8px;
    padding-right: 24px;
    font-family: "robotolight";
  }
  .section.navigation .menu li:last-of-type {
    border: none;
  }
  .section.navigation .menu li.active {
    font-family: "robotoregular";
  }
  .section.navigation .menu li:hover {
    font-family: "robotoregular";
  }
  .section.navigation .menu li a {
    color: black;
    text-decoration: none;
  }

  .landingpage .section.header {
    color: white;
    background-color: #71ac29;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding-top: 128px;
    padding-bottom: 180px;
    background-image: url("../images/under-construction/bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .landingpage .section.header .header-image {
    top: 0;
    position: absolute;
    height: 100%;
    left: 0;
  }
  .landingpage .section.header .body {
    z-index: 2;
    display: flex;
    margin-top: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .landingpage .section.header .body .title {
    text-align: center;
    font-size: 22px;
    font-weight: normal;
    margin: 0;
  }
  .landingpage .section.header .body .subtitle {
    text-align: center;
    font-family: "montserrat";
    font-size: 44px;
    margin: 32px 0 32px 0;
  }
  .landingpage .section.header .body .explanation {
    width: 400px;
    text-align: center;
    font-size: 16px;
    font-family: "robotolight";
  }
  .landingpage .section.header .body .button-wrapper {
    width: 100%;
    text-align: center;
  }
  .landingpage .section.header .body .button-wrapper .icon {
    vertical-align: middle;
    width: 24px;
  }
  .landingpage .section.header .body .button-wrapper .button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    margin-top: 32px;
    display: inline-block;
    background-color: #f73f10;
    color: white;
    padding: 8px 48px 8px 48px;
    vertical-align: middle;
    font-weight: bold;
  }
  .landingpage .section.header .body .button-wrapper .button .button-text {
    vertical-align: middle;
    font-weight: bold;
  }

  .landingpage .section.community {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .landingpage .section.community .wrapper {
    max-width: 1000px;
    width: 100%;
    position: relative;
    background-color: white;
    padding: 32px;
    text-align: center;
    margin: -64px 80px 0 80px;
    border-radius: 16px;
    z-index: 1;
  }
  .landingpage .section.community .wrapper .headline {
    margin-top: 0;
    font-weight: normal;
    font-family: "montserrat";
  }
  .landingpage .section.community .wrapper .explanation {
    margin-top: 16px;
    font-size: 14px;
  }
  .landingpage .section.community .wrapper .badges {
    display: flex;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
    height: 56px;
  }
  .landingpage .section.community .wrapper .badges.manual {
    margin-top: 0;
  }
  .landingpage .section.community .wrapper .badges .badge-manual {
    background: black;
    color: white;
    display: flex;
    align-items: center;
    height: 36px;
    border-radius: 8px;
    padding: 2px 12px;
    margin: 8px;
    font-family: robotoregular;
    text-decoration: none;
  }
  .landingpage .section.community .wrapper .badges .badge {
    display: flex;
    align-items: center;
    height: 56px;
  }
  .landingpage .section.community .wrapper .badges .badge.apple img {
    padding: 8px;
  }
  .landingpage .section.community .wrapper .badges .badge img {
    max-height: 100%;
  }
  .landingpage .section.community .wrapper .divider {
    border: 0;
    height: 1px;
    margin: 40px 0 16px 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  }
  .landingpage .section.community .wrapper .image {
    text-decoration: none;
  }
  .landingpage .section.community .wrapper .image img {
    width: 33%;
  }

  .landingpage .section.chatfinder {
    background-color: #fafafa;
    padding: 64px 80px 64px 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .landingpage .section.chatfinder .body {
    display: flex;
    justify-content: center;
  }
  .landingpage .section.chatfinder .body .text {
    height: 100%;
    max-width: 660px;
  }
  .landingpage .section.chatfinder .body .text .headline {
    font-weight: normal;
    color: #71ac29;
  }
  .landingpage .section.chatfinder .body .finder {
    margin-left: 80px;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
    align-items: baseline;
    width: 660px;
  }
  .landingpage .section.chatfinder .body .finder .input {
    height: 36px;
    width: 320px;
    background-color: white;
    border: 3px solid #71ac29;
    padding: 0;
    display: flex;
    z-index: 1;
  }
  .landingpage .section.chatfinder .body .finder .input > input {
    text-align: center;
    outline: none;
    border: 0;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    margin: 8px;
    font-size: 16px;
  }
  .landingpage .section.chatfinder .body .finder .input > input::placeholder {
    color: #aeaeae;
  }
  .landingpage .section.chatfinder .body .finder .button {
    text-decoration: none;
    cursor: pointer;
    margin-top: 24px;
    display: inline-block;
    background-color: #71ac29;
    color: white;
    padding: 8px 48px 8px 48px;
  }

  .landingpage .section.videos {
    background-color: #fafafa;
    padding: 64px 80px 64px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .landingpage .section.videos .sample {
    display: flex;
  }
  .landingpage .section.videos .sample:last-of-type {
    margin-top: 48px;
  }
  .landingpage .section.videos .sample .video-area {
    margin-right: 40px;
    width: 660px;
    height: 495px;
  }
  .landingpage .section.videos .sample .video-area iframe {
    width: 100%;
    height: 100%;
  }
  .landingpage .section.videos .sample .explanation-area {
    margin-left: 40px;
    max-width: 660px;
    height: 495px;
    vertical-align: top;
  }
  .landingpage .section.videos .sample .explanation-area .headline {
    margin-top: 0;
    font-weight: normal;
    color: #71ac29;
  }
  .landingpage .section.videos .sample .explanation-area .explanation .sample-code {
    display: flex;
    align-items: center;
    justify-content: left;
    height: 240px;
  }
  .landingpage .section.videos .sample .explanation-area .explanation .sample-code > img {
    padding: 16px;
    border: 2px solid rgba(0, 0, 0, 0.34);
    border-radius: 8px;
    max-width: 160px;
  }

  .landingpage .section.privacy {
    background-color: #71ac29;
    color: white;
    padding: 64px 80px 64px 80px;
    display: flex;
    justify-content: center;
  }
  .landingpage .section.privacy .icons {
    width: 660px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
  }
  .landingpage .section.privacy .icons .icon {
    height: 120px;
    position: relative;
  }
  .landingpage .section.privacy .icons .icon:nth-of-type(2) {
    height: 180px;
  }
  .landingpage .section.privacy .icons .icon img {
    height: 100%;
  }
  .landingpage .section.privacy .icons .icon img.mobile {
    display: none;
  }
  .landingpage .section.privacy .icons .icon img.symbol {
    position: absolute;
  }
  .landingpage .section.privacy .icons .icon img.symbol.lock {
    left: 40px;
    width: 40px;
    top: 0;
  }
  .landingpage .section.privacy .icons .icon img.symbol.figure {
    left: 50px;
    width: 80px;
    top: 0;
  }
  .landingpage .section.privacy .icons .icon img.symbol.rulers {
    left: 40px;
    width: 40px;
    top: 0;
  }
  .landingpage .section.privacy .explanation-area {
    margin-left: 40px;
    max-width: 660px;
    vertical-align: top;
  }
  .landingpage .section.privacy .explanation-area ul {
    padding-left: 20px;
  }
  .landingpage .section.privacy .explanation-area ul li {
    background-image: url(/static/images/landingpage-public/ic_check_white.svg);
    background-repeat: no-repeat;
    padding-left: 40px;
    list-style-type: none;
    background-position-y: center;
    text-align: left;
    margin-bottom: 16px;
  }
  .landingpage .section.privacy .explanation-area .headline {
    margin-bottom: 32px;
    margin-top: 0;
    font-weight: normal;
  }
  .landingpage .section.screenshots {
    background-color: #FAFAFA;
    padding: 64px 80px 88px 80px;
  }
  .landingpage .section.screenshots .headline {
    font-weight: normal;
    margin: 0;
    color: #71ac29;
    text-align: center;
  }
  .landingpage .section.screenshots .body {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper {
    min-width: 320px;
    position: relative;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper:last-of-type {
    margin-left: 100px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper .mobile {
    display: none;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper .glide {
    position: absolute;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper .glide .glide__bullets {
    margin-top: 80px;
    text-align: center;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper .glide .glide__bullets .glide__bullet {
    height: 16px;
    width: 16px;
    padding: 0;
    border-radius: 8px;
    border: 2px solid #71ac29;
    background: none;
    outline: none !important;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper .glide .glide__bullets .glide__bullet--active {
    outline: none;
    background-color: #71ac29;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper.apple .glide {
    top: 64px;
    left: 18px;
    height: 696px;
    width: 284px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper.apple .glide * {
    width: 284px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper.apple .glide img {
    height: 500px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper.android .glide {
    top: 36px;
    left: 18px;
    height: 680px;
    width: 284px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper.android .glide * {
    width: 284px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper.android .glide img {
    height: 571px;
  }
  .landingpage .section.screenshots .body .badge {
    display: none;
  }

  .landingpage .section.footer {
    height: 160px;
    background-color: #073B3A;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .landingpage .section.footer.mobile {
    display: none;
  }
  .landingpage .section.footer a {
    color: white;
    margin-right: 24px;
    cursor: pointer;
    text-decoration: none;
  }
  .landingpage .section.footer a:last-of-type {
    margin-right: 0;
  }
  .landingpage .section.footer .legal-links {
    font-size: 14px;
    position: absolute;
    right: 32px;
    bottom: 32px;
  }

  .landingpage .section.shops {
    position: relative;
    padding: 64px 80px 64px 80px;
    background-color: #71ac29;
  }
  .landingpage .section.shops h1.shops-headline {
    color: white;
    text-align: center;
    font-size: 28px;
    margin-top: 0;
  }
  .landingpage .section.shops .subheader {
    font-size: 16px;
    text-align: center;
    color: white;
    margin: 24px 0 40px 0;
  }
  .landingpage .section.shops .possibilities {
    text-align: center;
    margin-top: 24px;
  }
  .landingpage .section.shops .possibilities .possibility {
    display: inline-block;
    width: 400px;
    margin: 24px;
    vertical-align: top;
  }
  .landingpage .section.shops .possibilities .possibility .image {
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 196px;
    width: 100%;
  }
  .landingpage .section.shops .possibilities .possibility.diy .image {
    background-image: url("/static/images/landingpage-public/possibility-diy.jpg");
  }
  .landingpage .section.shops .possibilities .possibility.gift .image {
    background-image: url("/static/images/landingpage-public/possibility-gift.jpg");
  }
  .landingpage .section.shops .possibilities .possibility.buy-tag .image {
    background-image: url("/static/images/landingpage-public/possibility-buy-tag.jpg");
  }
  .landingpage .section.shops .possibilities .possibility.buy-case-tag .image {
    background-image: url("/static/images/landingpage-business/shop-case.jpg");
  }
  .landingpage .section.shops .possibilities .possibility.buy-tag-default .image {
    background-image: url("/static/images/landingpage-business/shop-qr.jpg");
  }
  .landingpage .section.shops .possibilities .possibility.buy-sticker .image {
    background-image: url("/static/images/landingpage-public/possibility-buy-sticker.jpg");
  }
  .landingpage .section.shops .possibilities .possibility .body {
    padding: 24px;
    font-size: 14px;
    background-color: white;
    color: rgba(0, 0, 0, 0.54);
    min-height: 88px;
    display: flex;
    text-align: left;
    flex-direction: column;
  }
  .landingpage .section.shops .possibilities .possibility .body h2 {
    color: rgba(0, 0, 0, 0.84);
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 16px;
  }
  .landingpage .section.shops .possibilities .possibility .body .subtitle {
    color: rgba(0, 0, 0, 0.54);
  }
  .landingpage .section.shops .possibilities .possibility img {
    width: 100%;
  }
  .landingpage .section.shops .possibilities .link-wrapper {
    width: 100%;
    text-align: right;
    font-family: robotoregular;
    margin-top: 16px;
  }
  .landingpage .section.shops .possibilities .link-wrapper .link {
    text-decoration: none;
  }
  .landingpage .app-store-modal-wrapper {
    display: none;
  }

  .section.partners {
    padding: 64px 80px 64px 80px;
    background-color: white;
    text-align: center;
  }
  .section.partners h1 {
    color: #71ac29;
  }
  .section.partners .logos {
    margin-top: 32px;
    display: flex;
    justify-content: center;
  }
  .section.partners .logos > img {
    margin-left: 48px;
    display: inline-block;
    width: 50%;
    max-width: 200px;
  }
  .section.partners .logos > img:nth-of-type(1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .landingpage h1, .landingpage h2, .landingpage h3 {
    font-family: "montserrat";
  }
  .landingpage .section.desktop {
    display: none !important;
  }
  .landingpage .section.mobile {
    display: block;
    padding: 24px;
  }
  .landingpage .overlay {
    z-index: 100;
  }
  .landingpage .overlay.visible {
    display: block;
  }

  .mobile.navigation {
    background-color: white;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 6;
    color: black;
    left: 0;
    top: 0;
    transition: left 0.5s ease;
  }
  .mobile.navigation.shifted {
    left: 100%;
  }
  .mobile.navigation .header {
    width: 100%;
    border-bottom: 1px solid #71ac29;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }
  .mobile.navigation .header .logo {
    height: 32px;
    margin-left: 24px;
  }
  .mobile.navigation .header .close-button {
    height: 32px;
    margin-right: 16px;
    cursor: pointer;
  }
  .mobile.navigation .menu {
    text-align: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .mobile.navigation .menu li {
    border-bottom: 1px solid #eaeaea;
    font-family: "robotoregular";
    text-decoration: none;
    cursor: pointer;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile.navigation .menu li.active {
    color: #71ac29;
  }
  .mobile.navigation .menu li a {
    color: black;
    text-decoration: none;
  }
  .mobile.navigation .language {
    font-family: "robotoregular";
    width: 100%;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    position: absolute;
    height: 80px;
  }
  .mobile.navigation .language a {
    color: black;
    text-decoration: none;
  }

  .landingpage .section.header {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding: 0 0 80px 0;
    background-image: url(/static/images/header/dog.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
  }
  .landingpage .section.header .header-image {
    top: 0;
    position: absolute;
    height: 100%;
    left: 0;
  }
  .landingpage .section.header .content {
    z-index: 2;
  }
  .landingpage .section.header .content .button-wrapper .mag-icon {
    vertical-align: middle;
  }
  .landingpage .section.header .content .button-wrapper .button .button-text {
    vertical-align: middle;
    font-weight: bold;
  }
  .landingpage .section.header .brand {
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 24px;
    box-sizing: border-box;
    position: fixed;
    background-color: white;
    top: 0;
    z-index: 5;
    height: 64px;
  }
  .landingpage .section.header .brand img {
    height: 32px;
  }
  .landingpage .section.header .brand img.menu-button {
    cursor: pointer;
  }
  .landingpage .section.header .content {
    padding: 24px;
    margin-top: 65px;
    color: white;
  }
  .landingpage .section.header .content .title {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 0;
    font-size: 16px;
  }
  .landingpage .section.header .content .explanation {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
  }
  .landingpage .section.header .content .button-wrapper {
    width: 100%;
    text-align: center;
  }
  .landingpage .section.header .content .button-wrapper .icon {
    vertical-align: middle;
    width: 24px;
  }
  .landingpage .section.header .content .button-wrapper .button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    margin-top: 32px;
    display: inline-block;
    background-color: #f73f10;
    color: white;
    padding: 8px 48px 8px 48px;
    vertical-align: middle;
    font-weight: bold;
  }
  .landingpage .section.header {
    margin-top: 24px;
  }
  .landingpage .section.header .content .subtitle {
    font-size: 20px;
  }

  .landingpage .section.community {
    background-color: white;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 24px 24px 2px 24px;
  }
  .landingpage .section.community .headline {
    margin: 0 0 16px 0;
  }
  .landingpage .section.community .wrapper {
    max-width: 1000px;
    width: 100%;
    position: relative;
    background-color: white;
    padding: 16px;
    text-align: center;
    margin-top: -64px;
    border-radius: 16px;
    z-index: 1;
  }
  .landingpage .section.community .wrapper .explanation {
    margin-top: 16px;
    line-height: 24px;
  }
  .landingpage .section.community .wrapper .badges {
    display: flex;
    margin-top: 16px;
    align-items: center;
    justify-content: center;
  }
  .landingpage .section.community .wrapper .badges.manual {
    margin: 0;
  }
  .landingpage .section.community .wrapper .badges .badge-manual {
    background: black;
    color: white;
    display: flex;
    align-items: center;
    height: 36px;
    border-radius: 8px;
    padding: 2px 12px;
    margin: 8px;
    font-family: robotoregular;
    text-decoration: none;
  }
  .landingpage .section.community .wrapper .badges .badge {
    display: flex;
    align-items: center;
  }
  .landingpage .section.community .wrapper .badges .badge.apple img {
    padding: 8px;
  }
  .landingpage .section.community .wrapper .badges .badge img {
    max-width: 160px;
  }
  .landingpage .section.community .wrapper .divider {
    border: 0;
    height: 1px;
    margin: 24px 0 16px 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  }
  .landingpage .section.community .wrapper .image {
    text-decoration: none;
  }
  .landingpage .section.community .wrapper .image img {
    width: 50%;
  }

  .landingpage .section.chatfinder {
    background-color: rgba(113, 172, 41, 0.4);
    padding: 40px;
  }
  .landingpage .section.chatfinder .body {
    display: flex;
    justify-content: center;
  }
  .landingpage .section.chatfinder .body .text {
    height: 100%;
    width: 520px;
  }
  .landingpage .section.chatfinder .body .text .headline {
    font-weight: normal;
  }
  .landingpage .section.chatfinder .body .finder {
    margin-left: 64px;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
    align-items: baseline;
    width: 520px;
  }
  .landingpage .section.chatfinder .body .finder .input {
    height: 36px;
    width: 320px;
    border-radius: 8px;
    background-color: white;
    border: 3px solid #71ac29;
    padding: 0;
    display: flex;
    z-index: 1;
  }
  .landingpage .section.chatfinder .body .finder .input > input {
    text-align: center;
    outline: none;
    border: 0;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    margin: 8px;
    font-size: 16px;
  }
  .landingpage .section.chatfinder .body .finder .input > input::placeholder {
    color: #aeaeae;
  }
  .landingpage .section.chatfinder .body .finder .button {
    margin-top: 32px;
    background-color: #71ac29;
    color: white;
    padding: 8px 32px 8px 32px;
    border-radius: 8px;
  }

  .landingpage .section.video-explanation, .landingpage .section.video-experiment {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 3;
    padding: 0 0 24px 0;
    box-sizing: border-box;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.24);
  }
  .landingpage .section.video-explanation .video-area, .landingpage .section.video-experiment .video-area {
    margin-top: 24px;
    width: 100%;
    text-align: center;
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
  }
  .landingpage .section.video-explanation .video-area iframe,
.landingpage .section.video-explanation .video-area object,
.landingpage .section.video-explanation .video-area embed, .landingpage .section.video-experiment .video-area iframe,
.landingpage .section.video-experiment .video-area object,
.landingpage .section.video-experiment .video-area embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .landingpage .section.video-explanation .explanation, .landingpage .section.video-experiment .explanation {
    width: 100%;
    line-height: 24px;
    padding: 0 24px 0 24px;
    box-sizing: border-box;
  }
  .landingpage .section.video-explanation .explanation .button-wrapper, .landingpage .section.video-experiment .explanation .button-wrapper {
    margin-top: 24px;
    box-sizing: border-box;
  }
  .landingpage .section.video-explanation .explanation .button-wrapper .button, .landingpage .section.video-experiment .explanation .button-wrapper .button {
    padding: 8px 16px 8px 16px;
    background: #71ac29;
  }
  .landingpage .section.video-explanation h2, .landingpage .section.video-explanation h3, .landingpage .section.video-experiment h2, .landingpage .section.video-experiment h3 {
    color: #71ac29;
    width: 100%;
    padding: 24px;
    margin: 0;
    box-sizing: border-box;
  }
  .landingpage .section.video-explanation h2, .landingpage .section.video-experiment h2 {
    font-size: 20px;
  }
  .landingpage .section.video-explanation h3, .landingpage .section.video-experiment h3 {
    font-size: 16px;
  }

  .landingpage .section.privacy {
    background-color: #71ac29;
    padding: 24px;
    position: relative;
    z-index: 1;
  }
  .landingpage .section.privacy .icons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .landingpage .section.privacy .icons .icon {
    position: relative;
    height: 80px;
  }
  .landingpage .section.privacy .icons .icon:nth-of-type(2) {
    height: 136px;
  }
  .landingpage .section.privacy .icons .icon img {
    height: 100%;
  }
  .landingpage .section.privacy .icons .icon img.desktop {
    display: none;
  }
  .landingpage .section.privacy .icons .icon img.symbol {
    position: absolute;
  }
  .landingpage .section.privacy .icons .icon img.symbol.lock {
    left: 28px;
    width: 24px;
    top: 0;
  }
  .landingpage .section.privacy .icons .icon img.symbol.figure {
    left: 33px;
    width: 72px;
    top: 0;
  }
  .landingpage .section.privacy .icons .icon img.symbol.rulers {
    left: 24px;
    width: 32px;
    top: 0;
  }
  .landingpage .section.privacy .explanation-area {
    vertical-align: top;
    color: white;
  }
  .landingpage .section.privacy .explanation-area ul {
    padding-left: 0;
    margin-top: 32px;
    margin-bottom: 0;
  }
  .landingpage .section.privacy .explanation-area ul li {
    background-image: url(/static/images/landingpage-public/ic_check_white.svg);
    background-repeat: no-repeat;
    padding-left: 40px;
    list-style-type: none;
    background-position-y: center;
    font-size: 16px;
    margin-bottom: 16px;
    text-align: left;
  }
  .landingpage .section.privacy .explanation-area ul li:last-of-type {
    margin-bottom: 0;
  }
  .landingpage .section.privacy .explanation-area .headline {
    margin-top: 24px;
    font-weight: normal;
    text-align: center;
    font-size: 20px;
  }

  .landingpage .section.screenshots {
    background-color: white;
    padding: 24px;
    position: relative;
    color: #71ac29;
  }
  .landingpage .section.screenshots .headline {
    font-weight: normal;
    margin-bottom: 0;
    text-align: center;
    font-size: 20px;
  }
  .landingpage .section.screenshots .body {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .landingpage .section.screenshots .body .divider {
    margin-top: 80px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    height: 1px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper {
    position: relative;
    width: 256px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper:last-of-type {
    margin-top: 16px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper .desktop {
    display: none;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper .glide {
    position: absolute;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper .glide .glide__bullets {
    margin-top: 60px;
    text-align: center;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper .glide .glide__bullets .glide__bullet {
    height: 20px;
    width: 20px;
    padding: 0;
    border-radius: 10px;
    border: 2px solid #71ac29;
    background: none;
    outline: none !important;
    margin-left: 8px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper .glide .glide__bullets .glide__bullet:nth-of-type(1) {
    margin-left: 0;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper .glide .glide__bullets .glide__bullet--active {
    outline: none;
    background-color: #71ac29;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper img {
    width: 100%;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper.apple .glide {
    top: 46px;
    left: 14px;
    height: 333px;
    width: 228px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper.apple .glide * {
    width: 228px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper.apple .glide img {
    height: 403px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper.android {
    margin-bottom: 32px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper.android .glide {
    top: 25px;
    left: 14px;
    height: 333px;
    width: 228px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper.android .glide * {
    width: 228px;
  }
  .landingpage .section.screenshots .body .screenshot-wrapper.android .glide img {
    height: 456px;
  }
  .landingpage .section.screenshots .body .badge {
    display: flex;
    align-items: center;
    height: 56px;
    margin-top: 48px;
  }
  .landingpage .section.screenshots .body .badge.apple {
    margin-top: 0;
    margin-bottom: 16px;
  }
  .landingpage .section.screenshots .body .badge.apple img {
    padding: 8px;
  }
  .landingpage .section.screenshots .body .badge img {
    max-height: 100%;
  }

  .landingpage .section.footer {
    background-color: #073B3A;
  }
  .landingpage .section.footer.desktop {
    display: none;
  }
  .landingpage .section.footer a {
    text-decoration: none;
    color: white;
  }
  .landingpage .section.footer .links {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    padding-left: 0;
    list-style-type: none;
    line-height: 64px;
  }
  .landingpage .section.footer .brand {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .landingpage .section.footer .brand img {
    height: 36px;
  }
  .landingpage .section.footer .brand .patavinus-title {
    font-family: "centurygothic";
    display: inline-block;
    color: white;
    height: 72px;
    line-height: 72px;
    vertical-align: top;
    margin-left: 16px;
    font-size: 32px;
  }

  .landingpage .section.shops {
    background-color: #71ac29;
    color: white;
  }
  .landingpage .section.shops .title {
    font-size: 20px;
  }
  .landingpage .section.shops .subtitle {
    font-size: 16px;
    margin: 16px 0 16px 0;
    line-height: 24px;
  }
  .landingpage .section.shops .possibilities {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .landingpage .section.shops .possibilities .possibility {
    margin-top: 24px;
    color: rgba(0, 0, 0, 0.84);
  }
  .landingpage .section.shops .possibilities .possibility .image {
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 160px;
    width: 100%;
  }
  .landingpage .section.shops .possibilities .possibility.diy .image {
    background-image: url("/static/images/landingpage-public/possibility-diy.jpg");
  }
  .landingpage .section.shops .possibilities .possibility.gift .image {
    background-image: url("/static/images/landingpage-public/possibility-gift.jpg");
  }
  .landingpage .section.shops .possibilities .possibility.buy-case-tag .image {
    background-image: url("/static/images/landingpage-business/shop-case.jpg");
  }
  .landingpage .section.shops .possibilities .possibility.buy-tag-default .image {
    background-image: url("/static/images/landingpage-business/shop-qr.jpg");
  }
  .landingpage .section.shops .possibilities .possibility.buy-tag .image {
    background-image: url("/static/images/landingpage-public/possibility-buy-tag.jpg");
  }
  .landingpage .section.shops .possibilities .possibility.buy-sticker .image {
    background-image: url("/static/images/landingpage-public/possibility-buy-sticker.jpg");
  }
  .landingpage .section.shops .possibilities .possibility .body {
    padding: 24px;
    font-size: 14px;
    background-color: white;
    min-height: 158px;
    display: flex;
    flex-direction: column;
  }
  .landingpage .section.shops .possibilities .possibility .body h2 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 16px;
  }
  .landingpage .section.shops .possibilities .possibility:last-of-type {
    margin-right: 0;
  }
  .landingpage .section.shops .possibilities .link-wrapper {
    width: 100%;
    text-align: left;
    font-family: robotoregular;
  }
  .landingpage .section.shops .possibilities .link-wrapper .link {
    text-decoration: none;
  }
  .landingpage .app-store-modal-wrapper {
    position: fixed;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.54);
    display: none;
  }
  .landingpage .app-store-modal-wrapper.visible {
    display: flex;
  }
  .landingpage .app-store-modal-wrapper .modal {
    z-index: 101;
    top: 104px;
    padding: 24px 8px 24px 8px;
    background: white;
    border-radius: 4px;
    margin: 0 16px 0 16px;
  }
  .landingpage .app-store-modal-wrapper .modal .modal-title {
    font-size: 20px;
    color: #71ac29;
    margin: 0 8px 0 8px;
  }
  .landingpage .app-store-modal-wrapper .modal .modal-subtitle {
    margin: 16px 8px 16px 8px;
    color: rgba(0, 0, 0, 0.84);
  }
  .landingpage .app-store-modal-wrapper .modal .badges {
    display: flex;
    margin-top: 16px;
    align-items: center;
    justify-content: center;
  }
  .landingpage .app-store-modal-wrapper .modal .badges .badge {
    display: flex;
    align-items: center;
  }
  .landingpage .app-store-modal-wrapper .modal .badges .badge.apple img {
    padding: 8px;
  }
  .landingpage .app-store-modal-wrapper .modal .badges .badge img {
    max-width: 160px;
  }
  .landingpage .app-store-modal-wrapper .modal .modal-button {
    width: 100%;
    text-align: right;
    font-family: robotoregular;
    text-decoration: none;
    margin-top: 32px;
  }
  .landingpage .app-store-modal-wrapper .modal .modal-button .button {
    margin-right: 8px;
  }

  .section.partners {
    padding: 24px;
    background-color: white;
  }
  .section.partners h1 {
    font-size: 20px;
    margin: 0 0 24px 0;
    color: #71ac29;
  }
  .section.partners .logos {
    margin-top: 32px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .section.partners .logos > img {
    margin-top: 48px;
    width: 50%;
    max-width: 184px;
  }
  .section.partners .logos > img:nth-of-type(1) {
    margin-top: 0;
  }
}
.landingpage {
  font-family: "robotolight";
}

@media only screen and (min-width: 768px) {
  .under-construction {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 24px 0 24px;
    background-image: url("../images/under-construction/bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .under-construction img {
    width: 196px;
  }
  .under-construction img.logo {
    width: 172px;
    margin-bottom: -180px;
  }
  .under-construction h1 {
    text-align: center;
    color: white;
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .under-construction {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 24px 0 24px;
    background-image: url("../images/under-construction/bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .under-construction img {
    width: 33%;
  }
  .under-construction img.logo {
    width: 25%;
    margin-bottom: -152px;
  }
  .under-construction h1 {
    text-align: center;
    color: white;
    font-size: 24px;
  }
}
/*@media only screen and (min-width: 769px) {
    @import 'desktop/main';
}*/
@media only screen and (max-width: 1024px) {
  .shop {
    background: #fafafa;
    padding: 16px;
    text-align: center;
  }
  .shop .circonf-wrapper {
    text-align: center;
  }
  .shop .circonf-2 {
    border-color: grey;
    border-bottom-color: transparent;
  }
  @keyframes circ-anim {
    from {
      transform: rotate(0);
    }
    to {
      transform: rotate(360deg);
    }
  }
  .shop .spinner {
    box-sizing: border-box;
    display: inline-block;
    animation-name: anim-spinner;
    animation-duration: 0.7s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  .shop .spinner .circle {
    width: 2em;
    height: 1em;
    overflow: hidden;
  }
  .shop .spinner .circle-inner {
    transform: rotate(45deg);
    border-radius: 50%;
    border: 0.25em solid black;
    border-right: 0.25em solid transparent;
    border-bottom: 0.25em solid transparent;
    width: 100%;
    height: 200%;
    animation-name: anim-circle-1;
    animation-duration: 0.7s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.25, 0.1, 0.5, 1);
  }
  .shop .spinner .circle-2 {
    transform: rotate(180deg);
  }
  .shop .spinner .circle-2 .circle-inner {
    animation-name: anim-circle-2;
  }
  @keyframes anim-circle-1 {
    from {
      transform: rotate(60deg);
    }
    to {
      transform: rotate(205deg);
    }
  }
  @keyframes anim-circle-2 {
    from {
      transform: rotate(30deg);
    }
    to {
      transform: rotate(-115deg);
    }
  }
  @keyframes anim-spinner {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  .shop .shop-item {
    display: inline-block;
    margin-top: 0;
    padding: 8px;
    box-sizing: border-box;
    position: relative;
    width: 43%;
    max-width: 160px;
    vertical-align: top;
    background: white;
    margin: 8px;
  }
  .shop .shop-item.soon {
    opacity: 0.5;
  }
  .shop .shop-item .image {
    height: 160px;
    width: 100%;
    border-radius: 8px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
  }
  .shop .shop-item .image.diy {
    background-image: url("/static/images/products/diy.jpg");
  }
  .shop .shop-item .image.sticker {
    background-image: url("/static/images/products/sticker.jpg");
  }
  .shop .shop-item .image.tag-fox {
    background-image: url("/static/images/products/tag-fox.jpg");
  }
  .shop .shop-item .image.tag-owner {
    background-image: url("/static/images/products/tag-owner.jpg");
  }
  .shop .shop-item .image.tag-logo {
    background-image: url("/static/images/products/tag-logo.jpg");
  }
  .shop .shop-item .image .soon {
    border: 10px solid black;
    transform: rotate(15deg);
    font-size: 26px;
    text-align: center;
    padding: 8px;
    margin: 0 auto;
  }
  .shop .shop-item .button {
    color: #71ac29;
  }
  .shop .shop-item .text {
    color: rgba(0, 0, 0, 0.84);
    font-size: 14px;
    line-height: 19px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 64px;
  }
  .shop .shop-item .text .price {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .shop-detail .header .back-button {
    height: 40px;
    align-items: center;
  }
  .shop-detail .header .back-button img {
    height: 32px;
    margin-top: 8px;
    transform: rotate(90deg);
  }
  .shop-detail .header .image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .shop-detail .header .text {
    padding: 16px;
  }
  .shop-detail .buy-button-wrapper {
    height: 48px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px 0 16px 0;
  }
  .shop-detail .buy-button-wrapper img {
    height: 100%;
  }
  .shop-detail .subtitle {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.84);
    padding: 16px 0 16px 0;
    text-align: center;
    font-weight: bold;
  }
  .shop-detail .explanation {
    padding: 0 16px 0 16px;
    color: rgba(0, 0, 0, 0.54);
  }
  .shop-detail .product-image {
    position: relative;
    margin: 16px 16px 0 16px;
    height: 240px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .shop-detail .product-image:nth-of-type(1) {
    margin-top: 0;
  }
  .shop-detail .product-image .layer {
    background-image: linear-gradient(rgba(1, 1, 1, 0), rgba(1, 1, 1, 0.3));
    height: 30%;
    width: 100%;
    position: absolute;
    bottom: 0;
  }
  .shop-detail .product-image .title {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: white;
  }

  .shop-detail.sticker .header .image {
    background-image: url("/static/images/landingpage-public/possibility-buy-sticker.jpg");
  }
  .shop-detail.sticker .product-image {
    background-image: url("/static/images/landingpage-public/possibility-buy-sticker.jpg");
  }

  .shop-detail.diy {
    margin-bottom: 24px;
  }
  .shop-detail.diy .header .image {
    background-image: url("/static/images/landingpage-public/possibility-diy.jpg");
  }
  .shop-detail.diy .product-image.smartphone {
    background-image: url("/static/images/landingpage-public/possibility-buy-sticker.jpg");
  }
  .shop-detail.diy .button-wrapper {
    width: 100%;
    text-align: center;
    margin: 16px 0 16px 0;
  }
  .shop-detail.diy .button-wrapper .button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    background-color: #71ac29;
    color: white;
    padding: 8px 48px 8px 48px;
  }
  .shop-detail.diy .button-wrapper .button .button-text {
    vertical-align: middle;
    font-weight: bold;
  }

  .shop-detail.tag-fox .header .image {
    background-image: url("/static/images/products/tag-fox.jpg");
  }
  .shop-detail.tag-fox .product-image {
    background-image: url("/static/images/products/tag-fox.jpg");
  }

  .shop-detail.tag-logo .header .image {
    background-image: url("/static/images/products/tag-logo.jpg");
  }
  .shop-detail.tag-logo .product-image {
    background-image: url("/static/images/products/tag-logo.jpg");
  }

  .shop-detail.tag-owner .header .image {
    background-image: url("/static/images/products/tag-owner.jpg");
  }
  .shop-detail.tag-owner .product-image {
    background-image: url("/static/images/products/tag-owner.jpg");
  }
}
@media only screen and (min-width: 769px) {
  .contest h1, .contest h2, .contest h3 {
    font-family: "montserrat";
  }
  .contest div, .contest select {
    font-family: "robotolight";
  }
  .contest .section.desktop {
    display: block;
  }
  .contest .section.mobile {
    display: none !important;
  }

  .contest a, .contest-design-details a {
    text-decoration: none;
  }

  .patavinus-link-box {
    font-size: 18px;
    flex-direction: column;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #71ac29;
    color: white;
    width: 320px;
    height: 336px;
    margin-left: 24px;
    margin-bottom: 24px;
    vertical-align: top;
    font-weight: bold;
    cursor: pointer;
  }
  .patavinus-link-box .link {
    font-size: 16px;
    color: white;
    margin-top: 16px;
    font-weight: normal;
  }

  .banderole {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
    padding: 16px;
    color: white;
  }
  .banderole.winner {
    background: #71ac29;
  }
  .banderole.jury {
    background: #323232;
  }

  .contest .section.header {
    color: white;
    background-color: #71ac29;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding-top: 128px;
    padding-bottom: 180px;
    background-image: url("../images/under-construction/bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .contest .section.header .header-image {
    top: 0;
    position: absolute;
    height: 100%;
    left: 0;
  }
  .contest .section.header .body {
    z-index: 2;
    display: flex;
    margin-top: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contest .section.header .body .title {
    text-align: center;
    font-size: 22px;
    font-weight: normal;
    margin: 0;
  }
  .contest .section.header .body .subtitle {
    text-align: center;
    font-family: "montserrat";
    font-size: 44px;
    margin: 32px 0 32px 0;
  }
  .contest .section.header .body .explanation {
    width: 400px;
    text-align: center;
    font-size: 16px;
    font-family: "robotolight";
  }
  .contest .section.header .body .button-wrapper {
    width: 100%;
    text-align: center;
  }
  .contest .section.header .body .button-wrapper .icon {
    vertical-align: middle;
    width: 24px;
  }
  .contest .section.header .body .button-wrapper .button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    margin-top: 32px;
    display: inline-block;
    background-color: #f73f10;
    color: white;
    padding: 8px 48px 8px 48px;
    vertical-align: middle;
    font-weight: bold;
  }
  .contest .section.header .body .button-wrapper .button .button-text {
    vertical-align: middle;
    font-weight: bold;
  }
  .contest .section.header {
    box-shadow: inset 0 0 0 100vmax rgba(0, 0, 0, 0.66);
    background-image: url("../images/contest/fox-square-desktop.svg") !important;
    background-color: black;
    padding: 0 0 128px 0;
  }
  .contest .section.header .body .button-wrapper .mag-icon {
    vertical-align: middle;
  }
  .contest .section.header .body .button-wrapper .button.inactive {
    background-color: #8c8c8c;
    color: #505050;
    cursor: default;
  }
  .contest .section.header .body .button-wrapper .button:hover {
    box-shadow: 5px 5px 15px black;
    transition: box-shadow 0.3s ease-in-out;
  }
  .contest .section.header .body .button-wrapper .button .button-text {
    vertical-align: middle;
    font-weight: bold;
  }
  .contest .section.header .body .advantage {
    margin-top: 32px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    max-width: 600px;
  }
  .contest .section.community .green {
    color: #71ac29;
  }
  .contest .section.community .wrapper {
    display: flex;
    justify-content: center;
  }
  .contest .section.community .wrapper.finished {
    flex-direction: column;
  }
  .contest .section.community .wrapper .facts {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    max-width: 864px;
  }
  .contest .section.community .wrapper .facts .fact {
    width: 192px;
    font-family: robotolight;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .contest .section.community .wrapper .facts .fact .image {
    height: 176px;
    width: 176px;
    border-radius: 50%;
    background-color: black;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
    transition: border 0.3s ease-in-out;
    background-position: center center;
  }
  .contest .section.community .wrapper .facts .fact .image:hover {
    border: 1px solid black;
  }
  .contest .section.community .wrapper .facts .fact.dog .image {
    background-image: url("../images/contest/circle-dog.jpg") !important;
  }
  .contest .section.community .wrapper .facts .fact.bags {
    font-family: robotoregular !important;
    font-weight: bold;
  }
  .contest .section.community .wrapper .facts .fact.bags .image {
    background-image: url("../images/contest/circle-bags.jpg") !important;
  }
  .contest .section.community .wrapper .facts .fact.baggage .image {
    background-image: url("../images/contest/circle-baggage.jpg") !important;
  }
  .contest .section.community .wrapper .facts .fact .text {
    margin-top: 32px;
  }
}
@media only screen and (min-width: 769px) and (min-width: 966px) {
  .contest .section.community .wrapper .facts .fact {
    width: 256px;
  }
  .contest .section.community .wrapper .facts .fact .image {
    height: 240px;
    width: 240px;
  }
}
@media only screen and (min-width: 769px) {
  .contest .section.community {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .contest .section.community .wrapper {
    max-width: 1000px;
    width: 100%;
    position: relative;
    background-color: white;
    padding: 32px;
    text-align: center;
    margin: -64px 80px 0 80px;
    border-radius: 16px;
    z-index: 1;
  }
  .contest .section.community .wrapper .headline {
    margin-top: 0;
    font-weight: normal;
    font-family: "montserrat";
  }
  .contest .section.community .wrapper .explanation {
    margin-top: 16px;
    font-size: 14px;
  }
  .contest .section.community .wrapper .badges {
    display: flex;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
    height: 56px;
  }
  .contest .section.community .wrapper .badges.manual {
    margin-top: 0;
  }
  .contest .section.community .wrapper .badges .badge-manual {
    background: black;
    color: white;
    display: flex;
    align-items: center;
    height: 36px;
    border-radius: 8px;
    padding: 2px 12px;
    margin: 8px;
    font-family: robotoregular;
    text-decoration: none;
  }
  .contest .section.community .wrapper .badges .badge {
    display: flex;
    align-items: center;
    height: 56px;
  }
  .contest .section.community .wrapper .badges .badge.apple img {
    padding: 8px;
  }
  .contest .section.community .wrapper .badges .badge img {
    max-height: 100%;
  }
  .contest .section.community .wrapper .divider {
    border: 0;
    height: 1px;
    margin: 40px 0 16px 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  }
  .contest .section.community .wrapper .image {
    text-decoration: none;
  }
  .contest .section.community .wrapper .image img {
    width: 33%;
  }
}
@media only screen and (min-width: 769px) {
  .contest .section.sort-select {
    text-align: center;
    padding: 40px;
  }
  .contest .section.sort-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    width: 280px;
    border: 1px solid #bbb;
    padding: 0.75em 1em 0.5em 1em;
    background-color: white;
    background-image: url(/static/images/contest/down-arrow.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .contest .section.sort-select select::-ms-expand {
    display: none;
  }
  .contest .section.sort-select select:hover {
    border: 1px solid black;
  }
}
@media only screen and (min-width: 769px) {
  .section.designs {
    text-align: center;
    padding: 24px;
    margin-left: -24px;
  }
  .section.designs .design {
    display: inline-block;
    margin-bottom: 24px;
    color: rgba(0, 0, 0, 0.84);
    width: 320px;
    height: 336px;
    margin-left: 24px;
  }
  .section.designs .design:hover {
    cursor: pointer;
    outline: 1px solid black;
  }
  .section.designs .design:hover .body {
    outline: 1px solid black;
  }
  .section.designs .design .image {
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 280px;
    position: relative;
    color: white;
  }
  .section.designs .design .body {
    border-top: 1px solid #eaeaea;
    padding: 16px;
    font-size: 14px;
    background-color: white;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }
  .section.designs .design .body .votes {
    display: flex;
    margin-left: auto;
    align-items: center;
  }
  .section.designs .design .body .heart {
    padding-left: 8px;
    vertical-align: middle;
    cursor: pointer;
  }
  .section.designs .design .body .heart.active, .section.designs .design .body .heart:hover {
    color: #71ac29;
  }
  .section.designs .design:last-of-type {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 769px) {
  .contest-design-details {
    font-family: robotolight;
  }
  .contest-design-details h2 {
    font-size: 18px;
    font-weight: bold;
  }
  .contest-design-details .header.image.mobile {
    display: none;
  }
  .contest-design-details .header {
    position: relative;
  }
  .contest-design-details .section.design {
    color: rgba(0, 0, 0, 0.84);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contest-design-details .section.design .mobile-top-app-bar {
    max-width: 600px;
    background: white;
    box-shadow: none;
    border: none;
  }
  .contest-design-details .section.design .mobile-top-app-bar i {
    cursor: pointer;
  }
  .contest-design-details .section.design .image {
    background-color: white;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 480px;
    width: 100%;
  }
  .contest-design-details .section.design .content {
    max-width: 600px;
  }
  .contest-design-details .section.design .content > a {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .contest-design-details .section.design .content > a:hover {
    cursor: default;
  }
  .contest-design-details .section.design .content .website {
    padding-left: 24px;
  }
  .contest-design-details .section.design .content .button-wrapper {
    width: 100%;
    text-align: center;
  }
  .contest-design-details .section.design .content .button-wrapper .icon {
    vertical-align: middle;
    width: 24px;
  }
  .contest-design-details .section.design .content .button-wrapper .button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    margin-top: 32px;
    display: inline-block;
    padding: 8px 24px 8px 24px;
    vertical-align: middle;
    font-weight: bold;
    color: white;
    background-color: #71ac29;
  }
  .contest-design-details .section.design .content .button-wrapper .button.active {
    background-color: white;
    color: #71ac29;
    cursor: default;
  }
  .contest-design-details .section.design .content .button-wrapper .button .button-text {
    padding-left: 8px;
  }
  .contest-design-details .section.design .content .winner-container {
    color: #71ac29;
    padding: 24px 24px 0 24px;
    line-height: 24px;
  }
  .contest-design-details .section.design .content .body {
    padding: 0px 24px 0 24px;
    font-size: 16px;
    background-color: white;
    display: flex;
    align-items: center;
  }
  .contest-design-details .section.design .content .body .votes {
    display: flex;
    margin-left: auto;
    align-items: center;
  }
  .contest-design-details .section.design .content .body .votes .heart {
    padding-left: 8px;
  }
  .contest-design-details .section.design .content .body .votes .heart.active {
    color: #71ac29;
  }
  .contest-design-details .section.design .content .support {
    padding: 24px 24px 0 24px;
    line-height: 24px;
  }
  .contest-design-details .section.design .content .support .social-networks {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0 24px -40px;
    color: white;
  }
  .contest-design-details .section.design .content .support .social-networks .social-network {
    list-style: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
  }
  .contest-design-details .section.design .content .support .social-networks .social-network > a {
    width: 100%;
    height: 100%;
  }
  .contest-design-details .section.design .content .support .social-networks .social-network.whatsapp {
    display: none;
  }
  .contest-design-details .section.design .content:last-of-type {
    margin-bottom: 0;
  }
  .contest-design-details .overlay .modal-wrapper {
    border-radius: 4px;
  }
  .contest-design-details .overlay .modal-wrapper .modal {
    padding: 8px 24px 24px 24px;
    text-align: center;
  }
  .contest-design-details .overlay .modal-wrapper .modal .modal-title {
    color: #71ac29;
    font-size: 20px;
  }
  .contest-design-details .overlay .modal-wrapper .modal .modal-subtitle {
    font-size: 14px;
  }
  .contest-design-details .overlay .modal-wrapper .modal .error {
    margin-top: 16px;
    color: red;
  }
  .contest-design-details .overlay .modal-wrapper .modal input[type=text] {
    color: rgba(0, 0, 0, 0.84);
    display: block;
    border: none;
    border: 2px solid #71ac29;
    width: 100%;
    margin-top: 16px;
    background: none;
    box-sizing: border-box;
    padding: 8px;
    font-size: 16px;
    margin-bottom: 16px;
  }
  .contest-design-details .overlay .modal-wrapper .modal input[type=text]:focus {
    border-color: rgba(0, 0, 0, 0.54);
    box-shadow: 0px 1px 3px rgba(1, 1, 1, 0.3);
    outline: shadow;
  }
  .contest-design-details .overlay .modal-wrapper .modal input[type=text]::placeholder {
    color: rgba(0, 0, 0, 0.26);
  }
  .contest-design-details .overlay .modal-wrapper .modal .modal-button {
    text-align: right;
    display: flex;
    justify-content: space-between;
  }
  .contest-design-details .overlay .modal-wrapper .modal .modal-button .button {
    background: none;
    color: #71ac29;
    font-size: 16px;
    cursor: pointer;
    border: none;
    font-family: robotolight;
    outline: none;
    padding: 0;
  }
  .contest-design-details .overlay .modal-wrapper .modal .modal-button .button:hover {
    font-weight: bold;
  }
  .contest-design-details .overlay .modal-wrapper .modal .modal-button .button.cancel {
    color: red;
  }
}
@media only screen and (min-width: 769px) {
  .contest-design-upload {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-family: robotolight;
  }
  .contest-design-upload .mobile-top-app-bar {
    width: 600px;
    box-shadow: none;
    display: flex;
    align-items: center;
    background: white;
    border: none;
  }
  .contest-design-upload .mobile-top-app-bar .back-arrow {
    cursor: pointer;
  }
  .contest-design-upload .body {
    max-width: 600px;
    width: 100%;
  }
  .contest-design-upload .body form {
    display: flex;
    flex-direction: column;
    padding: 16px;
  }
  .contest-design-upload .body form label.for-upload {
    text-align: center;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.56);
    margin-top: 16px;
  }
  .contest-design-upload .body form label.for-upload .bold {
    font-family: robotoregular;
    font-weight: bold;
  }
  .contest-design-upload .body form label.for-upload .upload-file-button {
    margin-top: 24px;
  }
  .contest-design-upload .body form input[type=text] {
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.34);
    border-radius: 4px;
    padding: 16px;
    font-size: 16px;
    margin-bottom: 16px;
  }
  .contest-design-upload .body form input[type=text]:focus {
    border-color: #71ac29;
    outline: none;
  }
  .contest-design-upload .body form input#file_upload {
    display: none;
  }
  .contest-design-upload .body .button-wrapper {
    width: 100%;
    text-align: center;
  }
  .contest-design-upload .body .button-wrapper .icon {
    vertical-align: middle;
    width: 24px;
  }
  .contest-design-upload .body .button-wrapper .button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    margin-top: 32px;
    display: inline-block;
    background-color: #f73f10;
    color: white;
    padding: 8px 48px 8px 48px;
    vertical-align: middle;
    font-weight: bold;
  }
  .contest-design-upload .body .button-wrapper .button .button-text {
    vertical-align: middle;
    font-weight: bold;
  }
  .contest-design-upload .body .filename {
    margin-top: 8px;
  }
  .contest-design-upload .body .preview-image {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 240px;
    width: 100%;
    margin: 24px 0 24px 0;
  }
  .contest-design-upload .body .preview-image img.foreground {
    border: 1px solid #71ac29;
    height: 240px;
    width: 240px;
    z-index: 1;
  }
  .contest-design-upload .body .preview-image img.preview {
    position: absolute;
    height: 132px;
    width: 132px;
    top: 73px;
  }
  .contest-design-upload .submit-button {
    z-index: 2;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.34);
    color: #71ac29;
    background-color: white;
    bottom: 48px;
    width: 600px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    display: none;
  }
  .contest-design-upload .submit-button:hover {
    background-color: #EAEAEA;
  }
}
@media only screen and (min-width: 769px) {
  .contest-terms-and-conditions {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .contest-terms-and-conditions h1, .contest-terms-and-conditions h2, .contest-terms-and-conditions h3, .contest-terms-and-conditions .lbl-toggle {
    color: #71ac29;
    font-family: robotolight;
  }
  .contest-terms-and-conditions p, .contest-terms-and-conditions ul {
    font-family: robotolight;
    font-size: 16px;
    line-height: 24px;
  }
  .contest-terms-and-conditions ul {
    text-align: left;
  }
  .contest-terms-and-conditions a {
    text-decoration: none;
  }
  .contest-terms-and-conditions > .body {
    max-width: 600px;
    width: 100%;
    padding: 24px;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contest-terms-and-conditions .mobile-top-app-bar {
    width: 600px;
    box-shadow: none;
    display: flex;
    align-items: center;
    background: white;
    border: none;
  }
  .contest-terms-and-conditions .mobile-top-app-bar .back-arrow {
    cursor: pointer;
  }
  .contest-terms-and-conditions .example-upload {
    height: 296px;
  }
  .contest-terms-and-conditions .example-upload > img {
    border: 1px solid black;
    height: 100%;
  }
  .contest-terms-and-conditions .rendering-perspective {
    margin: 24px;
    height: 296px;
  }
  .contest-terms-and-conditions .rendering-perspective > img {
    height: 100%;
  }
  .contest-terms-and-conditions .design {
    margin: 24px;
    display: inline-block;
    color: rgba(0, 0, 0, 0.84);
    width: 320px;
  }
  .contest-terms-and-conditions .design > a {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .contest-terms-and-conditions .design > a:hover {
    cursor: default;
  }
  .contest-terms-and-conditions .design .image {
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 280px;
    background-image: url("/static/images/contest/rendering-sample.jpg");
  }
  .contest-terms-and-conditions .design .body {
    padding: 16px;
    font-size: 14px;
    background-color: white;
    display: flex;
    align-items: center;
    border-top: 1px solid #eaeaea;
  }
  .contest-terms-and-conditions .design .body .votes {
    display: flex;
    margin-left: auto;
    align-items: center;
  }
  .contest-terms-and-conditions .design .body .heart {
    padding-left: 8px;
    vertical-align: middle;
  }
  .contest-terms-and-conditions .design .body .heart.active {
    color: #71ac29;
  }
  .contest-terms-and-conditions .continue-button {
    border: 4px solid #71ac29;
    color: #71ac29;
    background-color: white;
    position: fixed;
    bottom: 24px;
    width: 600px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .contest-terms-and-conditions .continue-button:hover {
    background-color: #EAEAEA;
  }
  .contest-terms-and-conditions .wrap-collabsible {
    margin: 16px;
    font-size: 18px;
    border: 1px solid #71ac29;
    padding: 16px;
  }
  .contest-terms-and-conditions .wrap-collabsible:last-of-type {
    margin-bottom: 24px;
  }
  .contest-terms-and-conditions input[type=checkbox] {
    display: none;
  }
  .contest-terms-and-conditions .lbl-toggle {
    display: block;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease-out;
  }
  .contest-terms-and-conditions .lbl-toggle:hover {
    color: #7C5A0B;
  }
  .contest-terms-and-conditions .lbl-toggle::before {
    content: " ";
    display: inline-block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid currentColor;
    vertical-align: middle;
    margin-right: 0.7rem;
    transform: translateY(-2px);
    transition: transform 0.2s ease-out;
  }
  .contest-terms-and-conditions .toggle:checked + .lbl-toggle::before {
    transform: rotate(90deg) translateX(-3px);
  }
  .contest-terms-and-conditions .collapsible-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.25s ease-in-out;
  }
  .contest-terms-and-conditions .toggle:checked + .lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .contest-terms-and-conditions .toggle:checked + .lbl-toggle + .collapsible-content {
    max-height: 2400px;
  }
  .contest-terms-and-conditions .collapsible-content .content-inner {
    padding: 16px;
  }
  .contest-terms-and-conditions .collapsible-content .content-inner p {
    text-align: center;
  }
}
@media only screen and (min-width: 769px) {
  .contest-upload-successful {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-family: robotolight;
  }
  .contest-upload-successful .mobile-top-app-bar {
    width: 600px;
    box-shadow: none;
    display: flex;
    align-items: center;
    background: white;
    border: none;
  }
  .contest-upload-successful .mobile-top-app-bar .back-arrow {
    cursor: pointer;
  }
  .contest-upload-successful h1, .contest-upload-successful h2, .contest-upload-successful h3 {
    color: #71ac29;
  }
  .contest-upload-successful a {
    text-decoration: none;
  }
  .contest-upload-successful .logo {
    padding: 16px;
  }
  .contest-upload-successful > .body {
    width: 600px;
    padding: 24px;
    margin-bottom: 56px;
  }
  .contest-upload-successful .continue-button {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.34);
    color: #71ac29;
    background-color: white;
    bottom: 24px;
    width: 600px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}
@media only screen and (min-width: 769px) {
  .contest-design-admin {
    text-align: center;
    padding: 24px;
    margin-left: -24px;
  }
  .contest-design-admin .design {
    vertical-align: top;
    display: inline-block;
    margin-bottom: 24px;
    color: rgba(0, 0, 0, 0.84);
    width: 240px;
    margin-left: 24px;
  }
  .contest-design-admin .design .image {
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 208px;
    display: block;
    position: relative;
  }
  .contest-design-admin .design .image:hover .preview-text {
    color: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contest-design-admin .design .image .preview-text {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
  }
  .contest-design-admin .design .body {
    border-top: 1px solid #eaeaea;
    padding: 16px;
    font-size: 14px;
    background-color: white;
    text-align: left;
    /*display: flex;
    justify-content: flex-end;
    flex-direction: column;
    height: 132px;
    box-sizing: border-box;*/
  }
  .contest-design-admin .design .body > a {
    text-decoration: none;
    display: block;
    margin: 16px 0 16px 0;
    cursor: pointer;
  }
  .contest-design-admin .design .body .link-wrapper {
    width: 100%;
    display: flex;
    font-family: robotoregular;
    margin-top: 16px;
    margin-top: 16px;
  }
  .contest-design-admin .design .body .link-wrapper .jury-link {
    text-decoration: none;
    cursor: pointer;
    color: blue;
  }
  .contest-design-admin .design .body .link-wrapper .delete-link {
    text-decoration: none;
    cursor: pointer;
    color: red;
  }
  .contest-design-admin .design .body .link-wrapper .publish-link {
    text-decoration: none;
    cursor: pointer;
    margin: auto;
    margin-right: 0px;
  }
  .contest-design-admin .design .body .delete-wrapper {
    width: 100%;
    text-align: left;
    font-family: robotoregular;
    margin-top: 16px;
    color: red;
  }
  .contest-design-admin .design .body .delete-wrapper .link {
    text-decoration: none;
    cursor: pointer;
  }
  .contest-design-admin .design:last-of-type {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .contest h1, .contest h2, .contest h3 {
    font-family: "montserrat";
  }
  .contest div, .contest select {
    font-family: "robotolight";
  }
  .contest .section.desktop {
    display: none !important;
  }
  .contest .section.mobile {
    display: block;
    padding: 24px;
  }

  .contest a, .contest-design-details a {
    text-decoration: none;
  }

  .patavinus-link-box {
    font-size: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #71ac29;
    color: white;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    margin: 0 24px 24px 24px;
    vertical-align: top;
    font-weight: normal;
    cursor: pointer;
    text-align: center;
  }
  .patavinus-link-box .link {
    font-family: "robotoregular";
    font-size: 16px;
    color: white;
    margin-top: 18px;
  }

  .banderole {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    padding: 16px;
    color: white;
  }
  .banderole.winner {
    background: rgba(113, 172, 41, 0.84);
  }
  .banderole.jury {
    background: rgba(50, 50, 50, 0.84);
  }

  .contest .section.header {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding: 0 0 80px 0;
    background-image: url(/static/images/header/dog.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
  }
  .contest .section.header .header-image {
    top: 0;
    position: absolute;
    height: 100%;
    left: 0;
  }
  .contest .section.header .content {
    z-index: 2;
  }
  .contest .section.header .content .button-wrapper .mag-icon {
    vertical-align: middle;
  }
  .contest .section.header .content .button-wrapper .button .button-text {
    vertical-align: middle;
    font-weight: bold;
  }
  .contest .section.header .brand {
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 24px;
    box-sizing: border-box;
    position: fixed;
    background-color: white;
    top: 0;
    z-index: 5;
    height: 64px;
  }
  .contest .section.header .brand img {
    height: 32px;
  }
  .contest .section.header .brand img.menu-button {
    cursor: pointer;
  }
  .contest .section.header .content {
    padding: 24px;
    margin-top: 65px;
    color: white;
  }
  .contest .section.header .content .title {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 0;
    font-size: 16px;
  }
  .contest .section.header .content .explanation {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
  }
  .contest .section.header .content .button-wrapper {
    width: 100%;
    text-align: center;
  }
  .contest .section.header .content .button-wrapper .icon {
    vertical-align: middle;
    width: 24px;
  }
  .contest .section.header .content .button-wrapper .button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    margin-top: 32px;
    display: inline-block;
    background-color: #f73f10;
    color: white;
    padding: 8px 48px 8px 48px;
    vertical-align: middle;
    font-weight: bold;
  }
  .contest .green {
    color: #71ac29;
  }
  .contest .section.header {
    box-shadow: inset 0 0 0 100vmax rgba(0, 0, 0, 0.66);
    background-image: url("../images/contest/fox-square.jpg") !important;
    background-color: black;
    padding: 48px 0 88px 0;
  }
  .contest .section.header .brand {
    display: none;
  }
  .contest .section.header .content {
    margin-top: 0 !important;
  }
  .contest .section.header .content .button-wrapper .icon {
    vertical-align: middle;
  }
  .contest .section.header .content .button-wrapper .button.inactive {
    background-color: #8c8c8c;
    color: #505050;
    cursor: default;
  }
  .contest .section.header .content .button-wrapper .button .button-text {
    vertical-align: middle;
    font-weight: bold;
  }
  .contest .section.header .content .advantage {
    margin-top: 32px;
    font-size: 16px;
    line-height: 24px;
  }
  .contest .section.community .green {
    color: #71ac29;
  }
  .contest .section.community .wrapper {
    display: flex;
    justify-content: center;
  }
  .contest .section.community .wrapper.finished {
    flex-direction: column;
  }
  .contest .section.community .wrapper .facts {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 864px;
  }
  .contest .section.community .wrapper .facts .fact {
    width: 100%;
    font-family: robotolight;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .contest .section.community .wrapper .facts .fact .image {
    height: 176px;
    width: 176px;
    border-radius: 50%;
    background-color: black;
    border: 1px solid #eaeaea;
    background-position: center center;
    box-sizing: border-box;
    transition: border 0.3s ease-in-out;
  }
  .contest .section.community .wrapper .facts .fact .image:hover {
    border: 1px solid black;
  }
  .contest .section.community .wrapper .facts .fact.dog .image {
    background-position: center top;
    background-image: url("../images/contest/circle-dog.jpg") !important;
  }
  .contest .section.community .wrapper .facts .fact.bags {
    font-family: robotoregular !important;
    font-weight: bold;
  }
  .contest .section.community .wrapper .facts .fact.bags .image {
    background-image: url("../images/contest/circle-bags.jpg") !important;
  }
  .contest .section.community .wrapper .facts .fact.baggage .image {
    background-image: url("../images/contest/circle-baggage.jpg") !important;
  }
  .contest .section.community .wrapper .facts .fact .text {
    margin: 32px 0 32px 0;
  }
}
@media only screen and (max-width: 768px) and (min-width: 966px) {
  .contest .section.community .wrapper .facts .fact {
    width: 256px;
  }
  .contest .section.community .wrapper .facts .fact .image {
    height: 240px;
    width: 240px;
  }
}
@media only screen and (max-width: 768px) {
  .contest .section.community {
    background-color: white;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 24px 24px 2px 24px;
  }
  .contest .section.community .headline {
    margin: 0 0 16px 0;
  }
  .contest .section.community .wrapper {
    max-width: 1000px;
    width: 100%;
    position: relative;
    background-color: white;
    padding: 16px;
    text-align: center;
    margin-top: -64px;
    border-radius: 16px;
    z-index: 1;
  }
  .contest .section.community .wrapper .explanation {
    margin-top: 16px;
    line-height: 24px;
  }
  .contest .section.community .wrapper .badges {
    display: flex;
    margin-top: 16px;
    align-items: center;
    justify-content: center;
  }
  .contest .section.community .wrapper .badges.manual {
    margin: 0;
  }
  .contest .section.community .wrapper .badges .badge-manual {
    background: black;
    color: white;
    display: flex;
    align-items: center;
    height: 36px;
    border-radius: 8px;
    padding: 2px 12px;
    margin: 8px;
    font-family: robotoregular;
    text-decoration: none;
  }
  .contest .section.community .wrapper .badges .badge {
    display: flex;
    align-items: center;
  }
  .contest .section.community .wrapper .badges .badge.apple img {
    padding: 8px;
  }
  .contest .section.community .wrapper .badges .badge img {
    max-width: 160px;
  }
  .contest .section.community .wrapper .divider {
    border: 0;
    height: 1px;
    margin: 24px 0 16px 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  }
  .contest .section.community .wrapper .image {
    text-decoration: none;
  }
  .contest .section.community .wrapper .image img {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .contest .section.sort-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    width: 100%;
    border: 1px solid #bbb;
    padding: 0.75em 1em 0.5em 1em;
    background-color: white;
    background-image: url(/static/images/contest/down-arrow.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .contest .section.sort-select select::-ms-expand {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .section.designs {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 24px;
  }
  .section.designs .patavinus-link-box {
    max-width: 296px;
  }
  .section.designs .design {
    margin-bottom: 24px;
    color: rgba(0, 0, 0, 0.84);
    width: 100%;
    max-width: 296px;
  }
  .section.designs .design > a {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .section.designs .design > a:hover {
    cursor: default;
  }
  .section.designs .design .image {
    background-color: white;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 296px;
    width: 100%;
    position: relative;
    color: white;
  }
  .section.designs .design .body {
    border-top: 1px solid #eaeaea;
    padding: 16px;
    font-size: 14px;
    background-color: white;
    display: flex;
    align-items: center;
  }
  .section.designs .design .body .votes {
    display: flex;
    margin-left: auto;
    align-items: center;
  }
  .section.designs .design .body .heart {
    padding-left: 8px;
    vertical-align: middle;
  }
  .section.designs .design .body .heart.active {
    color: #71ac29;
  }
  .section.designs .design:last-of-type {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .contest-design-details {
    font-family: robotolight;
  }
  .contest-design-details h2 {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
  }
  .contest-design-details .header.image.desktop {
    display: none;
  }
  .contest-design-details .header {
    position: relative;
  }
  .contest-design-details .section.design {
    color: rgba(0, 0, 0, 0.84);
    width: 100%;
  }
  .contest-design-details .section.design > a {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .contest-design-details .section.design > a:hover {
    cursor: default;
  }
  .contest-design-details .section.design .image {
    background-color: white;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 280px;
    width: 100%;
  }
  .contest-design-details .section.design .website {
    padding-left: 24px;
  }
  .contest-design-details .section.design .content .banderole {
    top: 56px;
  }
  .contest-design-details .section.design .button-wrapper {
    width: 100%;
    text-align: center;
  }
  .contest-design-details .section.design .button-wrapper .icon {
    vertical-align: middle;
    width: 24px;
  }
  .contest-design-details .section.design .button-wrapper .button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    margin-top: 32px;
    display: inline-block;
    color: white;
    background-color: #71ac29;
    padding: 8px 24px 8px 24px;
    vertical-align: middle;
    font-weight: bold;
  }
  .contest-design-details .section.design .button-wrapper .button.active {
    background-color: white;
    color: #71ac29;
  }
  .contest-design-details .section.design .button-wrapper .button .button-text {
    padding-left: 8px;
  }
  .contest-design-details .section.design .winner-container {
    padding: 24px 24px 0 24px;
    text-align: center;
    line-height: 24px;
  }
  .contest-design-details .section.design .body {
    padding: 0px 24px 0 24px;
    font-size: 14px;
    background-color: white;
    display: flex;
    align-items: center;
  }
  .contest-design-details .section.design .body .votes {
    display: flex;
    margin-left: auto;
    align-items: center;
  }
  .contest-design-details .section.design .body .votes .heart {
    padding-left: 8px;
  }
  .contest-design-details .section.design .body .votes .heart.active {
    color: #71ac29;
  }
  .contest-design-details .section.design .support {
    text-align: center;
    padding: 24px 24px 0 24px;
    line-height: 24px;
  }
  .contest-design-details .section.design .support .social-networks {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0 24px -40px;
    color: white;
  }
  .contest-design-details .section.design .support .social-networks .social-network {
    list-style: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    width: 48px;
    height: 48px;
    border-radius: 20px;
  }
  .contest-design-details .section.design .support .social-networks .social-network > a {
    width: 100%;
    height: 100%;
  }
  .contest-design-details .section.design:last-of-type {
    margin-bottom: 0;
  }
  .contest-design-details .overlay .modal-wrapper {
    border-radius: 4px;
  }
  .contest-design-details .overlay .modal-wrapper .modal {
    border-radius: 4px;
    padding: 8px 24px 24px 24px;
    text-align: center;
  }
  .contest-design-details .overlay .modal-wrapper .modal .modal-title {
    color: #71ac29;
    font-size: 20px;
  }
  .contest-design-details .overlay .modal-wrapper .modal .modal-subtitle {
    font-size: 14px;
  }
  .contest-design-details .overlay .modal-wrapper .modal .error {
    margin-top: 16px;
    color: red;
  }
  .contest-design-details .overlay .modal-wrapper .modal input[type=text] {
    color: rgba(0, 0, 0, 0.84);
    display: block;
    border: none;
    border: 2px solid #71ac29;
    width: 100%;
    margin-top: 16px;
    background: none;
    box-sizing: border-box;
    padding: 8px;
    font-size: 16px;
    margin-bottom: 16px;
  }
  .contest-design-details .overlay .modal-wrapper .modal input[type=text]:focus {
    border-color: rgba(0, 0, 0, 0.54);
    outline: none;
  }
  .contest-design-details .overlay .modal-wrapper .modal input[type=text]::placeholder {
    color: rgba(0, 0, 0, 0.26);
  }
  .contest-design-details .overlay .modal-wrapper .modal .modal-button {
    text-align: right;
  }
  .contest-design-details .overlay .modal-wrapper .modal .modal-button .button {
    background: none;
    color: #71ac29;
    font-size: 16px;
    cursor: pointer;
    border: none;
    font-family: robotolight;
    outline: none;
  }
  .contest-design-details .overlay .modal-wrapper .modal .modal-button .button:hover {
    font-weight: bold;
  }
}
@media only screen and (max-width: 768px) {
  .contest-design-upload {
    font-family: robotolight;
  }
  .contest-design-upload .body form {
    display: flex;
    flex-direction: column;
    padding: 16px;
  }
  .contest-design-upload .body form label.for-upload {
    text-align: center;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.56);
    margin-top: 16px;
  }
  .contest-design-upload .body form label.for-upload .bold {
    font-family: robotoregular;
    font-weight: bold;
  }
  .contest-design-upload .body form label.for-upload .upload-file-button {
    margin-top: 24px;
  }
  .contest-design-upload .body form input[type=text] {
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.34);
    border-radius: 4px;
    padding: 16px;
    font-size: 16px;
    margin-bottom: 16px;
  }
  .contest-design-upload .body form input[type=text]:focus {
    border-color: #71ac29;
    outline: none;
  }
  .contest-design-upload .body form input#file_upload {
    display: none;
  }
  .contest-design-upload .body .button-wrapper {
    width: 100%;
    text-align: center;
  }
  .contest-design-upload .body .button-wrapper .icon {
    vertical-align: middle;
    width: 24px;
  }
  .contest-design-upload .body .button-wrapper .button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    margin-top: 32px;
    display: inline-block;
    background-color: #f73f10;
    color: white;
    padding: 8px 48px 8px 48px;
    vertical-align: middle;
    font-weight: bold;
  }
  .contest-design-upload .body .button-wrapper .button .button-text {
    vertical-align: middle;
    font-weight: bold;
  }
  .contest-design-upload .body .filename {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    flex-direction: column;
  }
  .contest-design-upload .body .preview-image {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 240px;
    width: 100%;
    margin: 12px 0 12px 0;
  }
  .contest-design-upload .body .preview-image img.foreground {
    border: 1px solid #71ac29;
    height: 240px;
    width: 240px;
    z-index: 1;
  }
  .contest-design-upload .body .preview-image img.preview {
    position: absolute;
    height: 132px;
    width: 132px;
    top: 73px;
  }
  .contest-design-upload .submit-button {
    margin: 8px;
    bottom: 8px;
    z-index: 2;
    color: #71ac29;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.34);
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .contest-terms-and-conditions h1, .contest-terms-and-conditions h2, .contest-terms-and-conditions h3, .contest-terms-and-conditions .lbl-toggle {
    color: #71ac29;
    font-family: robotolight;
  }
  .contest-terms-and-conditions p {
    font-family: robotolight;
    font-size: 16px;
    line-height: 24px;
  }
  .contest-terms-and-conditions a {
    text-decoration: none;
  }
  .contest-terms-and-conditions > .body {
    padding: 24px;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contest-terms-and-conditions .example-upload {
    padding: 8px;
    box-sizing: border-box;
    height: 296px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .contest-terms-and-conditions .example-upload > img {
    border: 1px solid black;
    height: 100%;
  }
  .contest-terms-and-conditions .rendering-perspective {
    width: 100%;
    max-width: 296px;
    display: flex;
    justify-content: center;
  }
  .contest-terms-and-conditions .rendering-perspective > img {
    width: 100%;
  }
  .contest-terms-and-conditions .design {
    color: rgba(0, 0, 0, 0.84);
    width: 100%;
    max-width: 296px;
  }
  .contest-terms-and-conditions .design > a {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .contest-terms-and-conditions .design > a:hover {
    cursor: default;
  }
  .contest-terms-and-conditions .design .image {
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 280px;
    width: 100%;
    background-image: url("/static/images/contest/rendering-sample.jpg");
  }
  .contest-terms-and-conditions .design .body {
    padding: 16px;
    font-size: 14px;
    background-color: white;
    display: flex;
    align-items: center;
    border-top: 1px solid #eaeaea;
  }
  .contest-terms-and-conditions .design .body .votes {
    display: flex;
    margin-left: auto;
    align-items: center;
  }
  .contest-terms-and-conditions .design .body .heart {
    padding-left: 8px;
    vertical-align: middle;
  }
  .contest-terms-and-conditions .design .body .heart.active {
    color: #71ac29;
  }
  .contest-terms-and-conditions .continue-button {
    color: #71ac29;
    background-color: white;
    position: fixed;
    bottom: 0;
    border: 4px solid #71ac29;
    box-sizing: content-box;
    margin: 4px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .contest-terms-and-conditions .wrap-collabsible {
    max-width: 100%;
    box-sizing: border-box;
    margin: 16px 0 16px 0;
    font-size: 18px;
    border: 1px solid #71ac29;
    padding: 16px;
  }
  .contest-terms-and-conditions .wrap-collabsible:last-of-type {
    margin-bottom: 24px;
  }
  .contest-terms-and-conditions input[type=checkbox] {
    display: none;
  }
  .contest-terms-and-conditions .lbl-toggle {
    display: block;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease-out;
  }
  .contest-terms-and-conditions .lbl-toggle:hover {
    color: #7C5A0B;
  }
  .contest-terms-and-conditions .lbl-toggle::before {
    content: " ";
    display: inline-block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid currentColor;
    vertical-align: middle;
    margin-right: 0.7rem;
    transform: translateY(-2px);
    transition: transform 0.2s ease-out;
  }
  .contest-terms-and-conditions .toggle:checked + .lbl-toggle::before {
    transform: rotate(90deg) translateX(-3px);
  }
  .contest-terms-and-conditions .collapsible-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.25s ease-in-out;
  }
  .contest-terms-and-conditions .toggle:checked + .lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .contest-terms-and-conditions .toggle:checked + .lbl-toggle + .collapsible-content {
    max-height: 2400px;
  }
  .contest-terms-and-conditions .collapsible-content .content-inner {
    padding: 16px;
  }
  .contest-terms-and-conditions .collapsible-content .content-inner p {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .contest-upload-successful {
    font-family: robotolight;
  }
  .contest-upload-successful h1, .contest-upload-successful h2, .contest-upload-successful h3 {
    color: #71ac29;
  }
  .contest-upload-successful a {
    text-decoration: none;
  }
  .contest-upload-successful .logo {
    padding: 16px;
  }
  .contest-upload-successful > .body {
    padding: 24px;
    margin-bottom: 56px;
  }
  .contest-upload-successful .continue-button {
    color: #71ac29;
    background-color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (min-width: 769px) {
  .manual .section.desktop {
    display: block;
  }
  .manual .section.mobile {
    display: none !important;
  }

  .manual {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .manual .section.header {
    width: 100%;
  }
  .manual .section.community {
    display: flex;
    width: 100%;
    font-family: "robotolight";
    background: none;
  }
  .manual .section.community .button-wrapper {
    margin-top: 24px;
  }
  .manual .section.community .button-wrapper .button {
    background-color: #f73f10;
    padding: 8px 16px 8px 16px;
  }
  .manual .section.video .video-container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 660px;
  }
  .manual .section.video .video-container iframe {
    height: 592px;
    width: 768px;
    margin: 40px;
  }
  .manual .section.no-video {
    text-align: center;
    max-width: 800px;
    padding-top: 0;
  }
  .manual .section.no-video .headline {
    color: #71ac29;
    font-family: "robotoregular";
  }
  .manual .section.no-video .step > h3 {
    padding: 16px 0 16px 0;
    font-size: 16px;
    font-family: "robotolight";
  }
  .manual .section.no-video .step-1 .badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
  }
  .manual .section.no-video .step-1 .badge.ios {
    margin-top: 0;
    margin-bottom: 16px;
  }
  .manual .section.no-video .step-1 .badge.ios img {
    padding: 8px;
  }
  .manual .section.no-video .step-1 .badge img {
    max-height: 100%;
  }
  .manual .section.no-video .step-2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .manual .section.no-video .step-2 .image-code-add {
    max-width: 400px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 600px;
  }
  .manual .section.no-video .step-2 .image-code-add.ios.de {
    background-image: url(/static/images/manual/screenshots/ios-de-desktop.png);
  }
  .manual .section.no-video .step-2 .image-code-add.ios.en {
    background-image: url(/static/images/manual/screenshots/ios-en-desktop.png);
  }
  .manual .section.no-video .step-2 .image-code-add.android.de {
    background-image: url(/static/images/manual/screenshots/android-de-desktop.png);
  }
  .manual .section.no-video .step-2 .image-code-add.android.en {
    background-image: url(/static/images/manual/screenshots/android-en-desktop.png);
  }
  .manual .section.no-video h3.finished {
    color: #71ac29;
    font-size: 16px;
    font-family: "robotoregular";
  }
  .manual .section.no-video .button-wrapper.finder {
    margin: 32px 0 32px 0;
  }
  .manual .section.no-video .button-wrapper.finder .button {
    background-color: #f73f10;
    padding: 8px 16px 8px 16px;
  }
  .manual .section.no-video .hint {
    margin-bottom: 24px;
  }
  .manual .section.no-video .hint h3 {
    color: #71ac29;
    font-size: 18px;
    font-family: "robotoregular";
  }
  .manual .section.no-video .hint .explanation {
    font-size: 16px;
    font-family: "robotolight";
    line-height: 24px;
  }
  .manual .introduction {
    max-width: 800px;
    font-family: robotolight;
    text-align: center;
    margin-top: 40px;
  }
  .manual .manual-footer {
    display: none;
  }
  .manual .modal {
    position: fixed !important;
    top: auto !important;
    bottom: 24px;
    max-width: 800px;
    margin: auto;
    padding: 24px;
  }
  .manual .modal .modal-subtitle {
    margin: 16px 0px 16px 0px;
  }
  .manual .modal .modal-input {
    margin: 32px 0px 0 0px;
  }
  .manual .modal .modal-button a {
    cursor: pointer;
  }

  .manual.customer {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .manual.customer .section.header {
    width: 100%;
  }
  .manual.customer .section.community {
    width: 100%;
    font-family: "robotolight";
    background: none;
  }
  .manual.customer .section.community .button-wrapper {
    margin-top: 24px;
  }
  .manual.customer .section.community .button-wrapper .button {
    background-color: #f73f10;
    padding: 8px 16px 8px 16px;
  }
  .manual.customer .section.video .video-container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 660px;
  }
  .manual.customer .section.video .video-container iframe {
    height: 592px;
    width: 768px;
    margin: 40px;
  }
  .manual.customer .section.no-video {
    text-align: center;
    max-width: 800px;
    padding-top: 0;
  }
  .manual.customer .section.no-video .headline {
    color: #71ac29;
    font-family: "robotoregular";
  }
  .manual.customer .section.no-video .step > h3 {
    padding: 16px 0 16px 0;
    font-size: 16px;
    font-family: "robotolight";
  }
  .manual.customer .section.no-video .step-1 .badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
  }
  .manual.customer .section.no-video .step-1 .badge.ios {
    margin-top: 0;
    margin-bottom: 16px;
  }
  .manual.customer .section.no-video .step-1 .badge.ios img {
    padding: 8px;
  }
  .manual.customer .section.no-video .step-1 .badge img {
    max-height: 100%;
  }
  .manual.customer .section.no-video .step-2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .manual.customer .section.no-video .step-2 .image-code-add {
    max-width: 400px;
    width: 100%;
    border: 1px solid black;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .manual.customer .section.no-video .step-2 .image-code-add.ios {
    height: 88px;
    background-position: top;
    background-image: url(/static/images/landingpage-public/ios-screen-1.png);
  }
  .manual.customer .section.no-video .step-2 .image-code-add.android {
    height: 140px;
    background-position: bottom;
    background-image: url(/static/images/landingpage-public/android-screen-1.png);
  }
  .manual.customer .section.no-video h3.finished {
    color: #71ac29;
    font-size: 16px;
    font-family: "robotoregular";
  }
  .manual.customer .section.no-video .button-wrapper.finder {
    margin: 32px 0 32px 0;
  }
  .manual.customer .section.no-video .button-wrapper.finder .button {
    background-color: #f73f10;
    padding: 8px 16px 8px 16px;
  }
  .manual.customer .section.no-video .hint {
    margin-bottom: 24px;
  }
  .manual.customer .section.no-video .hint h3 {
    color: #71ac29;
    font-size: 18px;
    font-family: "robotoregular";
  }
  .manual.customer .section.no-video .hint .explanation {
    font-size: 16px;
    font-family: "robotolight";
    line-height: 24px;
  }
  .manual.customer .introduction {
    max-width: 800px;
    font-family: robotolight;
    text-align: center;
    margin-top: 40px;
  }
  .manual.customer .manual-footer {
    display: none;
  }
  .manual.customer .modal {
    position: fixed !important;
    top: auto !important;
    bottom: 24px;
    max-width: 800px;
    margin: auto;
    padding: 24px;
  }
  .manual.customer .modal .modal-subtitle {
    margin: 16px 0px 16px 0px;
  }
  .manual.customer .modal .modal-input {
    margin: 32px 0px 0 0px;
  }
  .manual.customer .modal .modal-button a {
    cursor: pointer;
  }

  /* customers */
  .manual[data-customer=sparkasse] .branded {
    color: red !important;
    border-color: red !important;
  }
  .manual[data-customer=sparkasse] .button-wrapper .button {
    background-color: red !important;
  }
  .manual[data-customer=sparkasse] .header {
    padding-top: 76px !important;
    padding-bottom: 156px !important;
    background-image: none;
    background-color: red;
  }
  .manual[data-customer=sparkasse] .header .body .customer-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }
  .manual[data-customer=sparkasse] .header .body .customer-logo-wrapper .customer-logo {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 164px;
    width: 376px;
    background-image: url("/static/images/manual/logos/sparkasse/white.svg");
  }

  /* reusables */
  .section.header {
    color: white;
    background-color: #71ac29;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding-top: 128px;
    padding-bottom: 180px;
    background-image: url("../images/under-construction/bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .section.header .header-image {
    top: 0;
    position: absolute;
    height: 100%;
    left: 0;
  }
  .section.header .body {
    z-index: 2;
    display: flex;
    margin-top: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .section.header .body .title {
    text-align: center;
    font-size: 22px;
    font-weight: normal;
    margin: 0;
  }
  .section.header .body .subtitle {
    text-align: center;
    font-family: "montserrat";
    font-size: 44px;
    margin: 32px 0 32px 0;
  }
  .section.header .body .explanation {
    width: 400px;
    text-align: center;
    font-size: 16px;
    font-family: "robotolight";
  }
  .section.header .body .button-wrapper {
    width: 100%;
    text-align: center;
  }
  .section.header .body .button-wrapper .icon {
    vertical-align: middle;
    width: 24px;
  }
  .section.header .body .button-wrapper .button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    margin-top: 32px;
    display: inline-block;
    background-color: #f73f10;
    color: white;
    padding: 8px 48px 8px 48px;
    vertical-align: middle;
    font-weight: bold;
  }
  .section.header .body .button-wrapper .button .button-text {
    vertical-align: middle;
    font-weight: bold;
  }

  .section.community {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .section.community .wrapper {
    max-width: 1000px;
    width: 100%;
    position: relative;
    background-color: white;
    padding: 32px;
    text-align: center;
    margin: -64px 80px 0 80px;
    border-radius: 16px;
    z-index: 1;
  }
  .section.community .wrapper .headline {
    margin-top: 0;
    font-weight: normal;
    font-family: "montserrat";
  }
  .section.community .wrapper .explanation {
    margin-top: 16px;
    font-size: 14px;
  }
  .section.community .wrapper .badges {
    display: flex;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
    height: 56px;
  }
  .section.community .wrapper .badges.manual {
    margin-top: 0;
  }
  .section.community .wrapper .badges .badge-manual {
    background: black;
    color: white;
    display: flex;
    align-items: center;
    height: 36px;
    border-radius: 8px;
    padding: 2px 12px;
    margin: 8px;
    font-family: robotoregular;
    text-decoration: none;
  }
  .section.community .wrapper .badges .badge {
    display: flex;
    align-items: center;
    height: 56px;
  }
  .section.community .wrapper .badges .badge.apple img {
    padding: 8px;
  }
  .section.community .wrapper .badges .badge img {
    max-height: 100%;
  }
  .section.community .wrapper .divider {
    border: 0;
    height: 1px;
    margin: 40px 0 16px 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  }
  .section.community .wrapper .image {
    text-decoration: none;
  }
  .section.community .wrapper .image img {
    width: 33%;
  }
}
@media only screen and (max-width: 768px) {
  .manual .section.desktop {
    display: none !important;
  }
  .manual .section.mobile {
    display: block;
    padding: 24px;
  }

  .manual {
    text-align: center;
    font-family: "robotolight";
    margin-bottom: 64px;
  }
  .manual .section.header {
    display: flex;
  }
  .manual .section.video {
    margin-top: 24px;
  }
  .manual .section.video .title {
    color: #71ac29;
    font-size: 20px;
    margin: 0;
    font-weight: bold;
  }
  .manual .section.video .subtitle {
    padding: 16px 0 16px 0;
    font-size: 14px;
  }
  .manual .section.video .video-container {
    margin-top: 8px;
    height: 400px;
  }
  .manual .section.video .video-container iframe {
    height: 100%;
    width: 100%;
  }
  .manual .section.no-video {
    padding-top: 0;
    padding: 24px;
  }
  .manual .section.no-video .headline {
    color: #71ac29;
    font-size: 16px;
    font-family: "robotoregular";
  }
  .manual .section.no-video .step > h3 {
    padding: 16px 0 16px 0;
    font-size: 14px;
    font-family: "robotolight";
  }
  .manual .section.no-video .step-1 .badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
  }
  .manual .section.no-video .step-1 .badge.ios {
    margin-top: 0;
    margin-bottom: 16px;
  }
  .manual .section.no-video .step-1 .badge.ios img {
    padding: 8px;
  }
  .manual .section.no-video .step-1 .badge img {
    max-height: 100%;
  }
  .manual .section.no-video .step-2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .manual .section.no-video .step-2 .image-code-add {
    max-width: 400px;
    width: 100%;
    border: 1px solid black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 160px;
  }
  .manual .section.no-video .step-2 .image-code-add.ios {
    background-size: contain;
    border: none;
  }
  .manual .section.no-video .step-2 .image-code-add.ios.de {
    background-image: url(/static/images/manual/screenshots/ios-de-mobile.png);
  }
  .manual .section.no-video .step-2 .image-code-add.ios.en {
    background-image: url(/static/images/manual/screenshots/ios-en-mobile.png);
  }
  .manual .section.no-video .step-2 .image-code-add.android {
    height: 140px;
    background-position: bottom;
    background-image: url(/static/images/landingpage-public/android-screen-1.png);
  }
  .manual .section.no-video h3.finished {
    color: #71ac29;
    font-size: 16px;
    font-family: "robotoregular";
  }
  .manual .section.no-video .button-wrapper.finder {
    margin: 32px 0 32px 0;
  }
  .manual .section.no-video .button-wrapper.finder .button {
    background-color: #f73f10;
    padding: 8px 16px 8px 16px;
  }
  .manual .section.no-video .hint h3 {
    color: #71ac29;
    font-size: 16px;
    font-family: "robotoregular";
  }
  .manual .section.no-video .hint .explanation {
    font-size: 14px;
    font-family: "robotolight";
    line-height: 21px;
  }
  .manual .manual-footer {
    position: fixed;
    bottom: 0;
    display: flex;
    width: 100%;
    height: 64px;
    font-family: "robotolight";
    align-items: center;
    background-color: white;
  }
  .manual .manual-footer .link {
    text-align: center;
    width: 50%;
  }
  .manual .manual-footer .link.active a {
    color: #71ac29;
  }
  .manual .manual-footer .link a {
    color: black;
    text-decoration: none;
  }
  .manual .modal {
    position: fixed !important;
    top: auto !important;
    bottom: 24px;
  }

  .manual.customer {
    text-align: center;
    font-family: "robotolight";
    margin-bottom: 64px;
  }
  .manual.customer .section.header {
    padding: 0;
  }
  .manual.customer .section.header .brand .menu-button {
    display: inline-block;
    cursor: pointer;
  }
  .manual.customer .section.header .brand .menu-button .bar {
    width: 28px;
    height: 3px;
    background-color: #71ac29;
    margin: 5px 0;
  }
  .manual.customer .section.video {
    margin-top: 64px;
  }
  .manual.customer .section.video .title {
    color: #71ac29;
    font-size: 20px;
    margin: 0;
    font-weight: bold;
  }
  .manual.customer .section.video .subtitle {
    padding: 16px 0 16px 0;
    font-size: 14px;
  }
  .manual.customer .section.video .video-container {
    margin-top: 8px;
    height: 400px;
  }
  .manual.customer .section.video .video-container iframe {
    height: 100%;
    width: 100%;
  }
  .manual.customer .section.no-video {
    padding-top: 0;
    padding: 24px;
  }
  .manual.customer .section.no-video .headline {
    color: #71ac29;
    font-size: 16px;
    font-family: "robotoregular";
  }
  .manual.customer .section.no-video .step > h3 {
    padding: 16px 0 16px 0;
    font-size: 14px;
    font-family: "robotolight";
  }
  .manual.customer .section.no-video .step-1 .badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
  }
  .manual.customer .section.no-video .step-1 .badge.ios {
    margin-top: 0;
    margin-bottom: 16px;
  }
  .manual.customer .section.no-video .step-1 .badge.ios img {
    padding: 8px;
  }
  .manual.customer .section.no-video .step-1 .badge img {
    max-height: 100%;
  }
  .manual.customer .section.no-video .step-2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .manual.customer .section.no-video .step-2 .image-code-add {
    max-width: 400px;
    width: 100%;
    border: 1px solid black;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .manual.customer .section.no-video .step-2 .image-code-add.ios {
    height: 88px;
    background-position: top;
    background-image: url(/static/images/landingpage-public/ios-screen-1.png);
  }
  .manual.customer .section.no-video .step-2 .image-code-add.android {
    height: 140px;
    background-position: bottom;
    background-image: url(/static/images/landingpage-public/android-screen-1.png);
  }
  .manual.customer .section.no-video h3.finished {
    color: #71ac29;
    font-size: 16px;
    font-family: "robotoregular";
  }
  .manual.customer .section.no-video .button-wrapper.finder {
    margin: 32px 0 32px 0;
  }
  .manual.customer .section.no-video .button-wrapper.finder .button {
    background-color: #f73f10;
    padding: 8px 16px 8px 16px;
  }
  .manual.customer .section.no-video .hint h3 {
    color: #71ac29;
    font-size: 16px;
    font-family: "robotoregular";
  }
  .manual.customer .section.no-video .hint .explanation {
    font-size: 14px;
    font-family: "robotolight";
    line-height: 21px;
  }
  .manual.customer .manual-footer {
    position: fixed;
    bottom: 0;
    display: flex;
    width: 100%;
    height: 64px;
    font-family: "robotolight";
    align-items: center;
    background-color: white;
  }
  .manual.customer .manual-footer .link {
    text-align: center;
    width: 50%;
  }
  .manual.customer .manual-footer .link.active a {
    font-family: "robotoregular";
  }
  .manual.customer .manual-footer .link a {
    font-family: "robotolight";
    text-decoration: none;
  }
  .manual.customer .modal {
    position: fixed !important;
    top: auto !important;
    bottom: 24px;
  }

  /* customers */
  .manual[data-customer=sparkasse] .branded {
    color: red !important;
  }
  .manual[data-customer=sparkasse] .section.header .brand {
    background-color: white;
    /*.customer-logo {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 32px;
        width: 24px;

        background-image: url("/static/images/manual/logos/sparkasse/red.svg");
    }*/
  }
  .manual[data-customer=sparkasse] .section.header .brand .logo {
    display: none;
  }
  .manual[data-customer=sparkasse] .section.header .brand .menu-button .bar {
    background-color: red !important;
  }
  .manual[data-customer=sparkasse] .section.video .video-container {
    position: relative;
    padding-bottom: 75%;
    height: 0;
  }
  .manual[data-customer=sparkasse] .section.video .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .manual[data-customer=sparkasse] .section.no-video {
    padding: 0 24px;
  }

  /* reusables */
  .section.header {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding: 0 0 80px 0;
    background-image: url(/static/images/header/dog.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
  }
  .section.header .header-image {
    top: 0;
    position: absolute;
    height: 100%;
    left: 0;
  }
  .section.header .content {
    z-index: 2;
  }
  .section.header .content .button-wrapper .mag-icon {
    vertical-align: middle;
  }
  .section.header .content .button-wrapper .button .button-text {
    vertical-align: middle;
    font-weight: bold;
  }
  .section.header .brand {
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 24px;
    box-sizing: border-box;
    position: fixed;
    background-color: white;
    top: 0;
    z-index: 5;
    height: 64px;
  }
  .section.header .brand img {
    height: 32px;
  }
  .section.header .brand img.menu-button {
    cursor: pointer;
  }
  .section.header .content {
    padding: 24px;
    margin-top: 65px;
    color: white;
  }
  .section.header .content .title {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 0;
    font-size: 16px;
  }
  .section.header .content .explanation {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
  }
  .section.header .content .button-wrapper {
    width: 100%;
    text-align: center;
  }
  .section.header .content .button-wrapper .icon {
    vertical-align: middle;
    width: 24px;
  }
  .section.header .content .button-wrapper .button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    margin-top: 32px;
    display: inline-block;
    background-color: #f73f10;
    color: white;
    padding: 8px 48px 8px 48px;
    vertical-align: middle;
    font-weight: bold;
  }
}
.explanation-video-container {
  display: flex;
  justify-content: center;
  background-color: #71ac29;
  height: 100%;
}
.explanation-video-container video {
  max-height: 100%;
  max-width: 100%;
}

.dynamic-banner-preloader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #71ac29;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: visible;
  z-index: 3;
  transition: all 1.5s ease-in-out 0s;
}
.dynamic-banner-preloader.finished {
  opacity: 0;
  visibility: hidden;
}
.dynamic-banner-preloader > img {
  height: 64px;
  width: 64px;
}

.dynamic-banner .overlay {
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}
.dynamic-banner .tiny-button {
  position: absolute;
  right: 8px;
  top: 8px;
  color: white;
  opacity: 0.54;
  z-index: 2;
}
.dynamic-banner .tiny-button.info {
  height: 24px;
  display: flex;
  width: 24px;
  align-items: center;
  justify-content: center;
  opacity: 1;
  font-size: 14px;
  font-family: robotoregular;
  font-weight: bold;
}

/* Banner types */
.dynamic-banner.background-text-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.dynamic-banner.background-text-button .title {
  z-index: 2;
  color: white;
  font-size: 20px !important;
  text-align: center;
}
.dynamic-banner.background-text-button .button-wrapper {
  z-index: 2;
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: auto;
  background: #71ac29;
}
.dynamic-banner.background-text-button .button-wrapper .button {
  font-size: 12px;
}

.dynamic-banner.background-text {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.dynamic-banner.background-text .title {
  z-index: 2;
  color: white;
  font-size: 20px !important;
  text-align: center;
  margin-bottom: 16px;
}

.dynamic-banner.static {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Static banners */
.dynamic-banner.banner-1 {
  background-image: url("/static/images/dynamic-banner/banner-1.jpg");
}

.dynamic-banner.banner-2 {
  background-image: url("/static/images/dynamic-banner/banner-2.jpg");
}

.dynamic-banner.banner-3 {
  background-image: url("/static/images/dynamic-banner/banner-3.jpg");
}

.dynamic-banner.banner-4 {
  background-image: url("/static/images/dynamic-banner/banner-4.jpg");
}

.dynamic-banner.banner-5 {
  background-image: url("/static/images/dynamic-banner/banner-5.jpg");
}

.dynamic-banner.banner-6 {
  background-image: url("/static/images/dynamic-banner/banner-6.jpg");
}

.dynamic-banner.banner-7 {
  background-image: url("/static/images/dynamic-banner/banner-7.jpg");
}

.dynamic-banner.banner-8 {
  background-image: url("/static/images/dynamic-banner/banner-8.jpg");
}

.dynamic-banner.banner-9 {
  background-image: url("/static/images/dynamic-banner/banner-9.jpg");
}

.dynamic-banner.banner-10 {
  background-image: url("/static/images/dynamic-banner/banner-10.jpg");
}

/* Individual banners */
.dynamic-banner.default {
  background-color: #71ac29;
  background-image: url("../images/under-construction/bg.svg");
}
.dynamic-banner.default > img {
  height: 64px;
  width: 64px;
}

.dynamic-banner.baggage-discount {
  background-image: url("/static/images/dynamic-banner/baggage-photo.jpg");
}

.dynamic-banner.help-collaboratively {
  background-image: url("/static/images/dynamic-banner/help-collaboratively.jpg");
}

.dynamic-banner.christmas {
  color: white;
  width: 100%;
  height: 100%;
  background: #71ac29;
  /*background-image:  url("../images/under-construction/bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;*/
  display: flex;
  align-items: center;
  justify-content: center;
}
.dynamic-banner.christmas canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.dynamic-banner.christmas .title {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1.75em;
  font-family: montserrat;
  color: white;
  z-index: 1;
}

.dynamic-banner.christmas-tree {
  background-image: url("/static/images/dynamic-banner/christmas-tree.jpg");
  background-position: center top;
}

@media only screen and (min-width: 769px) {
  .confirm-mail {
    background-image: url("../images/under-construction/bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .confirm-mail .message {
    border-radius: 8px;
    text-align: center;
    background-color: white;
    flex-direction: column;
    padding: 48px 48px 24px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    font-family: robotolight;
  }
  .confirm-mail .message .logo {
    width: 240px;
    margin-bottom: 16px;
  }
  .confirm-mail .message .logo.white {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .confirm-mail {
    background-image: url("../images/under-construction/bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .confirm-mail .message {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    background-color: rgba(1, 1, 1, 0.2);
    color: white;
    flex-direction: column;
    padding: 48px 48px 24px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: robotolight;
  }
  .confirm-mail .message .logo {
    width: 240px;
    margin-bottom: 16px;
  }
  .confirm-mail .message .logo.green {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .design-upload {
    /*
    width: 100%;
    max-width: 800px;
    border: 1px solid black;
    */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .design-upload h1, .design-upload h2, .design-upload h3 {
    font-family: "montserrat";
  }
  .design-upload div, .design-upload select {
    font-family: "robotolight";
  }
  .design-upload .section.desktop {
    display: block;
  }
  .design-upload .section.mobile {
    display: none !important;
  }
  .design-upload a {
    text-decoration: none;
  }

  .design-upload .button-wrapper {
    max-width: 320px;
  }
  .design-upload .button-wrapper .button {
    border-radius: 5px;
    height: 40px;
    display: flex;
    font-weight: normal;
    font-family: robotolight;
    justify-content: center;
    align-items: center;
    margin: 8px 24px 8px 24px;
  }
  .design-upload .button-wrapper .button.primary {
    background-color: #71ac29;
    margin-top: 24px;
    cursor: pointer;
  }
  .design-upload .button-wrapper .button.secondary {
    color: #71ac29;
  }

  .design-upload .design-upload-start {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
  }
  .design-upload .design-upload-start .teaser-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .design-upload .design-upload-start .teaser-image img {
    width: 480px;
  }
  .design-upload .design-upload-start .header {
    text-align: center;
    padding: 0 24px 0 24px;
    font-family: "robotomedium";
    font-weight: bold;
    font-size: 24px;
    width: 100%;
  }
  .design-upload .design-upload-start .description {
    text-align: center;
    margin-top: 8px;
    font-family: "robotolight";
  }

  .design-upload .design-upload-upload {
    max-width: 800px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .design-upload .design-upload-upload .image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 16px;
    overflow: hidden;
    width: 480px;
    height: 480px;
    position: relative;
    cursor: pointer;
  }
  .design-upload .design-upload-upload .image-wrapper img.uploaded {
    position: absolute;
    display: none;
    -webkit-touch-callout: none;
  }
  .design-upload .design-upload-upload .image-wrapper img.foreground {
    z-index: 1;
    width: 110%;
    height: 110%;
    -webkit-touch-callout: none;
  }
  .design-upload .design-upload-upload .image-wrapper .preloader-container {
    position: absolute;
    margin-top: 48px;
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-direction: column;
    visibility: hidden;
  }
  .design-upload .design-upload-upload .image-wrapper .preloader-container .preloader {
    -webkit-touch-callout: none;
    width: 80px !important;
    height: 80px !important;
    position: absolute;
    height: auto;
  }
  .design-upload .design-upload-upload .image-wrapper .preloader-container .preloader .loading {
    box-sizing: border-box;
    width: 80px;
    height: 80px;
  }
  .design-upload .design-upload-upload .image-wrapper .preloader-container .preloader-text {
    position: absolute;
    color: #71ac29;
    margin: 0;
    bottom: -64px;
    font-size: 20px;
    width: 240px;
    text-align: center;
  }
  .design-upload .design-upload-upload .image-wrapper .button-wrapper {
    position: absolute;
    z-index: 2;
    width: auto;
    margin-top: 40px;
  }
  .design-upload .design-upload-upload .image-wrapper .button-wrapper .button {
    padding: 8px 16px 8px 16px;
  }
  .design-upload .design-upload-upload .color-chooser {
    display: flex;
    justify-content: center;
    margin: 16px 24px 0 24px;
  }
  .design-upload .design-upload-upload .color-chooser .color {
    margin-left: 16px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.54);
    cursor: pointer;
  }
  .design-upload .design-upload-upload .color-chooser .color:nth-of-type(1) {
    margin-left: 0;
  }
  .design-upload .design-upload-upload .color-chooser .color.active, .design-upload .design-upload-upload .color-chooser .color:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  }
  .design-upload .design-upload-upload .color-chooser .color.active .check {
    display: block;
    color: white;
  }
  .design-upload .design-upload-upload .color-chooser .color .check {
    display: none;
  }
  .design-upload .design-upload-upload .controls {
    display: flex;
    justify-content: center;
    padding: 8px 24px 8px 24px;
  }
  .design-upload .design-upload-upload .controls .control {
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    margin-left: 16px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.26);
    color: rgba(0, 0, 0, 0.26);
    padding: 12px;
  }
  .design-upload .design-upload-upload .controls .control:nth-of-type(1) {
    margin-left: 0;
  }
  .design-upload .design-upload-upload .controls .control > .icon {
    vertical-align: middle;
  }
  .design-upload .design-upload-upload .controls.active .control {
    border: 1px solid rgba(0, 0, 0, 0.54);
    color: rgba(0, 0, 0, 0.84);
    cursor: pointer;
  }
  .design-upload .design-upload-upload .controls.active .control .icon {
    cursor: pointer;
  }
  .design-upload .design-upload-upload .explanation {
    margin-top: 16px;
    padding: 0 24px 0 24px;
    font-family: "robotolight";
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .design-upload .design-upload-upload .explanation:hover {
    cursor: default;
  }
  .design-upload .design-upload-upload .button-wrapper {
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .design-upload .design-upload-upload .button-wrapper .button {
    border-radius: 5px;
    height: 40px;
    width: 100%;
    display: flex;
    font-weight: normal;
    font-family: robotolight;
    justify-content: center;
    align-items: center;
    margin: 24px 24px 8px 24px;
  }
  .design-upload .design-upload-upload .button-wrapper .button .loading-wrapper {
    display: none;
    position: absolute;
    height: auto;
  }
  .design-upload .design-upload-upload .button-wrapper .button .loading-wrapper .loading {
    height: 28px;
    width: 28px;
  }
  .design-upload .design-upload-upload .button-wrapper .button.busy {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.8s ease-out;
  }
  .design-upload .design-upload-upload .button-wrapper .button.busy .loading-wrapper {
    display: flex;
  }
  .design-upload .design-upload-upload .button-wrapper .button.busy .button-text {
    display: none;
  }
  .design-upload .design-upload-upload .button-wrapper .button.primary {
    margin-top: 24px;
    cursor: default;
    background-color: gray;
    margin-top: 24px;
  }
  .design-upload .design-upload-upload .button-wrapper .button.primary.active {
    cursor: pointer;
    background-color: #71ac29;
  }
  .design-upload .design-upload-upload .button-wrapper .button.secondary {
    color: #71ac29;
  }
  .design-upload .design-upload-upload .button-wrapper .button.error {
    background-color: red;
  }
  .design-upload .design-upload-upload .error-text {
    display: none;
    color: red;
  }
  .design-upload .design-upload-upload .error-text.active {
    display: block;
  }

  .design-upload .design-upload-subscription {
    max-width: 800px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .design-upload .design-upload-subscription .teaser-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .design-upload .design-upload-subscription .teaser-image img {
    width: 480px;
  }
  .design-upload .design-upload-subscription .explanation {
    margin: 24px;
    text-align: center;
  }
  .design-upload .design-upload-subscription .input {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .design-upload .design-upload-subscription .input input {
    height: 48px;
    width: 320px;
    background-color: white;
    border: 1px solid #71ac29;
    border-radius: 3px;
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    z-index: 1;
    font-size: 16px;
  }
  .design-upload .design-upload-subscription .input input:focus {
    outline: none;
  }
  .design-upload .design-upload-subscription .subscription-check-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px;
  }
  .design-upload .design-upload-subscription .subscription-check-wrapper .subscription-check {
    display: flex;
    max-width: 320px;
    align-items: center;
  }
  .design-upload .design-upload-subscription .subscription-check-wrapper .subscription-check .text {
    margin-left: 16px;
  }

  .design-upload .design-upload-success {
    max-width: 800px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .design-upload .design-upload-success .teaser-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .design-upload .design-upload-success .teaser-image img {
    width: 480px;
  }
  .design-upload .design-upload-success .text {
    text-align: center;
  }
  .design-upload .design-upload-success .mail {
    font-family: robotomedium;
    margin: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .design-upload {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .design-upload h1, .design-upload h2, .design-upload h3 {
    font-family: "montserrat";
  }
  .design-upload div, .design-upload select {
    font-family: "robotolight";
  }
  .design-upload .section.desktop {
    display: none !important;
  }
  .design-upload .section.mobile {
    display: block;
    padding: 24px;
  }
  .design-upload a {
    text-decoration: none;
  }

  .design-upload .button-wrapper .button {
    border-radius: 5px;
    height: 40px;
    display: flex;
    font-weight: normal;
    font-family: robotolight;
    justify-content: center;
    align-items: center;
    margin: 8px 24px 8px 24px;
  }
  .design-upload .button-wrapper .button.primary {
    background-color: #71ac29;
    margin-top: 24px;
  }
  .design-upload .button-wrapper .button.secondary {
    color: #71ac29;
  }

  .design-upload .design-upload-start .teaser-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .design-upload .design-upload-start .teaser-image img {
    max-width: 400px;
    width: 100%;
  }
  .design-upload .design-upload-start .header {
    padding: 0 24px 0 24px;
    font-family: "robotomedium";
    font-weight: bold;
    font-size: 24px;
  }
  .design-upload .design-upload-start .description {
    margin-top: 16px;
    padding: 0 24px 0 24px;
    font-family: "robotolight";
  }

  .design-upload .design-upload-upload .image-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 16px;
    overflow: hidden;
    justify-content: center;
    position: relative;
  }
  .design-upload .design-upload-upload .image-wrapper img.uploaded {
    position: absolute;
    display: none;
    -webkit-touch-callout: none;
  }
  .design-upload .design-upload-upload .image-wrapper img.foreground {
    z-index: 1;
    width: 110%;
    -webkit-touch-callout: none;
  }
  .design-upload .design-upload-upload .image-wrapper .preloader-container {
    position: absolute;
    margin-top: 40px;
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-direction: column;
    visibility: hidden;
  }
  .design-upload .design-upload-upload .image-wrapper .preloader-container .preloader {
    -webkit-touch-callout: none;
    width: 80px !important;
    height: 80px !important;
    position: absolute;
    height: auto;
  }
  .design-upload .design-upload-upload .image-wrapper .preloader-container .preloader .loading {
    box-sizing: border-box;
    width: 80px;
    height: 80px;
  }
  .design-upload .design-upload-upload .image-wrapper .preloader-container .preloader-text {
    position: absolute;
    color: #71ac29;
    margin: 0;
    bottom: -48%;
    font-size: 16px;
    width: 240px;
    text-align: center;
  }
  .design-upload .design-upload-upload .image-wrapper .button-wrapper {
    font-size: 14px;
    position: absolute;
    z-index: 2;
    width: auto;
    max-width: 65%;
    text-align: center;
    margin-top: 32px;
  }
  .design-upload .design-upload-upload .image-wrapper .button-wrapper .button {
    padding: 4px 12px 4px 12px;
  }
  .design-upload .design-upload-upload .color-chooser {
    display: flex;
    justify-content: center;
    margin: 16px 24px 0 24px;
  }
  .design-upload .design-upload-upload .color-chooser .color {
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    margin-left: 16px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.54);
    cursor: pointer;
  }
  .design-upload .design-upload-upload .color-chooser .color:nth-of-type(1) {
    margin-left: 0;
  }
  .design-upload .design-upload-upload .color-chooser .color.active, .design-upload .design-upload-upload .color-chooser .color:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  }
  .design-upload .design-upload-upload .color-chooser .color.active .check {
    display: block;
    color: white;
  }
  .design-upload .design-upload-upload .color-chooser .color .check {
    display: none;
  }
  .design-upload .design-upload-upload .controls {
    display: flex;
    justify-content: center;
    padding: 0 24px 8px 24px;
  }
  .design-upload .design-upload-upload .controls .control {
    margin-left: 16px;
    width: 48px;
    height: 48px;
    display: inline-block;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.26);
    color: rgba(0, 0, 0, 0.26);
    padding: 12px;
  }
  .design-upload .design-upload-upload .controls .control:nth-of-type(1) {
    margin-left: 0;
  }
  .design-upload .design-upload-upload .controls .control > .icon {
    vertical-align: middle;
  }
  .design-upload .design-upload-upload .controls.active .control {
    border: 1px solid rgba(0, 0, 0, 0.54);
    color: rgba(0, 0, 0, 0.84);
  }
  .design-upload .design-upload-upload .explanation {
    text-align: center;
    margin-top: 16px;
    padding: 0 24px 0 24px;
    font-family: "robotolight";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .design-upload .design-upload-upload .explanation:hover {
    cursor: default;
  }
  .design-upload .design-upload-upload .button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .design-upload .design-upload-upload .button-wrapper .button {
    border-radius: 5px;
    height: 40px;
    display: flex;
    font-weight: normal;
    font-family: robotolight;
    justify-content: center;
    align-items: center;
    margin: 24px 24px 8px 24px;
  }
  .design-upload .design-upload-upload .button-wrapper .button .loading-wrapper {
    display: none;
    position: absolute;
    height: auto;
  }
  .design-upload .design-upload-upload .button-wrapper .button .loading-wrapper .loading {
    height: 28px;
    width: 28px;
  }
  .design-upload .design-upload-upload .button-wrapper .button.busy {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.8s ease-out;
  }
  .design-upload .design-upload-upload .button-wrapper .button.busy .loading-wrapper {
    display: flex;
  }
  .design-upload .design-upload-upload .button-wrapper .button.busy .button-text {
    display: none;
  }
  .design-upload .design-upload-upload .button-wrapper .button.primary {
    background-color: gray;
    margin-top: 24px;
  }
  .design-upload .design-upload-upload .button-wrapper .button.primary.active {
    background-color: #71ac29;
  }
  .design-upload .design-upload-upload .button-wrapper .button.secondary {
    color: #71ac29;
  }
  .design-upload .design-upload-upload .button-wrapper .button.start-download {
    margin-bottom: 24px;
  }
  .design-upload .design-upload-upload .button-wrapper .button.error {
    background-color: red;
  }
  .design-upload .design-upload-upload .error-text {
    display: none;
    color: red;
  }
  .design-upload .design-upload-upload .error-text.active {
    display: block;
  }

  .design-upload .design-upload-subscription .teaser-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .design-upload .design-upload-subscription .teaser-image img {
    width: 100%;
  }
  .design-upload .design-upload-subscription .explanation {
    margin: 24px;
    text-align: center;
  }
  .design-upload .design-upload-subscription .input {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .design-upload .design-upload-subscription .input input {
    height: 48px;
    width: 90%;
    background-color: white;
    border: 1px solid #71ac29;
    border-radius: 3px;
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    z-index: 1;
    font-size: 16px;
  }
  .design-upload .design-upload-subscription .input input:focus {
    outline: none;
  }
  .design-upload .design-upload-subscription .subscription-check-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px;
  }
  .design-upload .design-upload-subscription .subscription-check-wrapper .subscription-check {
    display: flex;
    max-width: 320px;
    align-items: center;
  }
  .design-upload .design-upload-subscription .subscription-check-wrapper .subscription-check .text {
    margin-left: 16px;
  }

  .design-upload .design-upload-success {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .design-upload .design-upload-success .teaser-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .design-upload .design-upload-success .teaser-image img {
    max-width: 720px;
    width: 100%;
  }
  .design-upload .design-upload-success .text {
    text-align: center;
    padding: 0 24px 0 24px;
  }
  .design-upload .design-upload-success .mail {
    font-family: robotomedium;
    margin: 16px;
  }
}
.stock h1 {
  color: rgba(0, 0, 0, 0.54);
  text-align: center;
}
.stock h2 {
  color: rgba(0, 0, 0, 0.54);
  text-align: center;
}
.stock.turtle {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stock.turtle .turtle-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stock.turtle .turtle-container .turtle-background {
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
}
.stock.turtle .turtle-container .turtle-background.hidden {
  visibility: hidden;
}
.stock.turtle .turtle-container .turtle-image {
  z-index: 1;
  width: 100%;
}
.stock.turtle .turtle-container .percentage-label {
  z-index: 2;
  position: absolute;
  font-size: 40px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #71ac29;
  border-radius: 32px;
  padding: 8px;
  box-sizing: content-box;
  color: rgba(0, 0, 0, 0.54);
  text-align: center;
}
@media only screen and (max-width: 420px) {
  .stock.turtle .turtle-container .percentage-label {
    font-size: 20px;
  }
}

.code-generator-overview .section.header {
  padding-top: 16px;
  padding-bottom: 160px;
}
.code-generator-overview .section.header .explanation {
  width: auto !important;
}
.code-generator-overview .section.community {
  background: none;
}
.code-generator-overview .section.recent-codes {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
.code-generator-overview .section.recent-codes h2 {
  margin: 48px 0 24px 0;
  color: #71ac29;
}
.code-generator-overview .section.recent-codes .job-table {
  padding: 24px;
  margin-bottom: 48px;
  max-width: 600px;
}
.code-generator-overview .section.recent-codes .job-table .job {
  padding: 16px 0 16px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eaeaea;
}
.code-generator-overview .section.recent-codes .job-table .job .image {
  margin-right: 24px;
  min-width: 50px;
  width: 50px;
}
.code-generator-overview .section.recent-codes .job-table .job .image > img {
  width: 100%;
}
.code-generator-overview .section.recent-codes .job-table .job .details {
  margin-right: 24px;
  width: 100%;
}
.code-generator-overview .section.recent-codes .job-table .job .details .customer {
  padding-top: 8px;
}
.code-generator-overview .section.recent-codes .job-table .job .details .notice {
  padding-top: 8px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}
.code-generator-overview .section.recent-codes .job-table .job .date-and-details {
  text-align: right;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.code-generator-overview .section.recent-codes .job-table .job .date-and-details .date {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}
.code-generator-overview .section.recent-codes .job-table .job .date-and-details > a {
  cursor: pointer;
  vertical-align: bottom;
  text-decoration: none;
}
.code-generator-overview .button-wrapper a {
  margin-top: 16px;
  background-color: #f73f10;
}

.code-generator-details h1 {
  font-family: montserrat;
  color: #71ac29;
  text-align: center;
  margin: 40px;
}
.code-generator-details .code-generator-details-body {
  display: flex;
  justify-content: center;
}
.code-generator-details .code-generator-details-body .row .card {
  margin: 8px;
  vertical-align: top;
  display: inline-block;
  width: 296px;
}
.code-generator-details .code-generator-details-body .row .card .card-header-body {
  padding: 16px;
}
.code-generator-details .code-generator-details-body .row .card .card-header-body .headline {
  font-family: montserrat;
  color: rgba(0, 0, 0, 0.84);
  font-size: 18px;
  font-weight: bold;
}
.code-generator-details .code-generator-details-body .row .card .card-header-body .text {
  margin: 8px 0 8px 0;
}
.code-generator-details .code-generator-details-body .row .card .card-header-body .text .code-generator-infos-table {
  width: 100%;
  border-spacing: 0;
}
.code-generator-details .code-generator-details-body .row .card .card-header-body .text .code-generator-infos-table tr td:first-of-type {
  vertical-align: top;
}
.code-generator-details .code-generator-details-body .row .card .card-header-body .text .code-generator-infos-table tr td:last-of-type {
  padding: 0 8px 0 16px;
  color: rgba(0, 0, 0, 0.84);
  text-align: left;
  font-size: 14px;
}
.code-generator-details .code-generator-details-body .row .card .card-header-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  border-bottom: 1px solid #eaeaea;
}
.code-generator-details .code-generator-details-body .row .card .card-header-image .icon {
  color: #71ac29;
}
.code-generator-details .code-generator-details-body .row .card .card-header-image > img {
  height: 48px;
}
.code-generator-details .code-generator-details-body .row .card.code-generate-progress .card-header-body .progress-bar {
  height: 16px;
}
.code-generator-details .code-generator-details-body .row .card.code-generate-progress .card-header-body .progress-bar .progress-bar-outer {
  max-width: 100%;
  margin-top: 8px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 2px;
}
.code-generator-details .code-generator-details-body .row .card.code-generate-progress .card-header-body .progress-bar .progress-bar-outer .progress-bar-inner {
  box-sizing: border-box;
  border-radius: 2px;
  width: 33%;
  height: 100%;
  background: #71ac29;
}
.code-generator-details .code-generator-details-body .row .card.code-generate-infos .card-header-body .progress-bar .progress-bar-outer {
  height: 16px;
  max-width: 100%;
  padding: 8px;
  margin-top: 8px;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.code-generator-details .code-generator-details-body .row .card.code-generate-infos .card-header-body .progress-bar .progress-bar-outer .progress-bar-inner {
  border-radius: 2px;
  padding: 4px;
  width: 33%;
  height: 100%;
  background: #71ac29;
}
.code-generator-details .code-generator-details-body .row .card.code-generate-actions .button-wrapper {
  padding: 8px;
  box-sizing: border-box;
}
.code-generator-details .code-generator-details-body .row .card.code-generate-actions .button-wrapper .button {
  background: #71ac29;
}

.code-generator-generate h1 {
  font-family: montserrat;
  color: #71ac29;
  text-align: center;
  margin: 40px;
}
.code-generator-generate .code-generator-generate-body {
  display: flex;
  justify-content: center;
  padding: 24px;
  margin-bottom: 40px;
}
.code-generator-generate .code-generator-generate-body input[type=number], .code-generator-generate .code-generator-generate-body input[type=password], .code-generator-generate .code-generator-generate-body input[type=text] {
  outline: none;
  border: 1px solid #71ac29;
  font-size: 18px;
  width: 200px;
  padding: 8px 16px 8px 16px;
  color: rgba(0, 0, 0, 0.84);
}
.code-generator-generate .code-generator-generate-body input.customer-title {
  margin-top: 16px;
}
.code-generator-generate .code-generator-generate-body textarea {
  outline: none;
  border: 1px solid #71ac29;
  font-size: 16px;
  width: 100%;
  padding: 16px;
  color: rgba(0, 0, 0, 0.84);
}
.code-generator-generate .code-generator-generate-body > form > table {
  border-collapse: collapse;
  position: relative;
}
.code-generator-generate .code-generator-generate-body > form > table tr:first-of-type {
  margin-top: 0;
}
.code-generator-generate .code-generator-generate-body > form > table tr:first-of-type td {
  padding-top: 0;
}
.code-generator-generate .code-generator-generate-body > form > table tr td {
  vertical-align: top;
  padding-top: 32px;
  padding-bottom: 0;
}
.code-generator-generate .code-generator-generate-body > form > table tr td:last-of-type {
  padding-left: 16px;
  width: 480px;
}
.code-generator-generate .code-generator-generate-body > form > table tr td:last-of-type .body {
  margin-top: 16px;
}
.code-generator-generate .code-generator-generate-body > form > table tr td:last-of-type .body .types {
  height: 156px;
  overflow: scroll;
}
.code-generator-generate .code-generator-generate-body > form > table tr td:last-of-type .body .types .type {
  vertical-align: top;
  display: inline-block;
  width: 60px;
  color: rgba(0, 0, 0, 0.54);
  border-radius: 64px;
  padding: 16px;
  cursor: pointer;
  filter: grayscale(100%);
  border-radius: 64px;
}
.code-generator-generate .code-generator-generate-body > form > table tr td:last-of-type .body .types .type:first-of-type {
  padding-left: 0;
}
.code-generator-generate .code-generator-generate-body > form > table tr td:last-of-type .body .types .type .icon {
  height: 60px;
  width: 60px;
  cursor: pointer;
}
.code-generator-generate .code-generator-generate-body > form > table tr td:last-of-type .body .types .type .label {
  word-break: break-word;
  text-align: center;
  margin-top: 16px;
}
.code-generator-generate .code-generator-generate-body > form > table tr td:last-of-type .body .types .type.active {
  filter: grayscale(0%);
  color: rgba(0, 0, 0, 0.84);
}
.code-generator-generate .code-generator-generate-body > form > table tr td:last-of-type .body .types .type:hover {
  color: rgba(0, 0, 0, 0.84);
}
.code-generator-generate .code-generator-generate-body > form > table tr td:last-of-type .body .button-wrapper {
  width: auto;
  text-align: left;
}
.code-generator-generate .code-generator-generate-body > form > table tr td:last-of-type .body .button-wrapper .button {
  background-color: #71ac29;
  padding: 8px 16px 8px 16px;
  font-size: 16px;
  font-family: robotoregular;
}
.code-generator-generate .code-generator-generate-body > form > table tr td .connector {
  height: 100%;
  margin-bottom: 24px;
  width: 1px;
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 20px;
  z-index: -1;
}
.code-generator-generate .code-generator-generate-body > form > table tr td h2 {
  margin: 6px 0 8px 0;
  color: rgba(0, 0, 0, 0.84);
  font-size: 20px;
}
.code-generator-generate .code-generator-generate-body > form > table tr td .subtitle {
  color: rgba(0, 0, 0, 0.54);
}
.code-generator-generate .code-generator-generate-body > form > table tr td .step {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #71ac29;
  color: white;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  font-size: 20px;
}

@media only screen and (max-width: 768px) {
  .section.community {
    background-color: white;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 24px 24px 2px 24px;
  }
  .section.community .headline {
    margin: 0 0 16px 0;
  }
  .section.community .wrapper {
    max-width: 1000px;
    width: 100%;
    position: relative;
    background-color: white;
    padding: 16px;
    text-align: center;
    margin-top: -64px;
    border-radius: 16px;
    z-index: 1;
  }
  .section.community .wrapper .explanation {
    margin-top: 16px;
    line-height: 24px;
  }
  .section.community .wrapper .badges {
    display: flex;
    margin-top: 16px;
    align-items: center;
    justify-content: center;
  }
  .section.community .wrapper .badges.manual {
    margin: 0;
  }
  .section.community .wrapper .badges .badge-manual {
    background: black;
    color: white;
    display: flex;
    align-items: center;
    height: 36px;
    border-radius: 8px;
    padding: 2px 12px;
    margin: 8px;
    font-family: robotoregular;
    text-decoration: none;
  }
  .section.community .wrapper .badges .badge {
    display: flex;
    align-items: center;
  }
  .section.community .wrapper .badges .badge.apple img {
    padding: 8px;
  }
  .section.community .wrapper .badges .badge img {
    max-width: 160px;
  }
  .section.community .wrapper .divider {
    border: 0;
    height: 1px;
    margin: 24px 0 16px 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  }
  .section.community .wrapper .image {
    text-decoration: none;
  }
  .section.community .wrapper .image img {
    width: 50%;
  }

  /* TODO: Split into desktop and mobile */
  .code-generator-overview .section {
    padding: 24px;
  }
  .code-generator-overview .section.header {
    height: 120px;
    color: white;
    background-image: url("../images/under-construction/bg.svg") !important;
  }
  .code-generator-overview .section.recent-codes {
    width: auto !important;
  }
}
@media only screen and (min-width: 769px) {
  .internal-dashboard .mobile {
    display: none !important;
  }

  .mobile.navigation {
    display: none;
  }

  .section.navigation {
    background-color: white;
    display: flex !important;
    justify-content: space-between;
    height: 64px;
    align-items: center;
    position: fixed;
    left: 0;
    z-index: 5;
    color: black;
    align-items: center;
    width: 100%;
  }
  .section.navigation .brand {
    width: 128px;
    margin-left: 24px;
  }
  .section.navigation .menu {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .section.navigation .menu li {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin-left: 8px;
    padding-right: 24px;
    font-family: "robotolight";
  }
  .section.navigation .menu li:last-of-type {
    border: none;
  }
  .section.navigation .menu li.active {
    font-family: "robotoregular";
  }
  .section.navigation .menu li:hover {
    font-family: "robotoregular";
  }
  .section.navigation .menu li a {
    color: black;
    text-decoration: none;
  }

  .internal-dashboard {
    display: flex;
    justify-content: center;
    background: #eaeaea;
    color: rgba(0, 0, 0, 0.84);
    min-height: 100%;
    padding: 0 24px 24px 24px;
  }
  .internal-dashboard .filters {
    position: fixed;
    top: 64px;
    left: 0;
    z-index: 1;
  }
  .internal-dashboard .filters .resizer {
    height: 24px;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .internal-dashboard .filters .resizer * {
    cursor: pointer;
  }
  .internal-dashboard .filters .resizer:hover {
    color: #71ac29;
  }
  .internal-dashboard .filters.minimized {
    height: 24px;
    width: 24px;
  }
  .internal-dashboard .filters.minimized .chooser {
    width: 0;
    overflow: hidden;
  }
  .internal-dashboard .filters.minimized .chooser .option {
    display: none;
  }
  .internal-dashboard .filters.minimized .minimizer {
    display: none;
  }
  .internal-dashboard .filters.minimized .maximizer {
    display: block;
  }
  .internal-dashboard .filters .maximizer {
    display: none;
  }
  .internal-dashboard .filters .chooser {
    transition: width 0.25s ease-in;
    width: 256px;
    height: 208px;
    left: 0;
    overflow: scroll;
    overflow-x: hidden;
    box-sizing: content-box;
  }
  .internal-dashboard .filters .chooser .option {
    padding: 8px;
    display: flex;
    height: 40px;
    cursor: pointer;
  }
  .internal-dashboard .filters .chooser .option:active, .internal-dashboard .filters .chooser .option.active, .internal-dashboard .filters .chooser .option:hover {
    border: 1px solid #71ac29;
  }
  .internal-dashboard .filters .chooser .option:nth-of-type(1) .logo {
    border: none;
  }
  .internal-dashboard .filters .chooser .option .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    padding: 8px;
    /*border: 1px solid #eaeaea;*/
  }
  .internal-dashboard .filters .chooser .option .logo img {
    height: 100%;
    width: auto;
  }
  .internal-dashboard .filters .chooser .option .title {
    margin-left: 16px;
    display: flex;
    align-items: center;
    vertical-align: middle;
  }
  .internal-dashboard div.tooltip {
    position: absolute;
    text-align: center;
    font: 12px robotolight;
    background: #71ac29;
    border: 1px solid white;
    pointer-events: none;
    color: white;
    padding: 8px;
  }
  .internal-dashboard .card {
    box-sizing: border-box;
    padding: 24px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  }
  .internal-dashboard .single-number {
    justify-content: center;
    vertical-align: top;
    height: 120px;
    width: 240px;
  }
  .internal-dashboard .single-number .header {
    display: block;
    top: 24px;
    left: 24px;
    color: rgba(0, 0, 0, 0.54);
  }
  .internal-dashboard .single-number .value {
    font-size: 28px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .internal-dashboard .single-number .value .icon {
    background: white;
    color: #71ac29;
    padding: 8px;
    border-radius: 24px;
    margin-left: 16px;
    max-width: 32px;
  }
  .internal-dashboard .single-number .value .icon.image {
    border-radius: 0;
    max-width: 48px;
  }
  .internal-dashboard .single-number .value .icon.filled {
    background: #71ac29;
    color: white;
  }
  .internal-dashboard .single-number-with-icon {
    justify-content: center;
    vertical-align: top;
    height: 160px;
    width: 240px;
  }
  .internal-dashboard .single-number-with-icon .header {
    display: block;
    top: 24px;
    left: 24px;
    color: rgba(0, 0, 0, 0.54);
  }
  .internal-dashboard .single-number-with-icon .value {
    font-size: 28px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .internal-dashboard .single-number-with-icon .value .icon {
    background: white;
    color: #71ac29;
    padding: 8px;
    border-radius: 24px;
    margin-left: 16px;
    max-width: 32px;
  }
  .internal-dashboard .single-number-with-icon .value .icon.image {
    border-radius: 0;
    max-width: 48px;
  }
  .internal-dashboard .single-number-with-icon .value .icon.filled {
    background: green;
    color: white;
  }

  .internal-dashboard .content.main {
    margin-top: 64px;
    width: 100%;
    max-width: 1040px;
  }
  .internal-dashboard .content.main .card-area h2 {
    margin-top: 48px;
  }
  .internal-dashboard .content.main .card-area .card-row {
    margin-left: -16px;
    margin-top: 24px;
  }
  .internal-dashboard .content.main .card-area .card-row .card {
    margin-left: 16px;
    display: inline-block;
  }
  .internal-dashboard .content.main .card-area .card-row .card.top-margin {
    margin-top: 16px;
  }

  .internal-dashboard .content.history {
    margin-top: 64px;
    width: 100%;
    max-width: 1040px;
  }
  .internal-dashboard .content.history .card-area h2 {
    margin-top: 48px;
  }
  .internal-dashboard .content.history .card-area .card-row {
    margin-left: -16px;
    margin-top: 24px;
  }
  .internal-dashboard .content.history .card-area .card-row .card {
    margin-left: 16px;
    display: inline-block;
  }
  .internal-dashboard .content.history .card-area .card {
    margin-top: 24px;
  }
  .internal-dashboard .content.history .graph .axis.x path, .internal-dashboard .content.history .graph .axis.x line {
    stroke: none;
  }
  .internal-dashboard .content.history .graph .axis path, .internal-dashboard .content.history .graph .axis line {
    fill: none;
    stroke: rgba(0, 0, 0, 0.84);
    shape-rendering: crispEdges;
  }
  .internal-dashboard .content.history .graph text {
    fill: rgba(0, 0, 0, 0.84);
    font: 10px robotolight;
    text-anchor: middle;
  }
  .internal-dashboard .content.history .graph rect, .internal-dashboard .content.history .graph .rect {
    fill: #71ac29;
    cursor: pointer;
  }
  .internal-dashboard .content.history .graph .line {
    stroke: #71ac29;
  }
  .internal-dashboard .content.today {
    margin-top: 64px;
    width: 100%;
    max-width: 1040px;
  }
  .internal-dashboard .content.today .card-area h2 {
    margin-top: 48px;
  }
  .internal-dashboard .content.today .card-area .card-row {
    margin-left: -16px;
    margin-top: 24px;
  }
  .internal-dashboard .content.today .card-area .card-row .card {
    margin-left: 16px;
    display: inline-block;
  }
  .internal-dashboard .content.today .card-area .card-row .card.top-margin {
    margin-top: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .internal-dashboard .desktop {
    display: none !important;
  }

  .mobile.navigation {
    background-color: white;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 6;
    color: black;
    left: 0;
    top: 0;
    transition: left 0.5s ease;
  }
  .mobile.navigation.shifted {
    left: 100%;
  }
  .mobile.navigation .header {
    width: 100%;
    border-bottom: 1px solid #71ac29;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }
  .mobile.navigation .header .logo {
    height: 32px;
    margin-left: 24px;
  }
  .mobile.navigation .header .close-button {
    height: 32px;
    margin-right: 16px;
    cursor: pointer;
  }
  .mobile.navigation .menu {
    text-align: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .mobile.navigation .menu li {
    border-bottom: 1px solid #eaeaea;
    font-family: "robotoregular";
    text-decoration: none;
    cursor: pointer;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile.navigation .menu li.active {
    color: #71ac29;
  }
  .mobile.navigation .menu li a {
    color: black;
    text-decoration: none;
  }
  .mobile.navigation .language {
    font-family: "robotoregular";
    width: 100%;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    position: absolute;
    height: 80px;
  }
  .mobile.navigation .language a {
    color: black;
    text-decoration: none;
  }

  .internal-dashboard {
    display: flex;
    justify-content: center;
    background: #eaeaea;
    color: rgba(0, 0, 0, 0.84);
    min-height: 100%;
  }
  .internal-dashboard .filters {
    display: none;
  }
  .internal-dashboard div.tooltip {
    position: absolute;
    text-align: center;
    font: 12px robotolight;
    background: #71ac29;
    border: 1px solid white;
    pointer-events: none;
    color: white;
    padding: 8px;
  }
  .internal-dashboard .card {
    box-sizing: border-box;
    padding: 24px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    width: 100%;
  }
  .internal-dashboard .single-number {
    justify-content: center;
    vertical-align: top;
    height: 120px;
    width: 240px;
  }
  .internal-dashboard .single-number .header {
    display: block;
    top: 24px;
    left: 24px;
    color: rgba(0, 0, 0, 0.54);
  }
  .internal-dashboard .single-number .value {
    font-size: 28px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .internal-dashboard .single-number .value .icon {
    background: white;
    color: #71ac29;
    padding: 8px;
    border-radius: 24px;
    margin-left: 16px;
    max-width: 32px;
  }
  .internal-dashboard .single-number .value .icon.image {
    border-radius: 0;
    max-width: 48px;
  }
  .internal-dashboard .single-number .value .icon.filled {
    background: #71ac29;
    color: white;
  }
  .internal-dashboard .single-number-with-icon {
    justify-content: center;
    vertical-align: top;
    height: 160px;
    width: 240px;
  }
  .internal-dashboard .single-number-with-icon .header {
    display: block;
    top: 24px;
    left: 24px;
    color: rgba(0, 0, 0, 0.54);
  }
  .internal-dashboard .single-number-with-icon .value {
    font-size: 28px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .internal-dashboard .single-number-with-icon .value .icon {
    background: white;
    color: #71ac29;
    padding: 8px;
    border-radius: 24px;
    margin-left: 16px;
    max-width: 32px;
  }
  .internal-dashboard .single-number-with-icon .value .icon.image {
    border-radius: 0;
    max-width: 48px;
  }
  .internal-dashboard .single-number-with-icon .value .icon.filled {
    background: green;
    color: white;
  }

  .internal-dashboard .section.header {
    padding: 0 0 24px 0;
  }
  .internal-dashboard h1, .internal-dashboard h2, .internal-dashboard h3, .internal-dashboard h4 {
    margin-left: 24px;
  }
  .internal-dashboard .content.main {
    margin-top: 48px;
    width: 100%;
    max-width: 1040px;
  }
  .internal-dashboard .content.main .card-area h2 {
    margin-top: 48px;
  }
  .internal-dashboard .content.main .card-area .card-row {
    margin-top: 24px;
  }
  .internal-dashboard .content.main .card-area .card-row .card {
    width: 100%;
  }

  .internal-dashboard .content.history {
    margin-top: 48px;
    width: 100%;
    max-width: 1040px;
  }
  .internal-dashboard .content.history .filters {
    display: none;
  }
  .internal-dashboard .content.history .card-area h2 {
    margin-top: 48px;
  }
  .internal-dashboard .content.history .card-area .card-row {
    margin-left: -16px;
    margin-top: 24px;
  }
  .internal-dashboard .content.history .card-area .card-row .card {
    margin-left: 16px;
    display: inline-block;
  }
  .internal-dashboard .content.history .card-area .card {
    margin-top: 24px;
  }
  .internal-dashboard .content.history .graph .axis.x path, .internal-dashboard .content.history .graph .axis.x line {
    stroke: none;
  }
  .internal-dashboard .content.history .graph .axis path, .internal-dashboard .content.history .graph .axis line {
    fill: none;
    stroke: rgba(0, 0, 0, 0.84);
    shape-rendering: crispEdges;
  }
  .internal-dashboard .content.history .graph text {
    fill: rgba(0, 0, 0, 0.84);
    font: 10px robotolight;
    text-anchor: middle;
  }
  .internal-dashboard .content.history .graph rect, .internal-dashboard .content.history .graph .rect {
    fill: #71ac29;
    cursor: pointer;
  }
  .internal-dashboard .content.history .graph .line {
    stroke: #71ac29;
  }
  .internal-dashboard .section.header {
    padding: 0 0 24px 0;
  }
  .internal-dashboard h1, .internal-dashboard h2, .internal-dashboard h3, .internal-dashboard h4 {
    margin-left: 24px;
  }
  .internal-dashboard .content.today {
    margin-top: 48px;
    width: 100%;
    max-width: 1040px;
  }
  .internal-dashboard .content.today .card-area h2 {
    margin-top: 48px;
  }
  .internal-dashboard .content.today .card-area .card-row {
    margin-top: 24px;
  }
  .internal-dashboard .content.today .card-area .card-row .card {
    width: 100%;
  }
}
.internal-crm .section.search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.internal-crm .section.search-box .wrapper {
  max-width: 1000px;
  width: 100%;
  position: relative;
  background-color: white;
  padding: 32px;
  text-align: center;
  border-radius: 16px;
  z-index: 1;
}
.internal-crm .section.search-box .wrapper .search-input {
  border: none;
  border-bottom: 1px solid #71ac29;
  padding: 5px 10px;
  outline: none;
  width: 480px;
  font-size: 24px;
  text-align: center;
  margin: 24px 0 24px 0;
}
.internal-crm .section.search-box .wrapper .explanation {
  margin-top: 24px;
  color: #a0a0a0;
}
.internal-crm .section.search-box .wrapper .explanation.error {
  color: red;
}
.internal-crm .section.search-box .wrapper .button-wrapper {
  margin-top: 24px;
}
.internal-crm .section.search-box .wrapper .button-wrapper .button {
  border-radius: 24px;
  padding: 16px;
}
.internal-crm .section.search-box .wrapper .button-wrapper .button:hover {
  background-color: #71ac29;
}
.internal-crm .button-wrapper button {
  border: none;
  font-size: 16px;
  margin-top: 16px;
  background-color: #f73f10;
}

.internal-crm .section.result-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.internal-crm .section.result-box .wrapper {
  max-width: 1200px;
  width: 100%;
  position: relative;
  background-color: white;
  padding: 32px;
  text-align: center;
  border-radius: 16px;
  z-index: 1;
}
.internal-crm .section.result-box .wrapper .result-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
.internal-crm .section.result-box .wrapper .result-list h2 {
  color: #71ac29;
}
.internal-crm .section.result-box .wrapper .result-list .results-table {
  padding: 24px;
  max-width: 1000px;
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
  scroll: vertical;
  width: 100%;
}
.internal-crm .section.result-box .wrapper .result-list .results-table .result {
  padding: 16px 0 16px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eaeaea;
}
.internal-crm .section.result-box .wrapper .result-list .results-table .result .image {
  margin-right: 24px;
  min-width: 50px;
  width: 50px;
}
.internal-crm .section.result-box .wrapper .result-list .results-table .result .image > img {
  width: 100%;
}
.internal-crm .section.result-box .wrapper .result-list .results-table .result > .details {
  margin-right: 24px;
  width: 100%;
  text-align: left;
}
.internal-crm .section.result-box .wrapper .result-list .results-table .result > .details .main-info {
  font-size: 14px;
  padding-top: 8px;
}
.internal-crm .section.result-box .wrapper .result-list .results-table .result > .details .sub-info {
  padding-top: 8px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}
.internal-crm .section.result-box .wrapper .result-list .results-table .result .date-and-details {
  font-size: 14px;
  text-align: right;
  min-width: 240px;
}
.internal-crm .section.result-box .wrapper .result-list .results-table .result .date-and-details .date {
  color: rgba(0, 0, 0, 0.8);
}
.internal-crm .section.result-box .wrapper .result-list .results-table .result .date-and-details .link-wrapper {
  cursor: pointer;
  vertical-align: bottom;
  background: #71ac29;
  display: inline-block;
  border-radius: 16px;
  padding: 8px;
  font-weight: bold;
}
.internal-crm .section.result-box .wrapper .result-list .results-table .result .date-and-details .link-wrapper > a.link {
  text-decoration: none;
  color: white;
}
.internal-crm .section.result-box .wrapper .explanation {
  margin-top: 24px;
  color: #a0a0a0;
}
.internal-crm .section.result-box .wrapper .button-wrapper {
  margin-top: 24px;
}
.internal-crm .section.result-box .wrapper .button-wrapper .button {
  color: white;
  border-radius: 32px;
  padding: 16px;
}
.internal-crm .section.result-box .wrapper .button-wrapper .button:hover {
  background-color: #71ac29;
}
.internal-crm .button-wrapper a {
  margin-top: 16px;
  background-color: #f73f10;
}

.internal-crm.details {
  justify-content: start !important;
}
.internal-crm .section.user-details {
  display: flex;
  justify-content: center;
  width: 100%;
}
.internal-crm .section.user-details .wrapper {
  max-width: 600px;
  width: 100%;
  max-height: 600px;
  position: relative;
  background-color: white;
  padding: 32px;
  text-align: left;
  border-radius: 16px;
  z-index: 1;
  overflow-y: auto;
  margin: 16px;
}
.internal-crm .section.user-details .wrapper.codes .code-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.internal-crm .section.user-details .wrapper.codes .code-list li {
  margin-bottom: 8px;
}
.internal-crm .button-wrapper a {
  margin-top: 16px;
  background-color: #f73f10;
}

.internal-crm.details {
  justify-content: start !important;
}
.internal-crm .section.code-details {
  display: flex;
  justify-content: center;
  width: 100%;
}
.internal-crm .section.code-details .wrapper {
  max-width: 600px;
  width: 100%;
  max-height: 600px;
  position: relative;
  background-color: white;
  padding: 32px;
  text-align: left;
  border-radius: 16px;
  z-index: 1;
  overflow-y: auto;
  margin: 16px;
}
.internal-crm .section.code-details .wrapper.chat {
  background-color: #f5f5f5;
}
.internal-crm .section.code-details .wrapper.code-infos .code-image-preview {
  display: flex;
  justify-content: center;
  position: relative;
}
.internal-crm .section.code-details .wrapper.code-infos .code-image-preview img.uploaded {
  top: 43%;
  width: 30%;
  max-width: 100px;
  position: absolute;
}
.internal-crm .section.code-details .wrapper.code-infos .code-image-preview img.foreground {
  z-index: 1;
  width: 100%;
  max-width: 300px;
}
.internal-crm .button-wrapper a {
  margin-top: 16px;
  background-color: #f73f10;
}

@media only screen and (max-width: 768px) {
  .section.community {
    background-color: white;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 24px 24px 2px 24px;
  }
  .section.community .headline {
    margin: 0 0 16px 0;
  }
  .section.community .wrapper {
    max-width: 1000px;
    width: 100%;
    position: relative;
    background-color: white;
    padding: 16px;
    text-align: center;
    margin-top: -64px;
    border-radius: 16px;
    z-index: 1;
  }
  .section.community .wrapper .explanation {
    margin-top: 16px;
    line-height: 24px;
  }
  .section.community .wrapper .badges {
    display: flex;
    margin-top: 16px;
    align-items: center;
    justify-content: center;
  }
  .section.community .wrapper .badges.manual {
    margin: 0;
  }
  .section.community .wrapper .badges .badge-manual {
    background: black;
    color: white;
    display: flex;
    align-items: center;
    height: 36px;
    border-radius: 8px;
    padding: 2px 12px;
    margin: 8px;
    font-family: robotoregular;
    text-decoration: none;
  }
  .section.community .wrapper .badges .badge {
    display: flex;
    align-items: center;
  }
  .section.community .wrapper .badges .badge.apple img {
    padding: 8px;
  }
  .section.community .wrapper .badges .badge img {
    max-width: 160px;
  }
  .section.community .wrapper .divider {
    border: 0;
    height: 1px;
    margin: 24px 0 16px 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  }
  .section.community .wrapper .image {
    text-decoration: none;
  }
  .section.community .wrapper .image img {
    width: 50%;
  }

  /* TODO: Split into desktop and mobile */
  .internal-crm .section {
    padding: 24px;
  }
  .internal-crm .section.header {
    height: 120px;
    color: white;
    background-image: url("../images/under-construction/bg.svg") !important;
  }
}
.internal-crm {
  color: white;
  background-color: #71ac29;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-image: url("../images/under-construction/bg.svg");
  background-size: cover;
  background-position: center center;
}

/*# sourceMappingURL=app.css.map */
