input[type=text],
input[type=email],
input[type=url],
input[type=number],
input[type=tel],
textarea {
  color: #000;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  padding: 24.5px 22px 9.5px;
  outline: none;
  background: transparent;
  width: 100%;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=number]:focus,
input[type=tel]:focus,
textarea:focus {
  color: #000;
  outline: none;
}

select {
  border: 1px solid #F0F0F0;
}

textarea {
  width: 100%;
  min-width: 100%;
  min-height: 64px;
}

.formBlock {
  margin: 0 0 calc(1.525rem + 2.75vw);
}
@media (min-width: 1440px) {
  .formBlock {
    margin: 0 0 4rem;
  }
}

.formWrap {
  margin: auto;
}
.formWrap__text {
  margin-bottom: calc(1.375rem + 1.25vw);
}
@media (min-width: 1440px) {
  .formWrap__text {
    margin-bottom: 2.5rem;
  }
}
.formWrap__text h2:last-child,
.formWrap__text h3:last-child,
.formWrap__text h4:last-child,
.formWrap__text h5:last-child,
.formWrap__text p:last-child {
  margin-bottom: 0;
}

.singleFieldWrap {
  margin-bottom: calc(1.275rem + 0.25vw);
  position: relative;
  width: 100%;
}
@media (min-width: 1440px) {
  .singleFieldWrap {
    margin-bottom: 1.5rem;
  }
}
.singleFieldWrap__title {
  font-size: 14px;
  padding-bottom: 6px;
  display: block;
}
.singleFieldWrap--half {
  max-width: calc(50% - 12px);
  margin-right: 12px;
}
.singleFieldWrap--half + .singleField--half {
  margin-left: 12px;
  margin-right: 0;
}
.singleFieldWrap--half + .singleField--half + .singleField--half {
  margin-right: 12px;
  margin-left: 0;
}
.singleFieldWrap--half + .singleField--half + .singleField--half + .singleField--half {
  margin-left: 12px;
  margin-right: 0;
}

.singleField {
  position: relative;
  width: 100%;
  display: inline-flex;
}
.singleField__label {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(24px, 19px);
  cursor: text;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #000;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.44;
  transition: all 0.3s ease;
}
.singleField--up .singleField__label {
  pointer-events: none;
  transform: translate(24px, 9.5px);
  font-size: 13px;
  font-weight: 500;
}
.singleField--condition label {
  display: flex;
}
.singleField--condition label p {
  font-size: 16px;
}
.singleField--condition label svg {
  top: 4px;
}
.singleField--condition label input {
  margin-right: 12px;
  min-width: 21px;
  min-height: 21px;
  top: 4px;
}
.singleField--list {
  display: inline-flex;
  flex-direction: column;
}
.singleField--list label {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.singleField--list label input {
  margin-right: 12px;
}
.singleField--list span {
  user-select: none;
}
.singleField--list .singleField__label {
  position: relative;
  transform: none !important;
  margin: 0 0 12px;
  font-size: 18px !important;
  font-weight: 300 !important;
}

.formEl {
  display: flex;
  flex-flow: row wrap;
}
.formEl__actions {
  width: 100%;
  position: relative;
  margin-top: 16px;
}
.formEl__actions__button {
  width: 100%;
  transition: all 0.3s ease;
}
.formEl__actions__success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.formEl__belowText p {
  font-size: 14px;
  color: #777;
}
.formEl--submitted .formEl__actions__button {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}
.formEl--submitted .formEl__actions__success {
  transform: translateY(0px);
  opacity: 1;
}
.formEl button {
  padding: 12px 24px;
  min-width: 140px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox {
  --background: #fff;
  --border: #d1d6ee;
  --border-hover: #bbc1e1;
  --border-active: var(--main-color);
  --tick: #fff;
  position: relative;
  cursor: pointer;
}
.checkbox input,
.checkbox svg {
  width: 21px;
  height: 21px;
  display: block;
}
.checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  outline: none;
  background: var(--background);
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
  transition: box-shadow 0.3s;
  box-shadow: inset 0 0 0 var(--s, 1px) var(--b, var(--border));
}
.checkbox input:hover {
  --s: 2px;
  --b: var(--border-hover);
}
.checkbox input:checked {
  --b: var(--border-active);
}
.checkbox svg {
  pointer-events: none;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--stroke, var(--border-active));
  position: absolute;
  top: 2px;
  left: 0;
  width: 21px;
  height: 21px;
  transform: scale(var(--scale, 1)) translateZ(0);
}
.checkbox.bounce {
  --stroke: var(--tick);
}
.checkbox.bounce input:checked {
  --s: 11px;
}
.checkbox.bounce input:checked + svg {
  animation: bounce 0.4s linear forwards 0.2s;
}
.checkbox.bounce svg {
  --scale: 0;
}

@keyframes bounce {
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.radio span {
  margin-left: 22px;
}
.radio .radioBox {
  width: 21px;
  height: 21px;
  border: 1px solid #d1d6ee;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.radio .radioBox:before {
  position: absolute;
  content: "";
  opacity: 0;
  background: var(--main-color);
  border-radius: 100%;
  width: 15px;
  height: 15px;
  left: 2.5px;
  top: 2.5px;
  bottom: 2.5px;
  margin: auto;
  transition: opacity 0.3s ease;
}
.radio input {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  border: none;
  outline: none;
}
.radio input:checked + .radioBox:before {
  opacity: 1;
}

.section .formBlock .container {
  padding: 0;
}

.file-upload-label {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: var(--main-color);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.file-upload-filename {
  color: #666;
  font-size: 1rem;
}

.singleField__label--img {
  display: none;
}

/*# sourceMappingURL=form.css.map */
