.modal{
display: none;
position: fixed;
width: 100%;
height: 100vh;
background: rgba(0,0,0,.81);
}
.bodymodal{

	width: 100%;
	height:100%;
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: -ms-inline-flex;
	display: -o-inline-flex;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	/*background: #fff;*/

}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 1.6s;
  animation: animatezoom 0.8s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)}
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}