.flex-center-content {
  display: flex;
  justify-content: center;
}

.error {
  color: #e20000;
  text-shadow: 0px 0px 1px black;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.2px;
}

.margin-to-header {
  margin-top: 86px;
}

.header {
  display: flex;
  justify-content: space-between;
  height: 86px;
  min-height: 86px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.footer {
  display: flex;
  flex-direction: row;
  height: 90px;
  min-height: 90px;
  width: 100%;
  bottom: 0;
  padding: 14px 0;
  position: sticky;
  background: #eeeeee;
  text-align: center;
  border-top: 1px solid #777777;
}

.footer-left {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50%;
}

.footer-right {
  display: inline-flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  padding-left: 16px;
}

.header .material-icons {
  font-size: 45px;
  cursor: pointer;
  color: var(--mdc-theme-primary);
  padding: 30px 50px;
}

.back-button {
  height: 50px;
  width: 90px;
  margin-right: 30px;
  margin-top: 20px;
  background-color: var(--mdc-theme-primary);
  color: #ffffff;
  border-radius: 10px;
  border: 0;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.button-accent {
  color: #000000 !important;
  background-color: var(--mdc-theme-accent) !important;
  height: 50px;
  width: 160px !important;
  border-radius: 5px;
}

.koch-header {
  font-size: 32px;
  line-height: 40px;
  text-align: center;
}

.koch-header h2 {
  display: flex;
  justify-content: center;
  font-size: 12px;
}

.koch-header div {
  text-align: left;
}

.scroll-wrapper {
    width: 100%;
    display: flex;
    overflow-y: auto;
    overflow-x: hidden;
    justify-content: center;
}

.locale-dropdown {
  text-align: right !important;
}

.full-width {
  width: 100%;
}

.flex-grow {
  flex-grow: 1;
}

.form-options-accent {
  color: var(--mdc-theme-accent);
  font-size: 15px;
}

.form-options-accent:hover {
  color: var(--mdc-theme-accent-ligth);
}

.form-options-white {
  color: #ffffff !important;
  font-size: 15px;
}

.show-for-mobile {
  display: none;
}

.capitalize {
  text-transform: capitalize;
}

@media only screen and (max-width: 1080px) {
  .show-for-mobile {
    display: block;
    font-size: 25px !important;
    font-weight: bold;
  }

  .not-show-for-mobile {
    display: none;
  }

  .go-back-mobile {
    display: flex;
    align-items: center;
  }

  .back-button {
    background-color: var(--mdc-theme-accent);
    color: var(--mdc-theme-primary);
    width: 40px;
    height: 40px;
    margin-right: 16px;
  }
}

@media only screen and (max-width: 450px) {
  .footer {
    height: 72px;
  }

  .footer-left {
    display: none;
  }

  .footer-right {
    margin-top: 0px;
  }

  .koch-link {
    letter-spacing: 0;
  }
}
