.alert {
	position: fixed;
  top: 0;
  margin: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--alert-background);
  opacity: 0;
  z-index: 2000;
}

.alertContent {
  overflow-y: auto;
  position: absolute;
  left: 0;
  right: 0;
  margin: 96px auto 0px auto;
  padding: 12px;
  box-sizing: border-box;
  width: calc(100% - 44px);
  max-width: 480px;
  max-height: calc(100vh - 192px);
  border-radius: 12px;
  background-color: #FFFFFF;
  text-align: center;
}

.alertText {
  margin: 24px 12px 18px 12px;
  text-align: left;
}

.alertQueryBlock {
  margin: 12px 0 0;
  padding: 10px 12px 4px;
  border-radius: 8px;
  background-color: #fff5ee;
  border: 1px solid #f0c090;
  text-align: left;
}

.alertQueryText {
  font-size: 14px;
  font-weight: bold;
  color: #E77F0B;
  line-height: 1.4;
}

.alertQueryMeta {
  margin-top: 2px;
  font-size: 11px;
  color: #999999;
  margin-bottom: 4px;
}

.alertQueryBlockResolved {
  background-color: #f4faf6;
  border-color: #b8dcc4;
}

.alertQueryBlockResolved .alertQueryText {
  color: #3d8b5a;
}

.alertQueryAnswer {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(61, 139, 90, 0.35);
  font-size: 13px;
  color: #333333;
  line-height: 1.4;
}

.alertQueryAnswerLabel {
  font-weight: bold;
  color: #3d8b5a;
}