<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Block: Popup */
.wdg-popup {
	position: fixed;
	bottom: 0;
	z-index: 3000;
	left: 0;
	right: 0;
	margin: auto;
	margin-bottom: 5%;
	display: none;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* Element: Popup Body */
.wdg-popup__body {
	position: relative;
	max-width: 900px;
	max-height: 500px;
	width: 100%;
	height: auto;
	min-height: 200px;
	margin: auto;
	background: linear-gradient(
		34.1deg,
		#ffffff 48.93%,
		rgba(242, 244, 246, 0.56) 100%
	);
	border: 1px solid #d0d5db;
	border-radius: 7px;
	padding: 40px;
	box-sizing: border-box;
}

/* Element: Close Button */
.wdg-popup__close {
	position: absolute;
	right: -13px;
	top: -13px;
	height: 32px;
	width: 32px;
	border-radius: 50%;
	background: linear-gradient(
		34.1deg,
		#ffffff 48.93%,
		rgba(242, 244, 246, 0.56) 100%
	);
	z-index: 1;
}

.wdg-popup__close-btn {
	width: 100%;
	height: 100%;
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
	color: #1a2845;
	background: none;
	border: none;
	cursor: pointer;
}

/* Element: Header */
.wdg-popup__header {
	margin-bottom: 1rem;
}

.wdg-popup__title {
	color: #1a2845;
	font-weight: bold;
	font-size: 1.875rem;
	line-height: 1.2;
	margin: 0;
}

/* Modifier: Header Alignment */
.wdg-popup__header--left { text-align: left; }
.wdg-popup__header--right { text-align: right; }
.wdg-popup__header--center { text-align: center; }
.wdg-popup__header--hidden { display: none; }

/* Element: Content Container */
.wdg-popup__container {
	display: flex;
	gap: 20px;
	margin: 15px 0;
}

/* Modifier: Container Layout */
.wdg-popup__container--left { flex-direction: row; }
.wdg-popup__container--right { flex-direction: row-reverse; }
.wdg-popup__container--top { flex-direction: column; }
.wdg-popup__container--bottom { flex-direction: column-reverse; }

/* Element: Content */
.wdg-popup__content {
	flex: 1;
	padding: 0 15px;
	font-size: 18px;
	line-height: 1.4;
}

.wdg-popup__content--vertical {
	min-height: 200px;
}

/* Element: Image Container */
.wdg-popup__image {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Modifier: Image Layout */
.wdg-popup__image--side {
	flex: 0 0 345px;
	max-width: 345px;
}

.wdg-popup__image--vertical {
	width: 100%;
	height: 200px;
}

/* Element: Image */
.wdg-popup__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: 50%;
	
}

.wdg-popup__img--portrait {
	max-width: 345px;
	max-height: 445px;
}

.wdg-popup__img--landscape {
	height: 200px;
}

/* Form Styles */
.wdg-popup .gform_wrapper {
	margin: 0;
	padding: 10px 0;
}

.wdg-popup .gform_body {
	font-size: 10px;
}

.wdg-popup .gform_body input:not([type=submit]):not([type=file]):not([type=radio]):not([type=checkbox]) {
	border-radius: 26px;
	background-color: #fff;
	max-width: 100%;
}

.wdg-popup .gform_body label:not(.form__row--focus) {
	top: 12px;
}

.wdg-popup__left-content h3,
.wdg-popup__right-content h3,
.wdg-popup__top-content h3,
.wdg-popup__center-content h3 {
	font-weight: bold;
	font-size: 25px;
	line-height: 37px;
	margin-top: 0;
}
</pre></body></html>