.confirm_block {
  display: none;
}
#confirmMessage{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}
.confirm_block > div:first-of-type {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0px;
  left: 0px;
  z-index: 9999;
}
.confirm_block > div:last-of-type {
	box-shadow: 0 5px 15px rgba(0,0,0,.5);
	padding: 20px;
	background: #fff;
	position: absolute;
	width: auto;
	min-width:320px;
	height: auto;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 6px;
	border: 1px solid rgba(0,0,0,.2);
	z-index: 99999;
}
.confirm_block > div:last-of-type div:first-of-type {
	min-width: 150px;
	padding: 10px;
}
.confirm_block > div:last-of-type div:last-of-type {
	text-align: center;
}
.confirm_block input[type=button] {
	width: 100px;
	display: inline-block;
	padding: 6px 12px;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	border-radius: 4px;
	color: #333;
	background-color: #fff;
	border: 1px solid #adadad;
	cursor:pointer;
}
.confirm_block input[type=button]#confirmNo {
	color: #fff;
	background-color: #f8981d;
	border-color: #f8981d;
}
.confirm_block input[type=button]:hover {
	background-color: #e6e6e6;
}
.confirm_block input[type=button]#confirmNo:hover {
	background-color: #ff6b01d3;
	border-color: #ff6b01d3;
}
.confirm_block #confirmInputs input[type=text]{
	width: 100%;
	border: 1px solid #ccc;
	height: 45px;
	margin-bottom: 10px;
	padding: 0 10px;
}
.confirm_block #confirmButtons{
	display: flex;
	gap: 10px;
	justify-content: center;
}