.app-confirm {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  user-select: none;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.5);
}
.app-confirm .app-confirm__container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: 400px;
  width: 100%;
  padding: 1rem;
}
.app-confirm .app-confirm__box {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 16px 40px;
}
.app-confirm.active {
  opacity: 1;
  visibility: visible;
  user-select: initial;
  pointer-events: initial;
}
.app-confirm__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5em;
}
.app-confirm__body .app-confirm__icon {
  color: #5B6672;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
}
.app-confirm__body .app-confirm__title {
  color: #17212B;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.app-confirm__body .app-confirm__description {
  color: #5B6672;
  font-size: 0.75rem;
  font-weight: 400;
}
.app-confirm__footer {
  display: flex;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  border-top: 1px solid #E3EAF1;
}
.app-confirm__footer > button {
  flex: 1;
  cursor: pointer;
  display: block;
  padding: 1em;
  margin: 0;
  color: #5B6672;
  font-size: 14px;
  font-weight: 500;
  border: none;
  outline: none;
  background-color: transparent;
  transition: 0.2s ease;
}
.app-confirm__footer > button:hover {
  color: #35414D;
  background-color: #F4F7FB;
}
.app-confirm__footer > button:active {
  color: #17212B;
  background-color: #EEF4FA;
}
.app-confirm__footer > button[type="submit"] {
  color: #FFFFFF;
  font-weight: 600;
  background-color: #4C739B;
}
.app-confirm__footer > button[type="submit"]:hover {
  background-color: #44688c;
}
.app-confirm__footer > button[type="submit"]:active {
  background-color: #3d5c7c;
}
.app-confirm--danger .app-confirm__footer > button[type="submit"] {
  color: #B6423C;
  background-color: transparent;
  border-left: 1px solid #EEF4FA;
}
.app-confirm--danger .app-confirm__footer > button[type="submit"]:hover {
  background-color: #F4F7FB;
}
.app-confirm--danger .app-confirm__footer > button[type="submit"]:active {
  background-color: #EEF4FA;
}
/*# sourceMappingURL=3f086e01d1ed6db066d5e9849c5ea219f60c8043.confirm.scss.map */
