#application-type-ribbon {
  width: 100%;
  background: #E5E5E5;
  display: flex;
  justify-content: center;
  box-shadow: -1rem 0 #E5E5E5, 1rem 0 #E5E5E5, 0 0 0.4rem 0 black, 0 0 0.4rem -0.4rem black;
  user-select: none;
  position: relative;
}
#application-type-ribbon a:hover {
  background: #EFEFEF;
}
body.set_longterm #application-type-ribbon a#link-longterm,
body.set_shortterm #application-type-ribbon a#link-shortterm,
body.set_exchange #application-type-ribbon a#link-exchange {
  background: #CBCBCB;
}
#application-type-ribbon a {
  padding: 0.5rem;
  margin: 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}
#application-type-ribbon input {
  display: none;
}
@media (max-width: 540px) {
  #application-type-ribbon {
    flex-direction: column;
  }
}
#application-type-descriptions {
  width: 100%;
  overflow-x: hidden;
}
#application-type-descriptions > div {
  width: 100%;
  margin: 0 -0.5rem;
  padding: 0 0.5rem;
  box-shadow: 0 0.5rem 0.3rem -0.5rem black;
}
#application-type-descriptions > div > p {
  text-align: justify;
  hyphens: auto;
  margin: 0.3rem;
  padding: 0.2rem;
}
.error-header {
  background-color: #d25f5d;
  padding: 0.5rem;
  color: #fff;
  font-weight: bold;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
}
#form-footer,
#main-data {
  margin: 1rem 0 0.5rem;
  display: flex;
  flex-flow: column;
  max-width: 40rem;
}
#attachments {
  margin: 1rem 0 0.5rem;
  display: flex;
  flex-flow: column;
  max-width: 40rem;
  width: 100%;
}
.ribbon-left {
  position: absolute;
  left: 1rem;
  height: 100%;
  box-sizing: border-box;
}
@media (max-width: 540px) {
  .ribbon-left {
    display: none;
  }
}
@media (max-width: 700px) {
  .ribbon-left {
    top: -100%;
  }
  .ribbon-left:hover {
    background: none;
  }
}
html {
  height: 100%;
}
body {
  padding: 0;
  margin: 0;
  background: #E5E5E5;
  font-family: "Open Sans", Arial, sans-serif;
  overflow-x: hidden;
  height: 100%;
}
form {
  background: #EFEFEF;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 100%;
}
h1 {
  margin: 0;
  padding: 1rem 3rem;
  position: relative;
  align-self: stretch;
  text-align: center;
}
@media (max-width: 540px) {
  h1 {
    padding: 1rem 0.5rem;
  }
}
h1 > div.logos {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  text-align: left;
}
@media (max-width: 700px) {
  h1 > div.logos {
    display: none;
  }
}
h1 > div.logos img {
  height: 100%;
  padding: 0.4rem 0;
  box-sizing: border-box;
  transition: transform ease-out 150ms;
}
h1 > div.logos img:hover {
  transform: scale(1.1);
}
h1 > div.langs {
  position: absolute;
  display: flex;
  top: 0;
  right: 0;
  height: 100%;
  text-align: right;
  flex-flow: column wrap-reverse;
  font-size: 0;
  justify-content: space-evenly;
  padding-bottom: 2px;
  box-sizing: border-box;
  margin-right: 1rem;
  column-gap: 0.3rem;
}
h1 > div.langs img {
  height: 1.2rem;
  width: 2.4rem;
  border-radius: 2px;
  transition: transform ease-out 150ms;
  box-shadow: 0 0 2px black;
}
h1 > div.langs img:hover,
h1 > div.langs a:not([href]) img {
  transform: scale(1.2);
}
.small-only {
  display: none;
}
@media (max-width: 540px) {
  .small-only {
    display: revert;
  }
}
@media (max-width: 540px) {
  .large-only {
    display: none;
  }
}
textarea {
  resize: vertical;
  min-height: 4rem;
}
input[type="number"],
input[type="date"] {
  text-align: center;
}
#submit {
  width: 100%;
  border: none;
  margin: 0 0 1rem 0;
  padding: 8pt;
  background: #383;
}
#submit:active {
  background: #373;
}
.opt-select {
  display: flex;
  margin: 0 0.5rem 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.opt-select > input[type="radio"] {
  display: none;
}
.opt-select-field {
  flex-grow: 1;
  position: relative;
  flex-basis: 16rem;
  margin-top: 0.5rem;
}
.opt-select-field > .material-input {
  position: absolute;
  width: 100%;
  top: 0;
  margin: 0;
}
.opt-select-field > .material-select {
  margin: 0;
}
.opt-select > label {
  background-color: lightgray;
  color: #000;
  padding: 13px 13px 13px 17px;
  border-radius: 0 4px 0 0;
  margin-top: 0.5rem;
  margin-left: -4px;
}
.opt-select > label :hover {
  background-color: #383;
}
.opt-select > label :active {
  background-color: #373;
}
.opt-select > div:not(.opt-select-field) {
  align-self: center;
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.opt-select > div:not(.opt-select-field) label {
  background-color: #E5E5E5;
  border-radius: 3px;
  border: gray 1px solid;
  text-align: center;
  cursor: pointer;
  user-select: none;
  padding: 0.2rem;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.opt-select > div:not(.opt-select-field) label:hover {
  background-color: #EFEFEF;
}
input.material-select:checked ~ label.material-input {
  display: none;
}
input.material-select:checked ~ div .material-input,
input.material-input:checked ~ div .material-select {
  visibility: hidden;
}
input.material-select:checked ~ div label.material-input,
input.material-input:checked ~ div label.material-select {
  padding: 0 0.2rem;
  height: 0;
  border-width: 0 1px;
}
p {
  text-align: justify;
}
#k15::before,
#k6::before {
  content: "";
  box-shadow: 0 0 5px 4px green;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  opacity: 0;
  transition: opacity linear 0.1s;
}
#room_type_selector {
  position: relative;
  display: flex;
  margin: 0 0.5rem -0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 486px) {
  #room_type_selector {
    margin: 0 -0.5rem -0.5rem;
  }
}
#room_type_selector > input[type="radio"] {
  position: absolute;
  left: 30%;
  top: 30%;
}
#room_type_selector > div {
  flex-basis: 8rem;
  flex-grow: 1;
  background-color: #fff;
  margin: 0.5rem;
  box-sizing: border-box;
  text-align: center;
  border-radius: 4px;
  box-shadow: 1px 2px 3px gray;
  display: flex;
  flex-direction: column;
  position: relative;
}
#room_type_selector > div:hover {
  background-color: #f8f8f8;
}
#room_type_selector > div > div.description {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
#room_type_selector > div > div.description ul {
  align-self: center;
  justify-self: center;
  text-align: left;
  display: inline-block;
  padding-left: 0;
  list-style-position: inside;
  margin: 0.6rem 0.2rem;
}
#room_type_selector > div > div.checkmark {
  width: 100%;
  height: 10rem;
  background-color: #373;
  opacity: 0;
  position: absolute;
  transition: opacity linear 0.1s;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#room_type_selector > div > div.checkmark > img {
  padding: 1rem;
  font-size: 2em;
  color: #fff;
  font-weight: bold;
  align-self: stretch;
}
#room_type_selector > div > img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}
#room_type_selector > div h3 {
  margin: 0.4em;
}
#room_type_selector > div > label {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  cursor: pointer;
}
#room_type_selector .disabled-mark {
  display: none;
  border-radius: 4px;
  background-color: #8888;
  height: 100%;
  width: 100%;
  position: absolute;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
