/* modal*/
.modal{
	width:100vw;
	height:100vh;
	display:compact;
	display:flex;
	justify-content:center;
	align-items: center;
	position:fixed;
	top:0;
	left:0;
	background: rgba(0,0,0,0.459);
 }
 .modal_content{
	 width:95%;
	 max-width:500px;
	 padding:25px;
	 position:relative;	 
	 background:#FFF;
	 border-radius:5px;
	 box-sizing:border-box;
 }
 .modal-btn-closed{
	 position:absolute;
	 top:5px;
	 right:5px;
	 background:none;
	 border:none;
	 outline:none;
	 font-size:18px;
	 cursor:pointer;
 }