input[type="date"],
input[type="datetime-local"],
input[type="email"],
input[type="file"] + label,
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"] {
  width: 100%;
  height: 2.8125rem;
  line-height: 2.8125rem;
  padding: 0 1rem;
  /*border-radius: 0.75rem;*/
  border: none;
  border: 2px solid transparent;
  background: white;
  color: black;
  font-size: 1.125rem;
}
input[type="date"]:placeholder,
input[type="datetime-local"]:placeholder,
input[type="email"]:placeholder,
input[type="file"] + label:placeholder,
input[type="month"]:placeholder,
input[type="number"]:placeholder,
input[type="password"]:placeholder,
input[type="search"]:placeholder,
input[type="tel"]:placeholder,
input[type="text"]:placeholder,
input[type="time"]:placeholder,
input[type="url"]:placeholder,
input[type="week"]:placeholder {
  color: var(--text-muted);
}
input[type="date"]:active,
input[type="date"]:focus,
input[type="datetime-local"]:active,
input[type="datetime-local"]:focus,
input[type="email"]:active,
input[type="email"]:focus,
input[type="file"] + label:active,
input[type="file"] + label:focus,
input[type="month"]:active,
input[type="month"]:focus,
input[type="number"]:active,
input[type="number"]:focus,
input[type="password"]:active,
input[type="password"]:focus,
input[type="search"]:active,
input[type="search"]:focus,
input[type="tel"]:active,
input[type="tel"]:focus,
input[type="text"]:active,
input[type="text"]:focus,
input[type="time"]:active,
input[type="time"]:focus,
input[type="url"]:active,
input[type="url"]:focus,
input[type="week"]:active,
input[type="week"]:focus {
  outline: none;
  border-color: var(--main);
}
input[type="file"]:active + label,
input[type="file"]:focus + label {
  outline: none;
  border-color: var(--main);
}
input[type="file"] + label {
  cursor: pointer;
  line-height: calc(2.8125rem - 4px);
  transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
  input[type="file"] + label:hover {
    background: var(--background-secondary);
  }
}
input[type="color"] {
  width: 2.8125rem;
  height: 2.8125rem;
  border: 2px solid transparent;
  border-radius: 0.25rem;
  outline: none;
  vertical-align: middle;
  background: var(--background-primary);
  transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
@media (hover: hover) {
  input[type="color"]:hover {
    background: var(--background-secondary);
  }
}
input[type="color"]:active,
input[type="color"]:focus {
  outline: none;
  border-color: var(--main);
}
input[type="number"] {
  width: 7.5rem;
  text-align: center;
}
input[type="text"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
input[type="text"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
textarea {
  background: white;
  width: 100%;
  min-height: 10rem;
  line-height: 1.4;
  padding: 0.75rem 1rem;
 /* border-radius: 0.75rem;*/
  border: none;
  border: 2px solid transparent;
  color: black;
  font-size: 1.125rem;
  resize: vertical;
}
textarea:active,
textarea:focus {
  outline: none;
  border-color: var(--main);
}
.btn,
button:not(.pswp__button),
input[type="button"],
input[type="reset"],
input[type="submit"] {
  font-family: "Bebas Neue Book", sans-serif;
  display: inline-block;
  background: white;
  height: 2.8125rem;
  line-height: 2.8125rem;
  padding: 0 1.5rem;
  /*border-radius: 0.75rem;*/
  border: none;
  border: 1px solid transparent;
  font-size: 1.125rem;
  color: black;
  text-decoration: none;
  box-shadow: var(--depth-2);
  cursor: pointer;
  transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
  .btn:hover,
  button:not(.pswp__button):hover,
  input[type="button"]:hover,
  input[type="reset"]:hover,
  input[type="submit"]:hover {
    background-color: var(--main-light);
    background: #DDAA44;
    box-shadow: var(--depth-3);
    transform: translateY(-1px);
  }
}
.btn:active,
button:not(.pswp__button):active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  background-color:#DDAA44 ;
  background: #DDAA44;
  outline: none;
  box-shadow: var(--depth-1);
  transform: translateY(1px);
}
.btn:focus-visible,
button:not(.pswp__button):focus-visible,
input[type="button"]:focus-visible,
input[type="reset"]:focus-visible,
input[type="submit"]:focus-visible {
  outline: 1px solid var(--main);
}
.btn:disabled,
button:not(.pswp__button):disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled,
input[type="submit"]:disabled {
  cursor: not-allowed;
  /*opacity: 0.6;*/
}
@media (hover: hover) {
  .btn:disabled:hover,
  button:not(.pswp__button):disabled:hover,
  input[type="button"]:disabled:hover,
  input[type="reset"]:disabled:hover,
  input[type="submit"]:disabled:hover {
    background: #DDAA44 ;
    box-shadow: var(--depth-2);
    transform: translateY(0);
  }
}
.btn:disabled:active,
.btn:disabled:focus,
button:not(.pswp__button):disabled:active,
button:not(.pswp__button):disabled:focus,
input[type="button"]:disabled:active,
input[type="button"]:disabled:focus,
input[type="reset"]:disabled:active,
input[type="reset"]:disabled:focus,
input[type="submit"]:disabled:active,
input[type="submit"]:disabled:focus {
  box-shadow: var(--depth-2);
  transform: translateY(0);
}
.btn .text-wrap,
button:not(.pswp__button) .text-wrap,
input[type="button"] .text-wrap,
input[type="reset"] .text-wrap,
input[type="submit"] .text-wrap {
  overflow: hidden;
  display: inline-block;
  transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn.loading,
button:not(.pswp__button).loading,
input[type="button"].loading,
input[type="reset"].loading,
input[type="submit"].loading {
  position: relative;
  overflow: hidden;
}
.btn.loading:before,
button:not(.pswp__button).loading:before,
input[type="button"].loading:before,
input[type="reset"].loading:before,
input[type="submit"].loading:before {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 4px solid #fff;
  border-bottom: 4px solid transparent;
  animation: loading 0.8s infinite linear;
}
.btn.loading .text-wrap,
button:not(.pswp__button).loading .text-wrap,
input[type="button"].loading .text-wrap,
input[type="reset"].loading .text-wrap,
input[type="submit"].loading .text-wrap {
  opacity: 0;
}
.btn-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.btn-group + .btn-group {
  margin-top: 1rem;
}
.btn-group .btn {
  border-radius: 0;
}
.btn-group .btn:first-child {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}
.btn-group .btn:last-child {
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.form-field .check {
  display: flex;
  flex-direction: row;
}
.form-field .check input[type=checkbox] {
  margin-right: 1rem;
  flex-shrink: 0;
}
input[type=checkbox]:checked {
  --b: black;
}
input[type=checkbox]:not(.switch) {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
}
input[type=checkbox] {
  display: inline-block;
  vertical-align: middle;
  top: -2px;
  position: relative;
  margin: 0;
  height: 2rem;
  width: 2rem;
  outline: none;
  border: 2px solid var(--background-tertiary);
  background:red;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.25,0.46,0.45,0.94),border-color 0.3s cubic-bezier(0.25,0.46,0.45,0.94),box-shadow 0.2s cubic-bezier(0.25,0.46,0.45,0.94);
}
[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

button, input {
  overflow: visible;
}
input[type=checkbox]:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94),opacity 0.2s cubic-bezier(0.25,0.46,0.45,0.94);
}
input[type=checkbox]:not(.switch):checked {
  --r: 43deg;
  --o: 1;
}
input[type=checkbox]:not(.switch):after {
  width: 0.5rem;
  height: 1rem;
  border: 0.125rem solid var(--background-primary);
  border-top: 0;
  border-left: 0;
  left: 0.6rem;
  /* top: 0.1rem; */
  transform: rotate(var(--r,20deg));
  opacity: var(--o,0);
}


input[type=checkbox]:not(.switch):after {
  width: 0.5rem;
  height: 1rem;
  border: 0.125rem solid var(--background-primary);
  border-top: 0;
  border-left: 0;
  left: 0.6rem;
  top: 0.1rem;
  transform: rotate(var(--r,20deg));
  opacity: var(--o,0);
}

input[type=checkbox]:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94),opacity 0.2s cubic-bezier(0.25,0.46,0.45,0.94);
}
input[type=checkbox]:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94),opacity 0.2s cubic-bezier(0.25,0.46,0.45,0.94);
}
input[type=checkbox]:not(.switch):checked {
  --r: 43deg;
  --o: 1;
}
input[type=checkbox]:checked {
  --b: black;
}
#sweetJusticeMail,
.sweet-justice {
  display: none;
}
form {
  font-family: "Bebas Neue Book", sans-serif;

  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 0;
}
form > .form-field:last-child {
  margin-bottom: 0;
}
form .select.required + label,
form input[required]:not(#dsgvo):not([type="file"]) + label,
form select[required] + label,
form textarea[required] + label {
  position: relative;
  text-align: start;
}
form .select.required + label:after,
form input[required]:not(#dsgvo):not([type="file"]) + label:after,
form select[required] + label:after,
form textarea[required] + label:after {
  content: "*";
  margin-left: 0.625rem;
  color: var(--text--muted);
}
form input[type="file"] + label + .alt-label {
  position: relative;
}
form input[type="file"][required] + label + .alt-label:after {
  content: "*";
  margin-left: 0.625rem;
  color: var(--text--muted);
}
@media only screen and (min-width: 1200px) {
  form .btn,
  form button,
  form input[type="submit"] {
    align-self: flex-end;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1200px) {
  .form-group {
    flex-direction: row;
  }
}
.form-group > .form-field {
  flex: 1;
  padding-right: 0;
}
.form-group > .form-field + .form-field {
  margin-top: 1rem;
}
@media only screen and (min-width: 1200px) {
  .form-group > .form-field + .form-field {
    margin-left: 1.25rem;
    margin-top: 0;
  }
}
.form-field {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.form-field .alt-label,
.form-field label {
  font-family: "Bebas Neue Book", sans-serif;

  margin-bottom: 0.5rem;
  color: var(--text-normal);
  font-size: 1.125rem;
  font-weight: var(--fw-regular);
}
.form-field .custom-select + label,
.form-field .select + label,
.form-field input:not(#dsgvo):not([type="file"]) + label,
.form-field textarea + label {
  order: -1;
  margin-left: 1rem;
}
.form-field input[type="file"] + label + .alt-label {
  order: -1;
  margin-left: 1rem;
}
.form-field .check {
  display: flex;
  flex-direction: row;
}
.form-field .check input[type="checkbox"] {
  margin-right: 1rem;
  flex-shrink: 0;
}
.form-field .check label,
.form-field .check label p {
  font-family: 'Comfortaa';

  font-size: 1rem;
  color: black;
  cursor: pointer;
  font-weight: var(--fw-light);
  margin: 0;
}
.form-field .check label a,
.form-field .check label p a {
  color: white;
  text-decoration: none;

}
.form-field--row {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.form-field--row .btn,
.form-field--row button,
.form-field--row input[type="submit"] {
  margin-left: auto;
}
.form-field--row input[type="checkbox"],
.form-field--row input[type="radio"] {
  top: 0;
}
.form-field--row label {
  margin-right: 0.625rem;
  margin-bottom: 0;
}
.form-field--row > * {
  margin-right: 0;
}
.form-field--file > input[type="file"] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.form-field.invalid input[type="date"],
.form-field.invalid input[type="datetime-local"],
.form-field.invalid input[type="email"],
.form-field.invalid input[type="file"] + label,
.form-field.invalid input[type="month"],
.form-field.invalid input[type="number"],
.form-field.invalid input[type="password"],
.form-field.invalid input[type="search"],
.form-field.invalid input[type="tel"],
.form-field.invalid input[type="text"],
.form-field.invalid input[type="time"],
.form-field.invalid input[type="url"],
.form-field.invalid input[type="week"],
.form-field.invalid textarea {
  border-color: var(--error);
}
fieldset.form-field {
  border: 1px solid var(--main);
  border-radius: 0.25rem;
  padding: 0.35em 1rem 0;
}
fieldset.form-field legend {
  margin-bottom: 0.5rem;
  color: var(--text-normal);
  font-size: 1.125rem;
  font-weight: var(--fw-regular);
  font-variation-settings: "wght" var(--fw-regular), "slnt" 0;
}
fieldset.form-field .options {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  fieldset.form-field .options {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
fieldset.form-field .option {
  width: 100%;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1024px) {
  fieldset.form-field .option {
    width: 50%;
  }
}
fieldset.form-field input[type="checkbox"] + label {
  cursor: pointer;
}
.contact p a {
 display: flex; 
    padding-top: 0rem; 
  }