html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}
header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  @media screen and (min-width: 600px) {
    height: 72px;
  }
  z-index: 100;
}
#app {
  height: calc(100% - 60px);
  @media screen and (min-width: 600px) {
    height: calc(100% - 72px);
  }
  display: flex;
  justify-content: center;
  z-index: 0;
}
#logo-container .logo > img {
  max-height: 44px;
}
#logo-container .logo > img.cm-mobile {
  display: block;
  @media screen and (min-width: 600px) {
    display: none;
  }
}
#logo-container .logo > img.cm-desktop {
  display: none;
  @media screen and (min-width: 600px) {
    display: block;
  }
}
h1 {
  font-size: 28px;
  font-weight: 400;
}
p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.015rem;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.container {
  width: 320px;
  margin: auto;
}
.form-group-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.87);
  margin-bottom: 6px;
  display: block;
}
.form-group A:link,
.form-group A:visited,
.form-group A:hover {
  color: #12ADC1;
  text-decoration: none;
}
.form-group A:hover {
  text-decoration: underline;
}
input, select, button {
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  letter-spacing: 0.025rem;
  padding: 8px 16px;
}
.link-button {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 8px;
  margin-top: 16px;
}
.link-button-highlight {
}
.link-button A:link,
.link-button A:visited,
.link-button A:hover {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.9);
  text-decoration: none;
  letter-spacing: 0.025rem;
}
.link-button-highlight A:link,
.link-button-highlight A:visited,
.link-button-highlight A:hover {
  display: inline-block;
  background-color: #12ADC1;
  border: 0 solid #12ADC1;
  text-transform: uppercase;
  padding: 12px 0;
  border-radius: 5px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.025rem;
  text-align: center;
}
.link-button-highlight A:focus {
  background-color: #028DA1;
}
.link-button A:hover {
  text-decoration: underline;
}
input, select {
  background-color: #ffffff;
  padding: 12px 16px;
  border-radius: 5px;
  /*border: 1px solid #facd00;*/
  border: 1px solid rgba(0, 0, 0, 0.7);
  /*color: #ffffff;*/
}
.form-field.error input,
.form-field.error select {
  border: 1px solid #dd2244;
}
input:focus {
  outline: 1px solid rgba(0, 0, 0, 0.7);
}
.form-field.error input:focus {
  outline: 1px solid #dd2244;
}
input::placeholder {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
}
input:focus::placeholder {
  opacity: 0;
}
button {
  padding: 12px 16px;
  background-color: #12ADC1;
  border-radius: 5px;
  border: 0 solid #12ADC1;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}
button:focus{
  background-color: #028DA1;
}
.errornote {
  border-radius: 5px;
  border: 1px solid #dd2244;
  color: #dd2244;
  padding: 16px;
}
UL.errorlist {
  border-radius: 5px;
  border: 1px solid #dd2244;
  color: #dd2244;
  padding: 16px;
  margin: 0;
  list-style: none;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
}
.form-field UL.errorlist,
.form-group UL.errorlist {
  border-width: 0;
  border-radius: 0;
  background-color: unset;
  padding: 4px 1px;
  font-size: 14px;
  color: #dd2244;
  line-height: unset;
  margin: 0;
}
.local-error {
  font-size: 14px;
  padding: 4px 1px;
  display: none;
  color: #dd2244;
}
#lang-container {
  z-index: 100;
}

#lang-container.open UL {
    visibility: visible;
}
#lang-container .lang-menu {
  height: 40px;
  border: 1px solid #777777;
  border-radius: 4px;
}
#lang-container .lang-menu > DIV {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 9px 24px;
  line-height: 22px;
  color: #333333;
  letter-spacing: 0.7px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  text-transform: capitalize;
}
#lang-container UL {
    margin: 0;
    padding: 0;
    list-style: none;
    visibility: hidden;
    background-color: #ffffff;
    border-radius: 4px;
  border: 1px solid #777777;
}
#lang-container UL > LI {
  padding: 0;
  line-height: 22px;
  text-align: center;
}
#lang-container UL > LI > A {
  display: block;
  padding: 10px 24px;
  color: #333333;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: capitalize;
}
#lang-container UL > LI > A:link,
#lang-container UL > LI > A:visited,
#lang-container UL > LI > A:hover {
  color: #333333;
  text-decoration: none;
  font-weight: 400;
}
#lang-container UL > LI:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
#lang-container UL > LI.active {
    background-color: #12ADC133;
}
#lang-container UL > LI.active:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.std-form label,
.std-form .helptext {
  color: #FFFFFF;
  margin-bottom: 4px;
  display: inline-block;
}
.std-form .helptext {
  font-size: 13px;
}
.std-form .helptext ul {
  margin-top: 0;
  padding-left: 20px;
}
.std-form input {
  margin-bottom: 16px;
}
.std-form .errorlist {
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 8px 16px;
}
.big-title {
  font-size: 36px;
  margin-top: 32px;
  margin-bottom: 32px;
  font-weight: 300;
  text-align: center;
  line-height: 46px;

  /*text-shadow: 0 0 6px #ffffff;*/
}
@media screen and (min-width: 600px) {
  .big-title {
    margin-top: 32px;
  }
}
.big-title b {
  font-weight: 600;
}
.big-text {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 24px;
  font-weight: 400;
  text-align: center;
  line-height: 28px;

  /*text-shadow: 0 0 2px #000000;*/
}
.normal-text {
  font-size: 16px;
  margin-top: 16px;
  margin-bottom: 32px;
  font-weight: 400;
  text-align: center;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.65);
}
.b-nowrap b {
  white-space: nowrap;
}
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.form-buttons {
  margin-bottom: 40px;
}
.help {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
}
.help ul {
  margin-top: 0;
  padding-left: 20px;
}
.help ul li {
  margin-top: 4px;
  margin-bottom: 4px;
}
