.vac__title {
  margin: 0 0 22px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  color: #4DB5E2;
}

/* PRIVACY */
.privacy {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 20px 30px;
}

.privacy__title {
  margin: 0 0 18px;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  color: #4DB5E2;
}

.privacy__lead {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: #2b2b2b;
}

.privacy__grid {
  display: grid;

  grid-template-columns: 444px 510px;

  gap: 50px;
  align-items: start;
  margin-top: 8px;
}

.privacy__h {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 600;
  color: #1f1f1f;
}

.privacy__h--mt {
  margin-top: 26px;
}


.vac__direction-list,
.privacy__list {
  margin: 0;

  list-style: disc;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  color: #2b2b2b;
}

.vac__direction-list li,
.privacy__list li {

  list-style: inherit;
}

.vac__direction-list li::before,
.privacy__list li::before {
  content: none !important;
  display: none !important;
}

.privacy__text {
  font-size: 12px;
  line-height: 1.55;
  color: #2b2b2b;
}

.privacy__note {
  margin: 40px auto 50px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 130%;
  color: #373A36;
}

.privacy__actions {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}


.privacy__btn.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 40px;
  padding: 0 26px !important;

  line-height: 1;
  border: 0 !important;
  border-radius: 20px;
  background: #4DB5E2;
  color: #fff !important;

  text-decoration: none;
}

.privacy__btn:hover {
  opacity: .95;
}

@media (max-width: 900px) {
  .privacy__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .privacy__lead {
    margin-bottom: 24px;
  }

  .vac__cta .vac__cta-btn {
    width: 325px;
  }
}

body.is-modal-open {
  overflow: hidden;
}

.privacy__modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.privacy__modal.is-open {
  display: block;
}

.privacy__modal-overlay {
  position: absolute;
  inset: 0;
  background: #fff;
}

.privacy__modal-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, calc(100% - 40px));
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  text-align: center;
}

.privacy__modal-title {
  font-size: 16px;
  font-weight: 700;
  color: #373A36;
  margin-bottom: 8px;
}

.privacy__modal-text {
  font-size: 13px;
  line-height: 1.4;
  color: #2b2b2b;
  margin-bottom: 14px;
}

.privacy__modal-btn {
  height: 40px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #4DB5E2;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.anketa {
  --max: 1156px;
  --gap: 18px;
  --sm: calc((min(100%, var(--max)) - (5 * var(--gap))) / 6);
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 20px 80px;
}

.anketa__title {
  margin: 0 0 28px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #4DB5E2;
}

.anketa__block {
  margin: 0 0 28px;
}

.anketa__grid {
  display: grid;
  gap: var(--gap);
}

.anketa__grid--row1 {
  grid-template-columns: repeat(6, minmax(0, var(--sm)));
  padding-bottom: 22px;
}

.anketa__grid--row2 {
  grid-template-columns: repeat(6, minmax(0, var(--sm)));
  align-items: end;
  padding-bottom: 22px;
}

.anketa__grid--row2 .anketa__field--wide {
  grid-column: span 5;
}

.anketa__grid--row2 .anketa__field--narrow {
  grid-column: span 1;
}

.anketa__grid--rowExtra {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.anketa__jobs {
  display: grid;
  gap: 12px;
}

.anketa__job-row {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(6, minmax(0, var(--sm)));
  align-items: end;
}

.anketa__job-row> :nth-child(3) {
  grid-column: span 2;
}

.anketa__field {
  display: block;
}

.anketa__label {
  font-size: 15px;
  font-weight: 600;
  color: #1f1f1f;
  margin: 0 0 10px;
}

.anketa .anketa__input {
  width: 100%;
  background: #fff;
  border: 2px solid #373A36 !important;
  border-radius: 4px;
  color: #373A36;
  font-size: 12px;
  font-weight: 500;
  padding: 0 10px;
  height: 60px;
  line-height: 60px;
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  background-clip: padding-box;
}

.anketa textarea.anketa__input {
  height: 60px;
  line-height: 1.35;
  padding: 12px 10px;

}

.anketa__grid--row1 .anketa__input {
  height: 40px;
  line-height: 40px;
}

.anketa .anketa__input::placeholder {
  color: #373A36;
  font-family: "Proxima Soft", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
  opacity: 1;
}

.anketa input.anketa__input:focus,
.anketa textarea.anketa__input:focus,
.anketa select.anketa__input:focus,
.anketa input.anketa__input:focus-visible,
.anketa textarea.anketa__input:focus-visible,
.anketa select.anketa__input:focus-visible {
  border: 2px solid #373A36 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.anketa__add {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #2b2b2b;
  padding: 6px 0;
}

.anketa__add-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  line-height: 0;
}

