@media screen and (min-width: 100px) and (max-width: 700px) {
   #materialModalContent {
   
       	    min-width: 84%;
			   transform: translateY(100%);
  } 

 }
#materialModal{
	font-family:roboto;
	color:#222;
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.5);
	display:table;
	z-index:1000;
}
#materialModalCentered{
	/* display:table-cell; */
	vertical-align:middle;
	padding: 20px;
}
#materialModalContent{
	padding: 10px;
    position: sticky;
    background: white;
	   width: 26%;
	   margin: auto;
	    top: 50%;
		   
    -ms-transform: translateY(-50%);
    transform: translateY(342%);
}
#materialModalTitle{
	margin:10px;
	font-weight:bold;
	font-size:1em;
}
#materialModalText{
	margin:10px;
	margin-bottom:40px;
}
#materialModalButtons{
	width:calc(100% - 20px);
	position:absolute;
	bottom:0px;
}
.materialModalButton{
	margin:10px;
	font-weight:bold;
	cursor:pointer;
	text-align:center;
	float:right;
	text-transform:uppercase;
	padding:10px;
}
#materialModal.hide{
	opacity:0;
	transition:opacity 0.2s ease-out;
	pointer-events:none;
}
#materialModal.hide #materialModalCentered{
	transform:scale(0.8);
	transition:transform 0.2s ease-out;
}
#materialModal.show{
	opacity:1;
	transition:opacity 0.2s ease-in;
}
#materialModal.show #materialModalCentered{
	transform:scale(1);
	transition:transform 0.2s ease-in;
}
