.v_modal {
	display: none; 
	position: fixed; 
	z-index: 99999; 
	padding-top: 50px; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%; 
	overflow: auto; 
	background-color: rgb(0, 0, 0); 
	background-color: rgba(0, 0, 0, 0.4); 
}
.v_modal_content {
	background-color: #fefefe;
	margin: auto;
	padding: 30px 20px 20px 20px;
	border: 1px solid #888;
	width: 70%;
    height:90%;
    position: relative;
}
.v_close {
	position:absolute;
    top:-10px;
    right:0px;
    color:rgba(255,255,255,.5);
    font-size:11px;
    padding:12px 11px;
    text-decoration:none;
    font-size:30px;
    color: black;
}

.v_close:hover,
.v_close:focus {
	color: red;
	text-decoration: none;
	cursor: pointer;
}

.v_container {
    height:100%;
}

@media(max-width:620px) {
    .v_modal_content {
	    background-color: #fefefe;
	    margin: auto;
	    padding: 20px;
	    border: 1px solid #888;
	    width: 95%;
    }
}