
.modal_overlay {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
	width: 100%;
	height: 100vh;
	display: none;
	z-index: 1000;
}

.modal_inner {
	z-index: 1001;
	position: fixed;
	left: 0;
	transition: all .2s;
	right: 0;
	top: 50%;
	width: 200px;
	transform: translateY(-50%) scale(0);
	margin: auto;
	border-radius: 4px;
	background: #fff;
	padding: 20px;
}

.modal_inner__content .close_modal {
	position: absolute;
	top: 10px;
	right: 10px;
	text-decoration: none;
	font-size: 13px;
	opacity: .4;
	transition: opacity .2s;
}

.modal_inner__content .close_modal:hover {
	opacity: 1;
}

.modal_inner__content .close_modal:focus {
	color: #000;
}
