/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Default popup */
.popupBackground {
  display: none;
  z-index: unset;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(128, 128, 128, 0.8);
}
.popupForeground {
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.9);
  margin: auto;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
}
.popupTitle {
  overflow: hidden;
  background-color: #ffe8d8;
  border-radius: 5px 5px 0px 0px;
  padding: 12px 14px;
  height: 41px;
}
.popupContent {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 12px 14px;
  border-bottom: 1px solid #f8d8b8;
  font-size: 16px;
  height: 67px;
}
.popupFormFrame {
  padding: 14px 14px;
}
.popupInputText {
	width: 100%;
	padding: 12px 14px;
	margin-bottom: 14px;
	display: inline-block;
	border: 1px solid #ed6d21;
	border-radius: 4px;
  font-size: 16px;
}
.popupButton {
	background-color: #ed6d21;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
  float: right;
  margin-left: 14px;
  font-size: 16px;
  min-width: 100px;
}
.popupButton:hover {
	background-color: #fd7d31;
}
.popupButton:disabled {
	background-color: #8e8e8e;
  cursor: wait;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Popup waiting */
#popupWaitingBackground {
  display: none;
  z-index: 255;
	background-color: rgba(255, 255, 255, 0.8);
}
#popupWaitingForeground {
  border-radius: unset;
  background-color: unset;
  box-shadow: unset;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Popup message */
#popupMessageBackground {
  display: none;
  z-index: 254;
}
#popupMessageFormFrame {
  height: 74px;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Popup confirm */
#popupConfirmBackground {
  display: none;
  z-index: 253;
}
#popupConfirmFormFrame {
  height: 74px;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Popup input box */
#popupInputboxBackground {
  display: none;
  z-index: 250;
}