@charset "utf-8";

.alert-popup{
	display: block;
	width: 320px;
	margin: 0 auto;
	border: 5px solid #565f6c;
	border-radius: 8px;
	padding: 30px;
	background-color: #fff;
	position: fixed;
	left: 50%;
	transform: translate(-50%);
	top: -15vh;
	z-index:9999;
	transition-duration: 1s;
	transition-timing-function: ease;
}
.alert-popup .alert-popup-title{
	margin: 0 20px;
	text-align: center;
	font-size: 150%;
	font-weight: bold;
}
.alert-popup .btn-close-alert-popup{
	position: absolute;
	right: 14px;
	top: 14px;
	width: 18px;
	height: 18px;
	cursor: pointer;
}
.alert-popup .btn-close-alert-popup img{
	width: 100%;
}
