.yz-modal {
	display: none;
}

.yz-modal-masker {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.4);
	width: 100%;
	height: 100%;
	z-index: 99;
}

.yz-modal-body {
	position: fixed;
	top: 50%;
	left: 0;
	background: rgba(0, 0, 0, 0.4);
	width: 100%;
	background: #fff;
	max-width: 640px;
	z-index: 99;
	margin: auto;
	right: 0px;
	transform: translate(0,-50%);
}


.yz-modal-header {
	display: flex;
	justify-content: space-between;
	height: 46px;
	align-items: center;
	padding: 0px 0px 0px 20px;
	line-height: 46px;
	background: #E4E4E4;
	font-size: 20px;
	overflow: hidden;
	color: #555555;
}

.yz-modal-content {
	padding: 40px;
	max-height: 500px;
	overflow: auto;
	overflow-x: hidden;
}

.yz-modal-footer {
	padding: 40px 20px 40px 20px;
	text-align: center;
}
.yz-modal-header .yz-modal-close {
	font-size: 24px;
	display: inline-block;
	padding: 0px 20px;
	cursor: pointer;
}

.yz-modal-header .yz-modal-close:hover {
	color: #337ab7;
}

.yz-modal-footer button {
	width: 127px;
	height: 40px;
	background: #125CB1;
	border-radius: 4px;
	text-align: center;
	/* line-height: 40px; */
	font-size: 20px;
	font-weight: 400;
	color: #FFFFFF;
}



@media screen and (max-width: 767px) {
	.yz-modal-body {
		width: 90%;
	}
	.yz-modal-content {
		padding: 20px;
		max-height: 320px;
	}
}