.call-back {
  z-index: 100;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
}
.call-back-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.call-back:not(.call-back--active) {
  display: none;
}
.call-back__title {
  color: #024380;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}
.call-back__hint {
  margin-top: 10px;
  color: #333;
  font-size: 12px;
  text-align: center;
}
.call-back__inputs {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.call-back__input {
  height: 40px;
  font: inherit;
  appearance: none;
  padding: 0 10px;
  border: 1px solid #333;
}
.call-back__agreement {
  color: #333;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  max-width: 300px;
  margin: 30px auto 0;
}
.call-back__agreement a {
  color: #024380;
  font-size: inherit;
}
.call-back__submit {
  appearance: none;
  max-width: 200px;
  width: 100%;
  margin: 20px auto 0;
  background: #024380;
  color: #fff;
  border: none;
  font-size: 20px;
  height: 40px;
  cursor: pointer;
}
.call-back__submit--disabled {
  pointer-events: none;
  opacity: 0.7;
}
.call-back__error {
  font-size: 10px;
  margin-top: 4px;
  color: red;
  white-space: pre-line;
}
.call-back__error--centered {
  text-align: center;
}
.call-back__close {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.call-back__close:before {
  content: "X";
  font-size: 24px;
  font-family: Arial, sans-serif;
}

/*# sourceMappingURL=call-back.css.map */
