.callback {
  position: relative;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 100%;
}
@media (max-width: 767.98px) {
  .callback {
    padding: 20px 15px;
  }
}
.callback__title {
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
}
.callback__description {
  text-align: center;
  margin-bottom: 10px;
  color: var(--gray-600);
}
.callback__content, .callback__success {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.callback__content[hidden], .callback__success[hidden] {
  display: none !important;
}
.callback__content-host {
  width: 100%;
  display: flex;
  justify-content: center;
}
.callback__input-container {
  width: 100%;
  max-width: 480px;
}
.callback__phone {
  position: relative;
  display: grid;
  grid-template-columns: 70px auto;
  align-items: center;
  margin: 10px 0;
}
.callback__phone input {
  height: 45px;
  border-radius: 0 8px 8px 0;
  border: 2px solid var(--gray-300);
  font-size: 1.7rem;
  padding: 0 20px;
  border-left: none;
  width: 100%;
}
.callback__phone-prefix {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  height: 45px;
  justify-content: center;
  gap: 4px;
  background: var(--gray-200);
  border-radius: 8px 0 0 8px;
  border: 2px solid var(--gray-300);
  border-right: none;
}
.callback__phone-prefix span {
  display: block;
  font-size: 1.7rem;
  font-weight: 500;
  padding-right: 10px;
}
.callback__btns-confirm {
  margin-top: 10px;
}
.callback__success {
  max-width: 360px;
  padding: 30px 0 10px;
}
.callback__success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.callback__success-icon svg {
  width: 48px;
  height: 48px;
  fill: var(--green-500, #2ea86b);
}
.callback__title--success {
  margin-bottom: 10px;
}
.callback__description--success {
  margin-bottom: 20px;
}
.callback__success-btn {
  min-width: 180px;
}
.callback__loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 2;
}
.callback__loader-spinner {
  width: 64px;
  height: 64px;
  background: center/contain no-repeat url("../../../core/assets/icons/loader.svg");
}
.callback__error {
  color: red;
  text-align: left;
}
.callback.is-loading .callback__loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*# sourceMappingURL=style.css.map */
