.modal * {
  font-family: "Inter", sans-serif;
}
.modal .contacts_box .checkboxs {
  gap: 6px;
}
.modal .contacts_box .checkboxs .checkbox label {
  padding: 10px 12px;
  height: 38px;
  gap: 6px;
  transition: all 0.2s;
  line-height: 130%;
  font-family: "Inter", sans-serif;
}
.modal .contacts_box .checkboxs .checkbox input:not(:checked) {
  cursor: pointer;
}
.modal .contacts_box .checkboxs .checkbox input:not(:checked) + label {
  cursor: pointer;
}
.modal .contacts_box .checkboxs .checkbox input:not(:checked):hover + label {
  background-color: rgba(15, 17, 19, 0.07);
}
.modal .contacts_box .checkboxs .checkbox.max input:checked + label {
  background: linear-gradient(90deg, #40c2fd 0%, #3653ec 50%, #823ee3 100%);
}
.modal .btn_submit input[type=submit] {
  font-family: "Inter", sans-serif;
}
.modal .modal__bg.right {
  align-items: end;
}
.modal .modal__bg.right .request__hint {
  top: revert-rule;
}
.modal .modal__bg.right .request__hint .logo {
  margin: 0;
}
.modal .modal__bg.right .request__hint .contacts {
  padding: 0;
}
.modal .modal__bg.right .request__hint .contacts .max {
  display: block;
}
.modal:has(.a_b_test_form) .input__wrap input {
  padding: 0;
  height: 100%;
}
.modal:has(.a_b_test_form) .desc {
  margin: 0;
  margin-bottom: 12px;
  font-size: 16px;
}
.modal:has(.a_b_test_form) .contacts_box__hidden {
  display: none;
}
.modal:has(.a_b_test_form) .contacts_box__hidden .checkboxs {
  flex-wrap: wrap;
  display: flex;
  gap: 8px;
}
.modal:has(.a_b_test_form) .contacts_box__hidden .checkboxs .checkbox {
  position: relative;
  height: fit-content;
}
.modal:has(.a_b_test_form) .contacts_box__hidden .checkboxs .checkbox input {
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  opacity: 0;
}
.modal:has(.a_b_test_form) .contacts_box__hidden .checkboxs .checkbox label {
  padding: 0 12px;
  border: 1px solid rgba(15, 17, 19, 0.07);
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  height: 40px;
  gap: 10px;
  box-sizing: border-box;
  border-radius: 12px;
  color: #191926;
  font-size: 15px;
  font-weight: 400;
  line-height: 130%;
}
.modal:has(.a_b_test_form) .contacts_box__hidden .checkboxs .checkbox label .circle {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: rgba(15, 17, 19, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal:has(.a_b_test_form) .contacts_box__hidden .checkboxs .checkbox label .circle .push {
  width: 10px;
  height: 10px;
  border-radius: 100px;
}
.modal:has(.a_b_test_form) .contacts_box__hidden .checkboxs .checkbox input:checked + label {
  background-color: transparent;
  border-color: rgba(15, 17, 19, 0.3);
  color: #191926;
}
.modal:has(.a_b_test_form) .contacts_box__hidden .checkboxs .checkbox input:checked + label .circle {
  background-color: #f7ddb0;
}
.modal:has(.a_b_test_form) .contacts_box__hidden .checkboxs .checkbox input:checked + label .circle .push {
  background-color: #1e1f2c;
}
.modal:has(.a_b_test_form) .contacts_box__hidden .checkboxs .checkbox.max input:checked + label {
  background: transparent;
}