@media only screen and (max-height: 810px) and (min-width: 768px) {

	.overlay-panel {
		padding: 20px;	
		margin-top: 10px;
		height: 90%;
	}

}
@media only screen and (min-width: 950px) {
	.overlay-panel {
	    margin-top: 0px;
	    padding: 50px;
	    position: absolute;
	    left: 50%;
	    top: 50%;
	    transform: translate(-50%,-50%);
	    -webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	    overflow: scroll;
	}
}