.form {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.form-block {
  width: 100%;
  position: relative;
  margin-top: 7rem;
}
.form-block-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-block__img {
  width: 50%;
  text-align: center;
}
.form-block__img img {
  width: 80%;
  margin: 0 auto;
}
.form-block .form {
  flex-direction: column;
  width: 45%;
  margin-top: 2rem;
  margin-left: 0;
}
.form-col {
  width: 45%;
}
.form h4 {
  text-transform: none;
  margin-bottom: 1.5rem;
}
.form-bottom {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form textarea:-webkit-autofill,
.form textarea:-webkit-autofill:hover,
.form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #000000;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: background-color 5000s ease-in-out 0s;
}

.form__group {
  width: 100%;
  position: relative;
  margin-bottom: 2.5rem;
}

.form__input,
.form__input:focus,
.form__textarea,
.form__textarea:focus,
.form__select,
.form__select:focus {
  width: 100%;
  font-family: inherit;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 20px;
  color: #000000;
  background-color: #fff;
  border-bottom: 1px solid #000000;
  border-radius: 0;
  padding: 0.6rem 1rem;
}

.form__input::placeholder,
.form__textarea::placeholder,
.form__select::placeholder {
  color: #9c9c9c;
}

.form__label {
  width: 0;
  height: 0;
  color: transparent;
  opacity: 0;
  display: none;
}

form .form__submit {
  position: relative;
  font-family: inherit;
  padding: 0.7rem 1.5rem;
  margin-left: auto;
  background-color: transparent;
  border: 2px solid #80bb2e;
  color: #000000;
  font-size: 0.87rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s;
}
form .form__submit:hover, form .form__submit:focus {
  cursor: pointer;
  color: #ffffff;
  background-color: #80bb2e;
}

.form__select,
.form__select:focus {
  position: relative;
}

.form__select:hover,
.form__select:focus {
  cursor: pointer;
}

.form__select::-ms-expand {
  display: none;
}

.form__select:focus {
  color: #000000;
}

.form__checkbox > input[type=checkbox]:checked,
.form__checkbox > input[type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.form__checkbox {
  position: relative;
  width: 60%;
  margin-left: 2.5rem;
  margin-right: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.form__checkbox > input[type=checkbox]:checked + label,
.form__checkbox > input[type=checkbox]:not(:checked) + label {
  position: relative;
  font-size: 0.8rem;
  cursor: pointer;
}

.form__checkbox a:hover,
.form__checkbox a:focus {
  text-decoration: underline;
}

.form__checkbox > input[type=checkbox]:checked + label::before,
.form__checkbox > input[type=checkbox]:not(:checked) + label::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-color: #ffffff;
}

.form__checkbox > input[type=checkbox]:checked + label::after,
.form__checkbox > input[type=checkbox]:not(:checked) + label::after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form__checkbox > input[type=checkbox]:checked + label:after,
.form__checkbox > input[type=checkbox]:not(:checked) + label:after {
  left: -1.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: url(../img/icons/adv.svg) no-repeat center/contain;
}

.form__checkbox > input[type=checkbox]:not(:checked) + label:after {
  opacity: 0;
}

.form__checkbox > input[type=checkbox]:checked + label:after {
  opacity: 1;
}

.filter-form {
  display: flex;
}
.filter-form p {
  margin-right: 1.8rem;
}
.filter-form label {
  position: relative;
  display: flex;
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  user-select: none;
}
.filter-form label:not(:first-of-type) {
  margin-left: 1.3rem;
}
.filter-form label span {
  display: inline-flex;
  align-items: center;
  user-select: none;
  transition: all 0.3s;
}
.filter-form label span::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 50%;
  margin-right: 0.5em;
  background-color: #ffffff;
  transition: all 0.3s;
  outline: 8px solid #ffffff;
  outline-offset: -8px;
  transition: all 0.25s;
}
.filter-form label:hover, .filter-form label:focus {
  cursor: pointer;
}
.filter-form input[type=radio] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.filter-form input[type=radio]:not(:checked) + span:hover::before, .filter-form input[type=radio]:not(:checked) + span:focus::before {
  cursor: pointer;
  background-color: rgba(128, 187, 46, 0.5);
}
.filter-form input[type=radio]:active + span::before {
  background-color: #80bb2e;
}
.filter-form input[type=radio]:checked + span::before {
  background-color: #80bb2e;
}