#app-smartpopup {
	
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	
	position: fixed;
	top: 0;
	left: 0;
	
	width: 80%;
	max-height: 85%;
	
	margin: 5%;
	margin-left: 10%;
	margin-right: 10%;
	
	padding: 2vw;
	border-radius: 2vw;
	
	background-color: rgb(var(--ColorBG), 0.9);
	
	overflow: hidden;
	
}

#app-smartpopup-modal {
	
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	
	width: 100%;
	height: 100vh;
	
	background-color: rgb(var(--ColorGradientDark), 0.3);
	
}