.bgOverlay {
	z-index: 10;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.actionDiv {
	font-size: 24px;
	border-radius: 5px;
	border: 2px solid rgb(180, 180, 180);
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.actionDiv.mobile {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	transform: none;
}

.actionDiv:not(.mobile) .desc {
	max-height: 350px; 
}
.actionDiv .title {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgb(160, 160, 160);
	padding: 5px;
	background-color: rgb(230, 230, 230);
	color: black;
	width: calc(100% - 10px);
}
.actionDiv .desc {
	position: relative;
	flex: 1;
	padding: 10px;
	background-color: white;
	width: calc(100% - 20px);
}
.actionDiv .buttonList {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	display: flex;
	justify-content: space-between;
	border-top: 1px solid rgb(160, 160, 160);
	padding: 5px;
	background-color: rgb(230, 230, 230);
	width: calc(100% - 10px);
}
.actionDiv .buttonList button {
	height: 46px;
	padding: 5px 10px;
	margin-right: 5px;
	font-size: 24px;
}
.actionDiv .buttonList button:last-child {
	margin-right: 0px;
}