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

.product-page-part-container {
	position:relative;
	margin-bottom:10px;
}

.product-page-custom-preview {
	width: 100%;
	min-height: 300px;
}

.product-page-custom-preview canvas {
	border:3px solid #F7F9F9;
	margin-bottom:5px;
	border-radius:5px;
}

.product-page-custom-form {
	width: 100%;
}

.product-page-custom-form input,
.product-page-custom-form label {
	width:100%;
	display:block;
}

.product-page-custom-form form {
	padding: 10px;
	border: 2px solid #F7F9F9;
	border-radius: 5px;
}

.product-page-custom-button {
	background-color: #2980b9;
	border: 2px solid #2980b9;
	border-radius: 5px;
	color: #fff;
	padding: 3px 10px;
	transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-webkit-transition: all .1s ease-in-out;
	margin-right:10px;
}

.product-page-custom-button,
a.product-page-custom-button {
	font-family: 'Montserrat', sans-serif;
	font-weight:bold;
	display: inline-block;
	width: 100%;
	text-align: center;
	border: 2px solid #2980b9;
	color: #2980b9;
	background: transparent;
	padding: 8px 45px;
	border-radius: 5px;
	transition: all 0.2s ease-out;
	margin: 5px 0;
	cursor: pointer;
}

.product-page-custom-button,
a.product-page-custom-button {
	color: #fff;
	background-color: #2980b9;
}

.product-page-custom-button:active,
a.product-page-custom-button :active {
	transform: scale(.95);
}

.product-page-custom-button:hover,
.comments .button-hollow {
	color: #2980b9;
	background: transparent;
}

.is-loading.product-page-part-container::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 2px solid #1C3C56;
	background: url('/static/ajax-spin-white.svg') center center no-repeat;
	background-size: 40px;
	background-color: #1c3c5691;
	border-radius: 5px;
	width: 100%;
	display: block;
	content: '';
}</pre></body></html>