.anketa__add-icon svg {
  display: block;
}

.skills {
  width: 100%;
}

.skills__head {
  display: grid;
  grid-template-columns: 80px 60px 58px 60px 1fr;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #2b2b2b;
  margin: 0 0 6px;
  text-align: center;
}

.skills__head> :last-child {
  text-align: left;
  padding-left: 20px;
}

.skills__row {
  display: grid;
  grid-template-columns: 80px 60px 60px 60px 1fr;
  gap: 12px;
  align-items: center;
  padding: 6px 0;
}

.skills__name {
  font-size: 15px;
  font-weight: 500;
  color: #2b2b2b;
}

.skills__cb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.skills__cb input[type="radio"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1.5px solid #373A36 !important;
  border-radius: 3.25px !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}

.skills__cb input[type="radio"]:checked {
  background: #4DB5E2 !important;
  border-color: #4DB5E2 !important;
}

.skills__cb input[type="radio"]:focus,
.skills__cb input[type="radio"]:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.skills__comment {
  width: 100%;
  height: 28px;
  border: 0 !important;
  border-bottom: 0.5px solid #2b2b2b !important;
  background: transparent !important;
  border-radius: 0 !important;
  outline: none;
  font-size: 12px;
  padding: 0 4px;
  margin-left: 20px;
}







/* .anketa */



.anketa__files {
  margin-top: 10px;
}

.anketa__add--file {
  position: relative;
}

.anketa__file {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.anketa__filelist {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.anketa__fileitem {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #2b2b2b;
}

.anketa__fileicon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.anketa__footer {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.anketa__hint {
  text-align: center;
  max-width: 954px !important;
  font-size: 15px;
  font-weight: 500;
  color: #2b2b2b;
  max-width: 760px;
}

.privacy__actions .privacy__btn,
.anketa__footer .anketa__submit {
  height: 40px;

  padding: 0 !important;
  letter-spacing: normal !important;
  width: 120px;
  border: none !important;
  border-radius: 20px;
  background: #4DB5E2;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-transform: lowercase;
}

.privacy__actions .privacy__btn,
.anketa__footer .anketa__submit:hover {
  color: #fff !important;
}


.vac__consent {
  width: 350px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  user-select: none;
}


.vac__consent-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}


.vac__consent-ui {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1px solid #373A36;
  border-radius: 4px;
  background: transparent;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.vac__consent-check {
  border-radius: 2px;
  background: #fff;
  opacity: 0;
  transform: scale(.9);
  transition: opacity .12s ease, transform .12s ease;
}

.vac__consent-input:checked+.vac__consent-ui {
  background: #4DB5E2;
  border-color: #4DB5E2;
}

.vac__consent-input:checked+.vac__consent-ui .vac__consent-check {
  opacity: 1;
  transform: scale(1);
}

.vac__consent-input:focus-visible+.vac__consent-ui {
  box-shadow: 0 0 0 3px rgba(77, 181, 226, .25);
}


.vac__consent-text {
  display: block;
  line-height: 1.2;
  font-size: 12px;
  color: #2b2b2b;
  text-align: center;
}


.vac__consent-state--normal {
  display: inline;
  white-space: nowrap;
}


.vac__consent-state--warn {
  display: inline;
  white-space: normal;
}

.vac__consent-link {
  color: inherit;
  text-decoration: none;
}

.vac__consent-link:hover {
  text-decoration: underline;
}

.vac__consent-alert {
  font-weight: 600;
}

.vac__consent {
  width: 350px;
  height: 50px;
  margin: 0 auto;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}


.vac__consent-ui {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-left: 0;
  cursor: pointer;
}

.vac__consent-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 24px - 12px);
  text-align: center;
  line-height: 1.2;
  font-size: 12px;
  color: #2b2b2b;

}


.vac__consent-state {
  display: inline;

}

.vac__consent-state--normal {
  white-space: nowrap;
}

.vac__consent-state--warn {
  white-space: normal;
}

@media (max-width: 1100px) {
  .anketa {
    --sm: 1fr;
  }

  .anketa__grid--row1 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .anketa__grid--row2 {
    grid-template-columns: 1fr;
  }

  .anketa__grid--row2 .anketa__field--wide,
  .anketa__grid--row2 .anketa__field--narrow {
    grid-column: auto;
  }

  .anketa__job-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .anketa__job-row> :nth-child(3) {
    grid-column: auto;
  }

  .skills__head,
  .skills__row {
    grid-template-columns: 120px 46px 46px 86px 1fr;
  }
}

@media (max-width: 680px) {
  .anketa {
    padding-left: 14px;
    padding-right: 14px;
  }

  .anketa__grid--row1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .anketa__grid--rowExtra {
    grid-template-columns: 1fr;
  }

  .skills__head {
    display: none;
  }

  .skills__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
  }

  .skills__row>.skills__name {
    font-weight: 600;
  }

  .skills__cb {
    justify-content: flex-start;
  }

  .skills__comment {
    border: 1px solid #2b2b2b !important;
    border-bottom: 1px solid #2b2b2b !important;
    height: 34px;
    margin-left: 0;
    background: #fff !important;
  }
}


