.__modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8888;
  justify-content: center;
  align-items: center;
  color: #212529;
  display: none;
}

.__modal .__modal_mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 8885;
}

.__modal .__modal_content {
  width: 80%;
  position: relative;
  z-index: 8886;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 16px 16px 24px 16px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.__modal .__modal_content .__modal_close_btn {
  position: absolute;
  top: 8px;
  right: 8px;
  outline: none;
  border: none;
  width: 24px;
  height: 24px;
  background: transparent;
  color: #212529;
}

.__modal .__modal_content .__modal_icon {
  color: #15B628;
  width: 24px;
  height: 24px;
  margin-top: 12px;
}

.__modal .__modal_content .__modal_icon svg {
  width: 100%;
  height: 100%;
}

.__modal .__modal_content .__modal_title {
  font-weight: bold;
  margin-top: 4px;
  font-size: 14px;
  color: #343a40;
}

.__modal .__modal_content .__modal_body {
  text-align: center;
  margin: 16px 0;
}

.__modal .__modal_content .__modal_body img {
  width: 80%;
  margin: 0 auto;
}

.__modal .__modal_content .__modal_body span {
  display: block;
  color: #868e96;
  font-size: 10px;
  letter-spacing: 2px;
}

.__modal .__modal_content .__modal_body p {
  font-size: 10px;
  letter-spacing: 1px;
  padding-top: 4px;
}

.__modal .__modal_content .__modal_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.__modal .__modal_content .__modal_buttons button {
  background: #15B628;
  font-size: 12px;
  color: #fff;
  outline: none;
  border-radius: 4px;
  overflow: hidden;
  border: none;
  padding: 4px 16px;
  letter-spacing: 1px;
  font-weight: 500;
}

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