.mt_iframe_comp {
	max-width: 1000.67px;
	max-height: 1000px;
	overflow: hidden;
}

#MT_modal .mt_iframe_comp {
	width: 800px;
}

.mt_iframe_comp_inner {
	position: relative;
	height: 0;    /* gets height from padding-bottom */
	overflow: hidden;
  /* put following styles (necessary for overflow and 
     scrolling handling) inline in .mt_iframe_comp_inner around the iframe because it is not stable in CSS
    -webkit-overflow-scrolling: touch; 
                      overflow: auto; */
  padding-bottom: 90%;
}

.mt_iframe_comp_inner iframe, 
.mt_iframe_comp_inner object, 
.mt_iframe_comp_inner img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-style: none;
	padding: 0;
	margin: 0;
}

@media(max-width:900px){
  #MT_modal .mt_iframe_comp {
      width: 90vw;
      }
}