@charset "UTF-8";
/* font icon */
@font-face {
  font-family: "glyphicons-halflings-regular";
  src: url("/Assets/fonts/glyphicons-halflings-regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "glyphicons-halflings-regular";
  src: url("/Assets/fonts/glyphicons-halflings-regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "glyphicons-halflings-regular";
  src: url("/Assets/fonts/glyphicons-halflings-regular.eot") format("embedded-opentype");
  font-display: swap;
}
@font-face {
  font-family: "glyphicons-halflings-regular";
  src: url("/Assets/fonts/glyphicons-halflings-regular.svg") format("svg");
}
/* font chữ Lexend */
@font-face {
  font-family: "pasgo-fonts-regular";
  src: url("/Assets/fonts/fontlexend/lexend-regular.ttf") format("truetype");
}
@font-face {
  font-family: "pasgo-fonts-medium";
  src: url("/Assets/fonts/fontlexend/lexend-medium.ttf") format("truetype");
}
@font-face {
  font-family: "pasgo-fonts-semibold";
  src: url("/Assets/fonts/fontlexend/lexend-semibold.ttf") format("truetype");
}
@font-face {
  font-family: "pasgo-fonts-bold";
  src: url("/Assets/fonts/fontlexend/lexend-bold.ttf") format("truetype");
}
@font-face {
  font-family: "pasgo-fonts-extrabold";
  src: url("/Assets/fonts/fontlexend/lexend-extrabold.ttf") format("truetype");
}
@font-face {
  font-family: "pasgo-fonts-black";
  src: url("/Assets/fonts/fontlexend/lexend-black.ttf") format("truetype");
}
/* biến chung toàn cục */
/* Khoảng cách chung */
/* Bo viền chung */
/* Khai báo font chữ */
/* Font size dùng chung ở trang chủ và chi tiết đối tượng */
/* Font Link dùng chung ở trang chủ và chi tiết đối tượng */
/* Font menu category dùng chung ở trang chủ và chi tiết đối tượng */
/* Color Tiêu Đề và Mô tả dùng chung ở trang chủ và chi tiết đối tượng */
/* font chữ regular */
/* font chữ medium */
/* font chữ semibold */
.pg-xac-thuc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.pg-xac-thuc-overlay.is-open {
  display: flex;
}

.pg-xac-thuc-modal {
  background: #fff;
  border-radius: 8px;
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0px 2px 54px 0px rgba(0, 0, 0, 0.1);
  font-family: "pasgo-fonts-regular", sans-serif;
  color: #333;
}

.pg-xac-thuc-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 8px;
  border-bottom: 1px solid #e0e0e0;
}

.pg-xac-thuc-modal__head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.pg-xac-thuc-modal__close {
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #757575;
}

.pg-xac-thuc-modal__body {
  padding: 16px;
}

.pg-xac-thuc-modal__msg {
  color: #c00;
  font-size: 14px;
  margin: 8px 0 0;
  min-height: 20px;
}

.pg-xac-thuc-modal__hint {
  font-size: 14px;
  color: #545454;
  margin-bottom: 12px;
}

.pg-xac-thuc-field {
  margin-bottom: 12px;
}

.pg-xac-thuc-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.pg-xac-thuc-field input[type=tel],
.pg-xac-thuc-field input[type=text],
.pg-xac-thuc-field input[type=password] {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #bababa;
  border-radius: 4px;
  font-size: 16px;
}

.pg-xac-thuc-otp-row {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.pg-xac-thuc-otp-row input {
  width: 42px;
  height: 48px;
  text-align: center;
  font-size: 20px;
  border: 1px solid #bababa;
  border-radius: 4px;
}

.pg-xac-thuc-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pg-xac-thuc-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}

.pg-xac-thuc-btn--primary {
  background: #d02028;
  color: #fff;
}

.pg-xac-thuc-btn--primary:disabled,
.pg-xac-thuc-btn--link:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pg-xac-thuc-btn--link {
  background: transparent;
  color: #d02028;
  text-decoration: underline;
}

.pg-xac-thuc-btn.is-busy,
.btn.is-busy {
  color: transparent;
  pointer-events: none;
  position: relative;
}

.pg-xac-thuc-btn.is-busy::after,
.btn.is-busy::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25em;
  height: 1.25em;
  margin: -0.625em 0 0 -0.625em;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: pg-xac-thuc-spin 0.8s linear infinite;
}

.pg-xac-thuc-step {
  display: none;
}

.pg-xac-thuc-step.is-active {
  display: block;
}

.pg-xac-thuc-loader {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.65);
}

.pg-xac-thuc-loader.is-visible {
  display: flex;
}

.pg-xac-thuc-modal {
  position: relative;
}

@keyframes pg-xac-thuc-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 480px) {
  .pg-xac-thuc-modal {
    max-height: 85vh;
  }
  .pg-xac-thuc-otp-row input {
    width: 38px;
    height: 44px;
  }
}

/*# sourceMappingURL=xac-thuc-otp.css.map */
