#alert_box_container{
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
}
.alert_visible{
	opacity: 1;
	pointer-events:all;
}
.alert_invisible{
	opacity: 0;
	pointer-events:none;
}
#alert_box{
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #fff;
	display: flex;
	flex-direction: column;
	min-width:300px;
	padding:25px;
	border: var(--color) solid 3px;
	border-radius: 10px;
	box-shadow: 0px 2px 3px 2px rgba(0,0,0,0.5);
	transition-property: top;
}
.alert_visible #alert_box{
	top: 50%;
}
#alert_box_in{
	margin: auto 0;
	text-align: center;
}
#alert_box_in h2{
	color:var(--color);
	text-transform: uppercase;
	font-size: 1.1rem;
}
#alert_box_btn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 25px 0 0;
}
#alert_box_btn .alert_box_btn{
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 10px 15px;
	background:#000;
	color:#fff;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	text-transform: uppercase;
	font-size: 1.2rem;
	transition-property: background;
}
#alert_box_btn .alert_box_btn:last-of-type{
	margin-left: 15px;
}
#alert_box_btn .alert_box_btn:hover{
	background:var(--color);
}
#alert_box_btn .alert_box_btn svg{
	width: 25px;
	height: 25px;
	margin: 0 10px 0 0;
	fill:#fff;
}