#room_type_selector .disabled-mark > div {
  display: table;
  height: 10rem;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}
#room_type_selector .disabled-mark > div > div {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 540px) {
  #room_type_selector .disabled-mark > div > div > br {
    display: none;
  }
}
@supports (grid-template-rows: subgrid) {
  @media (min-width: 18rem) {
    #room_type_selector {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    #room_type_selector > div {
      width: initial;
      display: grid;
      grid-template-rows: subgrid;
      grid-template-columns: 1fr;
      grid-row: 1/10;
    }
    #room_type_selector > div > div.description {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: 2/10;
    }
    #room_type_selector > div > div.description > h3 {
      align-self: center;
    }
    #room_type_selector > div > div.description ul {
      align-self: start;
    }
  }
}
#room_type_only_k6:disabled ~ #k6 > .disabled-mark {
  display: block;
}
#room_type_only_k6:disabled ~ #k6 > label {
  cursor: default;
}
#room_type_only_k15:checked ~ #k15 > .checkmark,
#room_type_either:checked ~ #k15 > .checkmark,
#room_type_only_k6:checked ~ #k6 > .checkmark,
#room_type_either:checked ~ #k6 > .checkmark {
  opacity: 0.5;
  border-radius: 4px 4px 0 0;
}
#room_type_only_k15:checked ~ #k15::before,
#room_type_either:checked ~ #k15::before,
#room_type_only_k6:checked ~ #k6::before,
#room_type_either:checked ~ #k6::before {
  opacity: 1;
}
#room_type_only_k6:checked ~ #k15 > .to_either,
#room_type_only_k6:checked ~ #k6 > .to_k15,
#room_type_only_k15:checked ~ #k15 > .to_k6,
#room_type_only_k15:checked ~ #k6 > .to_either,
#room_type_either:checked ~ #k15 > .to_k6,
#room_type_either:checked ~ #k6 > .to_k15 {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
body:not(.set_longterm) .only_longterm,
body:not(.set_exchange) .only_exchange,
body:not(.set_shortterm) .only_shortterm,
body.set_longterm .not_longterm,
body.set_exchange .not_exchange,
body.set_shortterm .not_shortterm,
body.set_prelude .not_prelude {
  display: none;
}
.material {
  position: relative;
  margin: 0.5rem;
  border-bottom: 1px solid lightgray;
  border-radius: 4px 4px 0 0;
  background-color: #fff;
}
.material:hover {
  background-color: #f8f8f8;
  border-bottom-color: darkgray;
}
.material:focus-within {
  background-color: #ddd;
}
.material > input,
.material > textarea,
.material > select {
  box-sizing: border-box;
  width: 100%;
  padding: 1.25rem 1rem 0.375rem;
  background: none;
  border: none;
  outline: none;
  position: relative;
  z-index: 100;
  font-size: 1rem;
}
.material > input::file-selector-button {
  display: none;
}
.material > label,
.material > textarea + div > label {
  position: absolute;
  margin-left: 1rem;
  left: 0;
  top: 50%;
  color: gray;
  transform: translateY(-50%);
  transform-origin: 0;
  cursor: text;
}
.material > *,
.material > textarea + div > label {
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.material > input:focus + label,
.material > input:not(:placeholder-shown) ~ label,
.material > textarea:focus + div > label,
.material > textarea:not(:placeholder-shown) + div > label,
.material > select:not(:invalid) + label,
.opt-select-field > .material-select > label {
  transform: translateY(-106%) scale(0.75);
  width: 133%;
}
.material > input:focus + label,
.material > input:focus ~ div,
.material > textarea:focus + div > label,
.material > textarea:focus ~ div,
.material > select:focus + label,
.material > select:focus ~ div {
  color: #383;
}
.material > .highlight {
  content: " ";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: #383;
  transform: scaleX(0);
}
.material > input:focus ~ .highlight,
.material > textarea:focus ~ .highlight,
.material > select:focus ~ .highlight {
  transform: scaleX(1);
}
.material > .hint {
  position: absolute;
  font-size: 0.75rem;
  color: gray;
  left: 1rem;
  user-select: none;
}
.material > input[type="number"] {
  appearance: textfield;
  -webkit-appearance: textfield;
}
.material > input[type="file"] {
  cursor: pointer;
}
.material > input:user-invalid:not(:placeholder-shown) ~ .hint {
  color: transparent;
}
.material > input:user-invalid ~ .hint::before,
.material > select:user-invalid ~ .hint::before {
  content: "Invalid";
  color: red;
}
.material > input:not(:focus):user-invalid ~ label,
.material > select:not(:focus):user-invalid ~ label {
  color: red;
}
.material > input:not(:focus):user-invalid ~ .highlight,
.material > select:not(:focus):user-invalid ~ .highlight {
  background-color: red;
  transform: scaleX(1);
  height: 1px;
}
.material-textarea {
  position: absolute;
  top: 0;
  width: 100%;
}
.material-textarea > div {
  box-sizing: border-box;
  width: 100%;
  padding: 1.25rem 1rem 0.375rem;
}
.material-extended {
  display: flex;
  background-color: lightgray;
  border-radius: 4px 4px 0 0;
  margin: 0.5rem;
  flex-wrap: wrap;
  position: relative;
}
.material-extended > .material {
  margin: 0;
  flex-basis: 15rem;
  flex-grow: 2;
}
.material-extended > :last-child {
  flex-basis: 15rem;
  flex-grow: 1;
  font-size: 0.7rem;
  padding: 0 0.25rem;
  align-self: center;
}
.material-extended > .hint {
  position: absolute;
  font-size: 0.75rem;
  color: gray;
  left: 1rem;
  bottom: 0;
  transform: translateY(100%);
  user-select: none;
}
input[type="checkbox"] {
  margin: 0.5rem;
  width: 1.4rem;
  height: 1.4rem;
  align-self: center;
  flex-shrink: 0;
}
/*# sourceMappingURL=form.css.map */