.anketa__add--file {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 60px;
}

.anketa__add-text {
  display: inline-block;
}

.anketa__files-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
}

.anketa__ficon {
  position: relative;
  width: 35px;
  height: 43px;
  flex: 0 0 35px;
}

.anketa__ficon svg {
  display: block;
  width: 35px;
  height: 43px;
}

.anketa__ficon-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid #373A36;
  background: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.9);
  transition: .12s ease;
  cursor: pointer;
  line-height: 0;
}

.anketa__ficon:hover .anketa__ficon-remove {
  opacity: 1;
  transform: scale(1);
}

.anketa__ficon-remove svg {
  width: 10px;
  height: 10px;
  display: block;
}

.anketa__input--ta {
  resize: none;
  overflow: hidden;
  line-height: 1.2;
}

.anketa__field--jobwide,
.anketa__field--autogrow {
  position: relative;
  min-height: 60px;
  z-index: 1;
}

.anketa__field--jobwide>textarea.anketa__input,
.anketa__field--autogrow>textarea.anketa__input--ta {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  height: 60px;
  min-height: 60px;
  padding: 12px 10px;
  line-height: 1.35;
  resize: none;
  overflow: hidden;
  background: #fff;
  z-index: 10;
  will-change: height;
}

.anketa label.anketa__field {
  position: relative;
  z-index: 1;
}

.anketa label.anketa__field.is-focus {
  z-index: 50;
}

.anketa .anketa__field {
  font-size: inherit;
}

.anketa .anketa__label {
  font-size: 15px;
  margin-bottom: 10px;
}

.anketa__grid--row2>.anketa__field {
  display: flex;
  flex-direction: column;
}

.anketa__grid--row2>.anketa__field>.anketa__label {
  display: block;
  margin: 0 0 10px;
}

.anketa__grid--row2>.anketa__field--narrow>input.anketa__input {
  position: relative;
  z-index: 1;
}

.anketa__field--wanted {
  position: relative;
  padding-top: 26px;
  min-height: calc(60px + 26px);
  z-index: 1;
}

.anketa__field--wanted>.anketa__label {
  position: absolute;
  left: 0;
  top: -7px;
  margin: 0;
  z-index: 20;
  padding: 0 8px 2px 0;
  pointer-events: none;
}

.anketa__field--wanted>textarea.anketa__input,
.anketa__field--wanted>textarea.anketa__input--ta {
  top: 26px !important;
  z-index: 1;
}

.anketa__field--jobwide:has(textarea:focus),
.anketa__field--autogrow:has(textarea:focus) {
  z-index: 50;
}

.anketa__field--jobwide:has(textarea:focus)>textarea,
.anketa__field--autogrow:has(textarea:focus)>textarea {
  z-index: 100;
}


.anketa textarea.anketa__input {
  height: 60px;
  padding: 20px 10px 0;
  line-height: 1.2;
}

.anketa__ph {
  pointer-events: none;
}


.anketa input:focus::placeholder,
.anketa textarea:focus::placeholder,
.anketa input:focus-visible::placeholder,
.anketa textarea:focus-visible::placeholder {
  opacity: 0;
}



.anketa-success {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}



.anketa-success.is-open {
  display: block;
}

.anketa-success__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .25);
}

.anketa-success__box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: #4DB5E2;
  border-radius: 56px;
  padding: 55px 21px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: none;
}

.anketa-success__art {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 40px;
}

.anketa-success__art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.anketa-success__text {
  margin-top: 15px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  gap: 15px;
}

.anketa-success__close {
  margin-top: auto;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: #4DB5E2;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

.anketa-success__close svg {
  display: block;
}


.success__bubble {
  position: relative;
  width: 130px;
  height: 78px;
}

.success__bubble-img {
  width: 100%;
  height: 100%;
  display: block;
}

.success__bubble-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  padding: 8px;
  padding-bottom: 20px;
  transform: rotate(-4deg);
  pointer-events: none;
}

.vacancy_privacy_frame {
  width: 1200px !important;
}