@charset "UTF-8";
#rab-unas {
  display: none;
}

#knrab {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000000;
  width: 100%;
  height: 100%;
  top: 0;
}
.modal_active {
  display: block;
}
.modal .overlayModal {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.modal .overlayModal .form {
  z-index: 100;
}
.modal .overlayModal .back {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #6BB8CB;
  font-size: 50px;
  cursor: pointer;
  z-index: 10000000;
}
.modal .overlayModal .back-black {
  color: black;
}
.modal__thanks {
  position: relative;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 400px;
  max-height: 300px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 7px rgba(39, 51, 54, 0.2);
          box-shadow: 0px 0px 7px rgba(39, 51, 54, 0.2);
  border-radius: 20px;
  padding: 35px 39px 40px 39px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
.modal__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 39px;
  text-align: center;
  line-height: 27px;
  margin-top: 15px;
  color: #000000;
}
.modal__for-candidates {
  /* настройки для SVG-иконки */
  /* общие настройки для нового чекбокса и галочки */
  /* настройки для подписи чекбокса */
  /* включаем возможность поставить галочку */
  /* Focus */
  /* Hover/active */
  /* Disabled */
}
.modal__for-candidates .form__wrap {
  padding: 0 30px;
}
.modal__for-candidates .check-group {
  margin-top: 10px;
}
.modal__for-candidates .checkbox__input {
  /* устанавливаем абсолютное позиционирование */
  position: relative;
  /* задаём высоту и ширину */
  width: 20px;
  height: 20px;
  /* делаем чекбокс непрозрачным, чтобы скрыть исходный элемент и заменить его потом нарисованным */
  opacity: 0;
  /* меняем внешний вид курсора */
  cursor: pointer;
  top: 2px;
  left: 25px;
}
.modal__for-candidates .checkbox__icon {
  position: relative;
  /* размеры совпадают с размерами скрытого чекбокса */
  width: 20px;
  height: 20px;
  /* убираем ограничение по наименьшей ширине блока */
  -ms-flex-negative: 0;
      flex-shrink: 0;
  /* разрешаем отображать содержимое за пределами блока */
  overflow: visible;
  top: 2px;
}
.modal__for-candidates .checkbox__icon:hover {
  cursor: pointer;
}
.modal__for-candidates .checkbox__icon .tick {
  /* рисовать будем всё отрезками по 20 пикселей */
  stroke-dasharray: 20px;
  /* но сместим начало всех отрезков тоже на 20 пикселей, чтобы пока галочка не рисовалась */
  stroke-dashoffset: 20px;
  /* это даст нам плавную анимацию отрисовки галочки */
  -webkit-transition: stroke-dashoffset 0.2s ease-out;
  transition: stroke-dashoffset 0.2s ease-out;
}
.modal__for-candidates .checkbox__label {
  /* добавляем отступ слева */
  color: black;
  font-size: 16px;
}
.modal__for-candidates .checkbox__label a {
  color: inherit;
  font-size: inherit;
}
.modal__for-candidates .checkbox__input:checked + .checkbox__icon .tick {
  /* убираем смещение для отрезков, чтобы включить анимацию галочки */
  stroke-dashoffset: 0;
}
.modal__for-candidates .input-file {
  position: relative;
  display: inline-block;
}
.modal__for-candidates .input-file-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  font-size: 14px;
  vertical-align: middle;
  color: #6BB8CB;
  text-align: center;
  border-radius: 4px;
  background-color: #fff;
  line-height: 18px;
  height: 40px;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #6BB8CB;
  margin: 0;
  margin-top: 10px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.modal__for-candidates .input-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}
