.dialog {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #ffffff;
	display: flex;
	justify-content: center;
	align-items: stretch;
	overflow: auto;
	z-index: 999999999;
}

.dialog--show.disable {
	display: none;
}

.dialog_close {
	position: absolute;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0);
	top: 10px;
	right: 10px;
	margin: auto;
}

.dialog_close span {
	width: 40px;
	height: 3px;
	display: block;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 15px;
	border-radius: 2px;
	-webkit-transition: .4s;
	transition: .4s;
	background: #000000;
}

.dialog_close span:first-of-type {
	-webkit-transform: translateY(9px) rotate(-45deg);
	transform: translateY(9px) rotate(-45deg);
}

.dialog_close span:last-of-type {
	-webkit-transform: translateY(9px) rotate(45deg);
	transform: translateY(9px) rotate(45deg);
}

.dialog_box {
	width: 100%;
	background: #ffffff;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.dialog_box--inner_message {
	font-size: 21px;
	font-weight: 500;
	margin: 0px !important;
}

@media screen and (max-width: 768px) {
	.dialog_box--inner_message {
		font-size: 19px;
		width: 100%;
	}
}

.dialog_box--button {
	cursor: pointer;
	margin: 30px auto;
	padding: 10px 0;
	background: #f7931e;
	color: #ffffff;
	padding: 10px 0;
	margin: 20px auto 0;
	width: 60%;
	max-width: 350px;
	border-radius: 5px;
	font-weight: 700;
	border: none;
}

@media screen and (max-width: 768px) {
	.dialog_box--button {
		width: 90%;
	}
}
