#app-installation{
		display:none;
		
}

@media screen and (max-width: 600px) {

	#app-installation{
		width:fit-content;
		height:fit-content;
		display:block !important; 
	}
	
	#app-installation iframe{
		width:100vw;
		height:100vh;
	}
	
	/* Close Button */
        .close-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 32px;
            height: 32px;
            background: #f0f0f2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            color: #444;
            z-index: 10;
            transition: background 0.2s;
        }

        .close-btn:hover { background: #e2e2e5; }

}