/* 1. Die normale (aufrechte) Version */
@font-face {
  font-family: 'Inter';
  src: url('/static/fonts/Inter/InterVariable.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* 2. Die kursive Version */
@font-face {
  font-family: 'Inter';
  src: url('/static/fonts/Inter/InterVariable-Italic.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: italic;
  /* Wichtig: Hier auf italic setzen */
  font-display: swap;
}
h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}
h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.25;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}
h4 {
  font-size: 1.25rem;
}
p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
body ul {
  padding: 0 18px;
}
body ul li {
  font-weight: 400;
  line-height: 1.6;
}
form ::-webkit-input-placeholder {
  font-size: 1.1rem;
  font-family: inherit;
  color: #84754d;
}
form ::-moz-placeholder {
  font-size: 1.1rem;
  font-family: inherit;
  color: #84754d;
  opacity: 1;
}
/* firefox 19+ */
form :-ms-input-placeholder {
  font-size: 1.1rem;
  font-family: inherit;
  color: #84754d;
}
/* ie */
form :-moz-placeholder {
  font-size: 1.1rem;
  font-family: inherit;
  color: #84754d;
  opacity: 1;
}
form ::placeholder {
  opacity: 0;
}
form#contact-form,
form#signup_form,
form#login_form,
form#password_reset,
form#password_change {
  margin: 3rem 0 3rem 0;
  max-width: 1500px;
}
form#contact-form legend,
form#signup_form legend,
form#login_form legend,
form#password_reset legend,
form#password_change legend {
  display: none;
}
form#contact-form fieldset,
form#signup_form fieldset,
form#login_form fieldset,
form#password_reset fieldset,
form#password_change fieldset {
  border: none;
}
form#contact-form input,
form#signup_form input,
form#login_form input,
form#password_reset input,
form#password_change input,
form#contact-form textarea,
form#signup_form textarea,
form#login_form textarea,
form#password_reset textarea,
form#password_change textarea,
form#contact-form select,
form#signup_form select,
form#login_form select,
form#password_reset select,
form#password_change select {
  font-size: 18px;
  font-weight: 400;
  font-family: inherit;
  border: 2px solid #2a2c2c;
  border-radius: 5px;
  color: #2a2c2c;
  outline: none;
  padding-top: 1.1rem;
}
form#contact-form input:not(.dataprotection),
form#signup_form input:not(.dataprotection),
form#login_form input:not(.dataprotection),
form#password_reset input:not(.dataprotection),
form#password_change input:not(.dataprotection),
form#contact-form select,
form#signup_form select,
form#login_form select,
form#password_reset select,
form#password_change select {
  display: block;
  margin-bottom: 10px;
  padding-left: 15px;
  width: 100%;
  height: 3.75rem;
  box-sizing: border-box;
}
form#contact-form input:not(.dataprotection):focus,
form#signup_form input:not(.dataprotection):focus,
form#login_form input:not(.dataprotection):focus,
form#password_reset input:not(.dataprotection):focus,
form#password_change input:not(.dataprotection):focus,
form#contact-form select:not(.error):focus,
form#signup_form select:not(.error):focus,
form#login_form select:not(.error):focus,
form#password_reset select:not(.error):focus,
form#password_change select:not(.error):focus,
form#contact-form textarea:not(.error):focus,
form#signup_form textarea:not(.error):focus,
form#login_form textarea:not(.error):focus,
form#password_reset textarea:not(.error):focus,
form#password_change textarea:not(.error):focus {
  border-color: #2a2c2c;
}
form#contact-form textarea,
form#signup_form textarea,
form#login_form textarea,
form#password_reset textarea,
form#password_change textarea {
  width: 100%;
  height: 100px;
  margin-bottom: 6px;
  padding: 10px 0 0px 15px;
  line-height: 1.3;
  box-sizing: border-box;
  overflow: hidden;
  padding-top: 1.5rem;
}
form#contact-form select,
form#signup_form select,
form#login_form select,
form#password_reset select,
form#password_change select,
form#contact-form input:not(.dataprotection),
form#signup_form input:not(.dataprotection),
form#login_form input:not(.dataprotection),
form#password_reset input:not(.dataprotection),
form#password_change input:not(.dataprotection),
form#contact-form textarea,
form#signup_form textarea,
form#login_form textarea,
form#password_reset textarea,
form#password_change textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
}
#contact-form {
  grid-column-start: 2;
  grid-column-end: 4;
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 0.5rem;
}
#contact-form .input.company {
  grid-column-start: 1;
  display: flex;
}
#contact-form .input.first_name {
  grid-column-start: 1;
}
#contact-form .input.last_name {
  grid-column-start: 2;
}
#contact-form .input.message {
  grid-column-start: 1;
  grid-column-end: 3;
}
#contact-form .input.message label {
  width: auto;
}
#contact-form .input.dataprotection,
#contact-form .dataprotection_text {
  grid-column-start: 1;
  grid-column-end: 3;
  font-size: 18px;
  font-weight: 400;
}
#contact-form .dataprotection_text {
  margin-top: 11px;
  max-width: 800px;
  font-size: 16px;
}
#contact-form .form-actions {
  grid-column-start: 1;
  margin-top: 2rem;
}
/* remove dotted line shown at click at select in FF */
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
/* hide browser-styling (arrow) in IE10 */
select::-ms-expand {
  display: none;
}
.input {
  position: relative;
}
#formarrow {
  border-left: 2px solid #2a2c2c;
  height: 2.4em;
  right: 0;
  top: 0;
  width: 2em;
  position: absolute;
  pointer-events: none;
}
#formarrow::after {
  border-right: 0.15em solid #2a2c2c;
  border-top: 0.15em solid #2a2c2c;
  content: "";
  height: 0.5em;
  margin-left: 12px;
  margin-top: 15px;
  position: absolute;
  transform: rotate(135deg);
  width: 0.5em;
}
select:not(.add-on):focus + #arrow,
select:not(.error):focus + #arrow::after {
  border-color: #2a2c2c;
}
select.error + #arrow,
select.error + #arrow::after {
  border-color: #2a2c2c;
}
form ::-webkit-input-placeholder {
  font-size: 18px;
  font-weight: 400;
  font-family: inherit;
  border-radius: 0;
  box-sizing: border-box;
}
form select::-ms-expand {
  /* for IE 11 */
  display: none;
  background: transparent;
}
form select {
  cursor: pointer;
}
#contact-form li,
#member-form li {
  list-style-type: none;
}
/*
.btn-primary {
    display: inline-block;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 2rem;
	
    font-size: 0.95rem;
    font-family: inherit;
    letter-spacing: 0.04em;
    border-radius: @border-radius;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    margin: 0px;
    line-height: normal !important;
	min-width: 12rem;

    transition: color .5s linear, background .5s linear;

	background: @dark-color;
    color: @light-color;
    border-color: @light-color;

    &:hover {
        text-decoration: underline;
    }
}
*/
button {
  font-size: 14px;
  text-transform: uppercase;
}
.help-inline {
  margin-bottom: 15px;
  margin-top: -5px;
  display: block;
  color: red;
  font-family: inherit;
  padding-left: 3px;
}
#Dataprotection {
  float: left;
  margin-top: 4px;
}
#datenschutz {
  margin: 1rem 0 1rem 3rem;
  max-width: 450px;
  font-size: 1.25rem;
}
/* design checkboxes */
input[type='checkbox'] {
  display: none;
}
input[type="checkbox"]:checked ~ div > label::before {
  content: '';
  position: absolute;
  border-right: 3px solid #2a2c2c;
  border-bottom: 3px solid #2a2c2c;
  border-left: none;
  border-top: none;
  width: 0.6rem;
  height: 1rem;
  transform: rotate(35deg);
  border-color: #2a2c2c;
  margin-left: 0.4rem;
}
input[type="checkbox"] ~ div > label {
  border: 2px solid #2a2c2c;
  border-radius: 5px;
  position: absolute;
  width: 1.5em !important;
  height: 1.5em;
  margin-right: 2px;
  cursor: pointer;
  top: 10px;
}
div .dataprotection {
  margin-top: 0.5rem;
}
div .dataprotection .floating-label {
  position: relative;
}
.dataprotection_text,
.member_text {
  display: block;
  min-width: 250px;
  margin-left: 3rem;
  margin-top: 0.5rem;
}
.member {
  margin-top: 2rem;
}
.member_text {
  margin-bottom: 1.25rem;
}
.dataprotection ~ .floating-label {
  font-size: 1.1rem !important;
  left: 0 !important;
}
.floating-label {
  font-size: 18px;
  font-weight: 400;
}
.floating-label {
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  transition: 0.2s ease all;
}
.errorlist {
  color: #b30000 !important;
  padding-left: 1rem;
  list-style: none;
  grid-column-start: 1;
}
.is-invalid,
.is-invalid + .floating-label > label {
  border-color: #b30000 !important;
}
.forgot_password {
  margin-top: 1rem;
  margin-left: 0.75rem;
}
.forgot_password a {
  color: #b30000;
}
input:focus ~ .floating-label,
input:not(:placeholder-shown) ~ .floating-label,
textarea:focus ~ .floating-label,
textarea:not(:placeholder-shown) ~ .floating-label {
  top: 5px;
  bottom: 10px;
  left: 1.1rem;
  font-size: 12px;
  opacity: 1;
}
input:focus ~ .floating-label,
input:not(::-webkit-input-placeholder) ~ .floating-label,
textarea:focus ~ .floating-label,
textarea:not(::-webkit-input-placeholder) ~ .floating-label {
  top: 5px;
  bottom: 10px;
  left: 1.1rem;
  font-size: 12px;
  opacity: 1;
}
input:focus ~ .floating-label,
input:not(:-ms-input-placeholder) ~ .floating-label,
textarea:focus ~ .floating-label,
textarea:not(:-ms-input-placeholder) ~ .floating-label {
  top: 5px;
  bottom: 10px;
  left: 1.1rem;
  font-size: 12px;
  opacity: 1;
}
input:focus ~ .floating-label {
  top: 5px;
  bottom: 10px;
  left: 1.1rem;
  font-size: 12px;
  opacity: 1;
}
span.filled {
  top: 5px;
  bottom: 10px;
  left: 1.1rem;
  font-size: 12px;
  opacity: 1;
}
/*
input:not(::-ms-input-placeholder) ~ .floating-label {
	top: 5px;
  	bottom: 10px;
  	left: 1.1rem;
  	font-size: 12px;
  	opacity: 1;
}
input:not(::-webkit-input-placeholder) ~ .floating-label {
	top: 5px;
  	bottom: 10px;
  	left: 1.1rem;
  	font-size: 12px !important;
  	opacity: 1;
} */
textarea:focus ~ .floating-label {
  top: 5px;
  bottom: 10px;
  left: 1.1rem;
  font-size: 12px;
  opacity: 1;
}
textarea:not(::-ms-input-placeholder) ~ .floating-label {
  top: 5px;
  bottom: 10px;
  left: 1.1rem;
  font-size: 12px;
  opacity: 1;
}
.membernumber {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.25s linear, opacity 0.5s ease-out, padding 0.25s ease-in;
}
.membernumber.checked {
  max-height: 100px;
  opacity: 1;
  padding-bottom: 1rem;
}
#contact-form label {
  width: auto;
}
/***** only mobile *****/
@media only screen and (max-width: 992px) {
  /* disable transition for button */
  form#contact-form,
  form#member-form,
  form#signup_form,
  form#login_form,
  form#password_reset {
    max-width: 350px;
  }
}
/***** old small phones (e.g. iphone5)) *****/
@media only screen and (max-width: 21rem) {
  form#signup_form,
  form#login_form,
  form#password_reset {
    max-width: 300px;
  }
}
/***** smartphone landscape *****/
/***** tablet landscape *****/
/***** desktop *****/
@media only screen and (min-width: 992px) {
  form fieldset {
    padding: 0;
  }
  .member_text {
    margin-top: 2.5rem;
  }
}
