<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* codeDESIGN - mod_codedesign_responsive_popup.css */
@charset "utf-8";

/* POPUP CSS */
.codedesign_responsive_popup_wrapper [class^="col-"],
.codedesign_responsive_popup_wrapper [class*=" col-"] {
	padding-left: 0px;
	padding-right: 0px;
}
.codedesign_responsive_popup_wrapper div.container {
	padding-left: 0px;
	padding-right: 0px;
}
.codedesign_responsive_popup_wrapper {
	background: rgba(255, 255, 255, 0.6);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	overflow: auto;
	position: fixed;
	visibility: hidden;
	/* z-index: 10000; set in module settings */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	/*
	transition: all 0.33s ease-in-out;
	-moz-transition: all 0.33s ease-in-out;
	-o-transition: all 0.33s ease-in-out;
	-webkit-transition: all 0.33s ease-in-out;
	*/
}
@media only screen and (max-height: 800px) {

	.codedesign_responsive_popup_wrapper_inner {
		position: absolute;
		top: 30px;
	}
	
}
</pre></body></html>