.modal__for-candidates .input-file:hover .input-file-btn {
  background-color: #eee;
}
.modal__for-candidates .input-file:active .input-file-btn {
  background-color: #6BB8CB;
}
.modal__for-candidates .input-file input[type=file]:disabled + .input-file-btn {
  background-color: #fff;
}
.modal__for-candidates .input-file-btn_active {
  color: #fff;
  background: #6BB8CB;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 340px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 7px rgba(39, 51, 54, 0.2);
          box-shadow: 0px 0px 7px rgba(39, 51, 54, 0.2);
  border-radius: 20px;
  padding: 35px 39px 40px 39px;
}
.form_order-call {
  margin-top: 50px;
  height: 267px;
  padding: 0px 0px 0px 0px;
  overflow: hidden;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.form_order-call-candidates {
  height: 500px;
}
.form__appeare {
  margin-top: 50px;
  height: 77px;
  padding: 0px 0px 0px 0px;
  overflow: hidden;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.form__appeare .form__header {
  cursor: pointer;
  line-height: 77px;
  width: 100%;
  font-size: 32px;
}
.form__appeare_active {
  height: 267px;
}
.form .container {
  margin-top: 36px;
}
.form__header {
  font-weight: 700;
  font-size: 32px;
  line-height: 41px;
  text-align: center;
  color: #000000;
  border: none;
  background-color: white;
}
.form__header_cost-calculation {
  font-size: 50px;
  margin-bottom: 41px;
  background: #6BB8CB;
  padding: 10px 30px;
  border: none;
  border-radius: 20px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  cursor: pointer;
}
.form__header_cost-calculation:hover {
  background: #fff;
}
.form__subtitle {
  font-weight: 400;
  font-size: 30px;
  line-height: 39px;
  color: #000000;
  text-align: left;
  margin-left: 17px;
  margin-bottom: 17px;
}
.form__wrap {
  text-align: center;
  margin-top: 0px;
}
.form_cost-calculation {
  display: none;
  max-width: 1176px;
  min-height: 995px;
  margin: 0 auto;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  margin-top: 30px;
}
.form_cost-calculation .form__input {
  width: 100%;
  margin: 0 17px 17px 17px;
}
.form_cost-calculation .form__input_range {
  background: red;
}
.form_cost-calculation .form__input_range:hover {
  color: #6BB8CB;
}
.form_cost-calculation .form__input_range br {
  display: none;
}
.form .required-fild {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  text-align: left;
  margin-left: 52px;
  margin-top: 10px;
  color: #B6B6B6;
}
.form option {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #B6B6B6;
}
.form__input {
  width: 275px;
  height: 47px;
  border: 1px solid #E3E3E3;
  border-radius: 20px;
  padding-left: 23px;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #000;
  margin-top: 10px;
}
.form__input:focus {
  border: 2px solid #6BB8CB;
  outline: none;
}
.form_modal {
  position: relative;
  max-width: 420px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  margin: 0;
  padding-top: 20px;
}
.form input::-webkit-outer-spin-button,
.form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.buttonModal {
  position: relative;
  width: 177px;
  height: 47px;
  background: linear-gradient(94.58deg, #62d4f0 -10.01%, #5DCAE6 45.45%, #62d4f0 110.98%);
  border: none;
  border-radius: 50px;
  z-index: 1;
}
.buttonModal span {
  position: absolute;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  z-index: 100000;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  top: 50%;
  left: 50%;
}
.buttonModal:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 50%;
  left: 50%;
  background: -webkit-gradient(linear, left top, right top, color-stop(-10.01%, #62d4f0), color-stop(45.45%, #98d7e7), color-stop(110.98%, #62d4f0));
  background: linear-gradient(90deg, #62d4f0 -10.01%, #98d7e7 45.45%, #62d4f0 110.98%);
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50px;
  z-index: 10;
  cursor: pointer;
}
.buttonModal:hover:before {
  width: 100%;
  opacity: 1;
}
.buttonModal_show {
  display: block;
}
.buttonModal_form {
  margin-top: 14px;
  display: none;
  margin-bottom: 10px;
}
.buttonModal_form span {
  line-height: 20px;
}
.buttonModal_candidates:hover {
  cursor: pointer;
}/*# sourceMappingURL=css-edit.css.map */



.btn-primary {
  display: none
}
