.dn-notice {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99999;
	padding: 15px;
	background: rgba(0, 0, 0, .55);
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow-y: auto;
}

.dn-notice.dn-notice--open {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.dn-notice__box {
	position: relative;
	width: 100%;
	max-width: 480px;
	padding: 28px 26px 24px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
	font-size: 14px;
	line-height: 1.5;
	text-align: left;
}

.dn-notice__title {
	margin: 0 0 12px;
	padding: 0;
	font-size: 18px;
	line-height: 1.3;
}

.dn-notice__text p {
	margin: 0 0 10px;
}

.dn-notice__text p:last-child {
	margin-bottom: 0;
}

.dn-notice__close {
	position: absolute;
	top: 4px;
	right: 10px;
	padding: 0;
	border: 0;
	background: none;
	color: #777;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.dn-notice__close:hover {
	color: #333;
}

.dn-notice__ok {
	margin-top: 16px;
}

@media (max-width: 480px) {
	.dn-notice__box {
		padding: 24px 18px 20px;
	}
}
