	.msg_modal, .msg_modal-box {  z-index: 900; cursor:pointer}
	.msg_modal {  display: block;   position: fixed;  width: 100%;  height: 100%;  left: 0;  top: 0;  background: rgb(0,0,0);  background: rgba(0,0,0,.5);  overflow: auto; }
	.msg_modal-box {  position: relative;  width: 80%;  max-width: 620px;  margin: 100px auto;  animation-name: modalbox;  animation-duration: .4s;  animation-timing-function: cubic-bezier(0,0,.3,1.6); }
	.msg_modal-header {   padding: 20px 40px;  background: #546E7A;  color: #ffffff; }
	.msg_modal-body {  background: #ECEFF1;  padding: 60px 40px;}
	.msg_close-modal {  text-align: right;  cursor: pointer; }

	/* Animation */
	@-webkit-keyframes modalbox {
	  0% {
		top: -250px; 
		opacity: 0;
	  }
	  100% {
		top: 0; 
		opacity: 1;
	  }
	}

	@keyframes modalbox {
	  0% {
		top: -250px; 
		opacity: 0;
	  }
	  100% {
		top: 0; 
		opacity: 1;
	  }
	}
