/*.full-screen {
    display: block;      
    background: #000;
    border: none;         
    height: 100vh;        /
    width: 10;
}*/

.iframe-row{
	/*position: absolute;
	top: 0px;
	left: 0px;*/
	width: 1024px;
	height: 768px;
	overflow: hidden;
	border: 0px;
	visibility: visible;
	padding: 0;
}

iframe {
    opacity: 0; visibility: hidden;
    transition: opacity 0.5s;
}

.full-screen {
    /* (A1) COVER ENTIRE WINDOW */
    /*position: fixed;*/
    /*top: 0; left: 0;*/
    z-index: 999;
    width: 100%;
    height: 100%;
    border: 1px !important;
  
    /* (A2) BACKGROUND */
    /*background: rgb(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
  */
    /* (A3) CENTER CONTENT */
    /*display: flex;
    justify-content: center;
    align-items: center;
  */
    /* (A4) HIDE OVERLAY BY DEFAULT */
    
    /* (B) SHOW OVERLAY */
  
    opacity: 1;
    visibility: visible;
    zoom: 1;
	-moz-transform: scale(1);
        -moz-transform-origin: 0 0;
        -o-transform: scale(1);
        -o-transform-origin: 0 0;
        -webkit-transform: scale(1);
        -webkit-transform-origin: 0 0;
	overflow: scroll !important;
  }

  @media screen and (-webkit-min-device-pixel-ratio:0) {
  	.full-screen {
  		zoom: 1;
  	}
  }
