@charset "UTF-8";
/* Media query breakpoints */
@font-face {
  font-display: swap;
  font-family: "Alaska Light";
  font-style: normal;
  font-weight: 300;
  src: url("/themes/custom/alphega_theme/assets/fonts/alaska/Alaska-Light.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "Alaska Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/themes/custom/alphega_theme/assets/fonts/alaska/Alaska-Regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "Alaska Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/themes/custom/alphega_theme/assets/fonts/alaska/Alaska-Medium.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "Alaska Semibold";
  font-style: normal;
  font-weight: 600;
  src: url("/themes/custom/alphega_theme/assets/fonts/alaska/Alaska-SemiBold.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "Alaska Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/themes/custom/alphega_theme/assets/fonts/alaska/Alaska-Bold.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-family: "icomoon";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/themes/custom/alphega_theme/assets/fonts/icomoon/icomoon.tff") format("tff"), url("/themes/custom/alphega_theme/assets/fonts/icomoon/icomoon.eot?") format("eot"), url("/themes/custom/alphega_theme/assets/fonts/icomoon/icomoon.woff") format("woff");
}
.c-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 730px;
  margin: 0 auto;
  padding: 24px;
}
@media (min-width: 576px) {
  .c-form {
    padding: 30px 40px;
  }
}
@media (min-width: 768px) {
  .c-form {
    gap: 30px;
    padding: 40px 60px;
  }
}
@media (min-width: 1200px) {
  .c-form {
    padding: 60px 100px;
  }
}
.c-form__title {
  font-size: 1.5rem;
  line-height: 1.875rem;
  letter-spacing: 0.0035rem;
}
@media (min-width: 768px) {
  .c-form__title {
    font-size: 1.75rem;
    line-height: 2.125rem;
  }
}
.c-form form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
}
@media (min-width: 768px) {
  .c-form form {
    gap: 20px;
  }
}
.c-form input, .c-form textarea {
  width: 100%;
  padding: 10px 20px 8px;
  border: 1px solid var(--primary-color-200);
  background-color: var(--white);
  color: var(--text);
  font-family: var(--regular);
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (min-width: 768px) {
  .c-form input, .c-form textarea {
    padding: 14px 30px 12px;
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
.c-form ::-moz-placeholder {
  color: var(--primary-color-200);
}
.c-form ::placeholder {
  color: var(--primary-color-200);
}
.c-form .js-form-type-textfield label,
.c-form .js-form-type-number label,
.c-form .js-form-type-email label,
.c-form .js-form-type-tel label,
.c-form .js-form-type-textarea label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.c-form .js-form-type-radio {
  display: flex;
  align-items: center;
  /* When checked, fill with green */
}
.c-form .js-form-type-radio input {
  margin-right: 10px;
  -moz-appearance: none;
       appearance: none; /* Remove default radio style */
  -webkit-appearance: none;
  padding: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 12px;
  cursor: pointer;
  position: relative;
  background-color: white;
  transition: background-color 0.2s, border-color 0.2s;
}
.c-form .js-form-type-radio input.form-radio:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.c-form .radios--wrapper,
.c-form .webform-checkboxes,
.c-form .webform-checkboxes-other {
  padding: 20px;
}
.c-form .js-webform-radios,
.c-form .js-webform-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-form .webform-type-checkbox {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 5px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--text);
}
.c-form .webform-type-checkbox label {
  width: calc(100% - 30px);
  font-family: var(--regular);
  font-size: 1rem;
  line-height: 1.5rem;
}
.c-form .webform-type-checkbox input {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--primary-color-200);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.c-form .webform-type-checkbox input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.c-form .webform-type-checkbox input:checked::after {
  content: "✔";
  position: absolute;
  color: var(--white);
  font-size: 0.875rem;
  line-height: 0.875rem;
  top: 3px;
  left: 4px;
}
.c-form .webform-type-checkbox .description {
  width: 100%;
  padding-left: 30px;
  font-family: var(--font-light);
  font-size: 0.875rem;
}
.c-form .webform-type-checkbox .description a {
  color: var(--primary-color);
}
.c-form .webform-type-checkbox .description a:hover {
  color: var(--text);
  text-decoration: none;
}
.c-form .form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.c-form .form-actions input {
  display: inline-flex;
  padding: 24px 15px;
  color: var(--white);
  font-family: var(--regular);
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.05625rem;
  text-decoration: none;
  transition: all var(--base-trans);
  cursor: pointer;
  background-color: var(--primary-color);
}
@media (min-width: 480px) {
  .c-form .form-actions input {
    padding: 24px 38px;
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 768px) {
  .c-form .form-actions input {
    padding: 20px 38px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 992px) {
  .c-form .form-actions input {
    padding: 24px 48px;
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.c-form .form-actions input:hover {
  background-color: var(--primary-color-750);
}
@media (min-width: 768px) {
  .c-form .form-actions input {
    width: auto;
  }
}

.block__form.bg-gray .c-form {
  background-color: var(--gray-100);
}

.block__form.bg-white .c-form {
  background-color: var(--white);
}

.block__form.bg-primary .c-form {
  background-color: var(--primary-color-100);
}
/*# sourceMappingURL=form.css.map */
