/* #### */
/*
@fontH4L: 16px e("/") 120% @secondaryFont;
@fontH4M: 12px e("/") 120% @secondaryFont;

@fontH5L: 16px e("/") 120% @secondaryFont;
@fontH5M: 12px e("/") 120% @secondaryFont;

@fontH6L: 16px e("/") 120% @secondaryFont;
@fontH6M: 12px e("/") 120% @secondaryFont;*/
label {
  display: block;
  cursor: pointer;
  margin-bottom: 20px;
  text-align: left;
}
@media print, screen and (min-width: 900px) {
  label {
    margin-bottom: 40px;
  }
}
label .label {
  font: 18px / 140% "brandon-grotesque-bold", "Arial", sans-serif;
  color: #ffffff;
  display: block;
  margin-bottom: 16px;
}
@media print, screen and (min-width: 900px) {
  label .label {
    font: 24px / 140% "brandon-grotesque-bold", "Arial", sans-serif;
  }
}
label .label a {
  color: #ffffff;
}
label .label.message {
  cursor: default;
  font: 18px / 140% "brandon-grotesque-regular", "Arial", sans-serif;
}
@media print, screen and (min-width: 900px) {
  label .label.message {
    font: 24px / 140% "brandon-grotesque-regular", "Arial", sans-serif;
  }
}
label .label.mb-0 {
  margin-bottom: 0;
}
label.checkbox {
  display: flex;
  flex-flow: row nowrap;
  gap: 16px;
  align-items: flex-start;
}
.label-group .label-title {
  color: #ffffff;
  text-align: left;
  font: 18px / 140% "brandon-grotesque-regular", "Arial", sans-serif;
}
@media print, screen and (min-width: 1400px) {
  .label-group .label-title {
    font: 24px / 140% "brandon-grotesque-regular", "Arial", sans-serif;
  }
}
.label-group .title-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
}
@media print, screen and (min-width: 518px) {
  .label-group .title-group {
    display: flex;
    gap: 40px;
  }
}
.label-group .title-group label {
  display: flex;
  flex-flow: row nowrap;
  gap: 8px;
  align-items: center;
}
.label-group .title-group label .label {
  font: 18px / 140% "brandon-grotesque-regular", "Arial", sans-serif;
  margin-bottom: 0;
}
@media print, screen and (min-width: 1400px) {
  .label-group .title-group label .label {
    font: 24px / 140% "brandon-grotesque-regular", "Arial", sans-serif;
  }
}
.address {
  display: flex;
  flex-flow: column nowrap;
  gap: 0;
  justify-content: space-between;
}
@media print, screen and (min-width: 650px) {
  .address {
    flex-flow: row nowrap;
    gap: 24px;
  }
}
.address .big {
  width: 100%;
}
.address .small {
  width: auto;
}
/*label {
    display: inline-block;
}*/
input,
select,
textarea {
  font: 24px / 100% "brandon-grotesque-regular", "Arial", sans-serif;
  border: none;
  outline: none;
  padding: 16px;
  width: 100%;
  display: block;
  color: #575757;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #575757;
  opacity: 1;
  font: 24px / 140% "brandon-grotesque-regular", "Arial", sans-serif;
}
@media print, screen and (min-width: 1400px) {
  input::placeholder,
  select::placeholder,
  textarea::placeholder {
    font: 32px / 140% "brandon-grotesque-regular", "Arial", sans-serif;
  }
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border: 1px solid #00005F;
}
input.error,
select.error,
textarea.error {
  border: 2px solid #FF0000;
}
input::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #575757;
  font: 24px / 140% "brandon-grotesque-regular", "Arial", sans-serif;
}
@media print, screen and (min-width: 1400px) {
  input::-ms-input-placeholder,
  select::-ms-input-placeholder,
  textarea::-ms-input-placeholder {
    font: 32px / 140% "brandon-grotesque-regular", "Arial", sans-serif;
  }
}
@media print, screen and (min-width: 1400px) {
  input,
  select,
  textarea {
    font: 32px / 100% "brandon-grotesque-regular", "Arial", sans-serif;
  }
}
input[type=radio],
input[type=checkbox] {
  height: 0;
  width: 0;
  position: absolute;
}
input[type=radio]:focus,
input[type=checkbox]:focus {
  border: none;
}
input[type=radio]:focus + .label:before,
input[type=checkbox]:focus + .label:before,
input[type=radio]:focus + .label:after,
input[type=checkbox]:focus + .label:after {
  border: 2px solid #00005F;
}
input[type=radio]:checked + .label:after,
input[type=checkbox]:checked + .label:after {
  opacity: 1;
}
input[type=radio] + .label,
input[type=checkbox] + .label {
  position: relative;
  padding-left: 32px;
}
input[type=radio] + .label:before,
input[type=checkbox] + .label:before,
input[type=radio] + .label:after,
input[type=checkbox] + .label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
}
input[type=radio] + .label:after,
input[type=checkbox] + .label:after {
  height: 8px;
  width: 8px;
  left: 6px;
  border: none;
  background-color: #00005F;
  opacity: 0;
}
input[type=radio] + .label.error:before,
input[type=checkbox] + .label.error:before {
  border: 2px solid #FF0000;
}
input[type=radio]:hover + .label:before {
  border-color: #00005F;
}
input[type=checkbox]:hover + .label:before {
  background-color: #ffffff;
}
input[type=checkbox]:hover + .label:after {
  opacity: 0.5;
}
input[type=checkbox]:checked + .label:before {
  background-color: #ffffff;
  border-color: #00005F;
}
input[type=checkbox]:checked + .label:after {
  opacity: 1;
}
input[type=checkbox] + .label {
  position: relative;
}
input[type=checkbox] + .label:before,
input[type=checkbox] + .label:after {
  border-radius: 2px;
  top: 0;
  left: 0;
  transform: none;
  border-color: #ffffff;
}
@media only screen and (min-width: 900px) {
  input[type=checkbox] + .label:before,
  input[type=checkbox] + .label:after {
    top: 0;
  }
}
input[type=checkbox] + .label:after {
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  background-image: url("../img/vectors/icon-check.svg");
  background-position: center;
  background-size: 16px auto;
  background-color: transparent;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 900px) {
  input[type=checkbox] + .label:after {
    top: 0;
  }
}
.errors {
  background-color: #fff;
  padding: 4px;
  margin: 40px 0;
  display: flex;
  flex-flow: column nowrap;
  gap: 8px;
}
.errors .error-message {
  color: #D70000;
  font: 24px / 140% "brandon-grotesque-bold", "Arial", sans-serif;
}
.captcha-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.captcha {
  margin: 32px auto;
  max-width: 832px;
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: center;
  gap: 8px;
}
@media only screen and (min-width: 900px) {
  .captcha {
    gap: 24px;
    margin: 56px auto;
  }
}
.captcha img {
  cursor: pointer;
  transition: transform 0.3s;
  border: 2px solid transparent;
  border-radius: 24px;
  width: 43.99px;
}
@media only screen and (min-width: 900px) {
  .captcha img {
    width: auto;
  }
}
.captcha img.selected {
  border: 2px solid #00005F;
}
.captcha img:hover {
  transform: rotate(-5deg);
}
/*# sourceMappingURL=form.css.map */