
.sp-modal-wrapper .blocker {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 100000;
	padding: 20px;
	box-sizing: border-box;
	background-color: #000;
	background-color: rgba(0, 0, 0, .75);
	text-align: center;
}

.sp-modal-wrapper .blocker:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -.05em;
}

.sp-modal-wrapper .blocker.behind {
	background-color: rgba(0, 0, 0, 0);
}

.sp-modal-wrapper .modal:not(.in) {
	display: none;
	vertical-align: middle;
	position: relative;
	z-index: 2;
	max-width: 500px;
	box-sizing: border-box;
	width: 90%;
	background: #fff;
	padding: 15px 30px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0 0 10px #000;
	-moz-box-shadow: 0 0 10px #000;
	-o-box-shadow: 0 0 10px #000;
	-ms-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
	text-align: left;
}

.sp-modal-wrapper .modal a.close-modal {
	position: absolute;
	top: -12.5px;
	right: -12.5px;
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==");
}

.sp-modal-wrapper .modal a.close-modal.nitro-lazy {
	background-image: none !important;
}

.sp-modal-wrapper .modal-spinner {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	padding: 12px 16px;
	border-radius: 5px;
	background-color: #111;
	height: 20px;
}

.sp-modal-wrapper .modal-spinner>div {
	border-radius: 100px;
	background-color: #fff;
	height: 20px;
	width: 2px;
	margin: 0 1px;
	display: inline-block;
	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.sp-modal-wrapper .modal-spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.sp-modal-wrapper .modal-spinner .rect3 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

.sp-modal-wrapper .modal-spinner .rect4 {
	-webkit-animation-delay: -.9s;
	animation-delay: -.9s;
}

@-webkit-keyframes sk-stretchdelay {
	0%, 40%, 100% {
		-webkit-transform: scaleY(.5);
	}
	
	20% {
		-webkit-transform: scaleY(1);
	}
}

@keyframes sk-stretchdelay {
	0%, 40%, 100% {
		transform: scaleY(.5);
		-webkit-transform: scaleY(.5);
	}
	
	20% {
		transform: scaleY(1);
		-webkit-transform: scaleY(1);
	}
}

.santapress-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 800px;
	margin: auto;
}

.santapress-container:after {
	content: "";
	display: table;
	clear: both;
}

.santapress-container .santapress-door {
	line-height: 0;
	position: relative;
}

.santapress-container .santapress-door .santapress-door-inner {
	box-sizing: border-box !important;
	padding: 3px;
}

.santapress-container .santapress-door .santapress-door-inner a {
	transition: none;
	box-shadow: none;
	border: 0;
	display: block;
	text-decoration: none !important;
	position: relative;
}

.santapress-container .santapress-door .santapress-door-inner a:focus {
	outline: none;
}

.santapress-container .santapress-door .santapress-door-inner a img {
	width: 100%;
	height: auto;
	box-shadow: none;
	box-shadow: none;
	text-decoration: none;
	border: 0;
	transition: all 400ms;
	transition: all .5s ease-in-out;
	transform-origin: left;
}

.santapress-container .santapress-door .santapress-door-inner a.open img {
	transform: perspective(1200px) translateZ(0px) translateX(0px) translateY(0px) rotateY(-45deg);
}

.santapress-container .santapress-door .santapress-door-inner a.loaded {
	background: #999;
}

.santapress-container .santapress-door.status-future {
	opacity: .5;
	pointer-events: none;
}

.santapress-container .santapress-door.preview {
	opacity: 1;
	pointer-events: auto;
}

.santapress-container .santapress-door:hover {
	animation: dangle 400ms 1;
}

.santapress-container .santapress-door:hover a {
	text-decoration: none;
}

.santapress-container .santapress-door {
	display: inline-block;
	width: 20%;
	flex: 1 0 20%;
	min-width: 1%;
}

@media (max-width: 767px) {
	.santapress-container .santapress-door {
		flex: 1 0 50%;
	}
}

.santapress-container.w-24-doors .santapress-door {
	display: inline-block;
	width: 25%;
	flex: 1 0 25%;
	min-width: 1%;
}

@media (max-width: 767px) {
	.santapress-container.w-24-doors .santapress-door {
		flex: 1 0 50%;
	}
}

@media only screen and (min-width: 768px) {
	.santapress-container.cols-1 .santapress-door {
		width: 100%;
		flex: 1 0 100%;
	}
	
	.santapress-container.cols-2 .santapress-door {
		width: 50%;
		flex: 1 0 50%;
	}
	
	.santapress-container.cols-3 .santapress-door {
		width: 33.3333333333%;
		flex: 1 0 33.3333333333%;
	}
	
	.santapress-container.cols-4 .santapress-door {
		width: 25%;
		flex: 1 0 25%;
	}
	
	.santapress-container.cols-5 .santapress-door {
		width: 20%;
		flex: 1 0 20%;
	}
	
	.santapress-container.cols-6 .santapress-door {
		width: 16.6666666667%;
		flex: 1 0 16.6666666667%;
	}
	
	.santapress-container.cols-7 .santapress-door {
		width: 14.2857142857%;
		flex: 1 0 14.2857142857%;
	}
	
	.santapress-container.cols-8 .santapress-door {
		width: 12.5%;
		flex: 1 0 12.5%;
	}
	
	.santapress-container.cols-9 .santapress-door {
		width: 11.1111111111%;
		flex: 1 0 11.1111111111%;
	}
	
	.santapress-container.cols-10 .santapress-door {
		width: 10%;
		flex: 1 0 10%;
	}
}

@-webkit-keyframes dangle {
	0% {
		transform: translateX(0);
	}
	
	35% {
		transform: translateX(-5px);
	}
	
	75% {
		transform: translateX(5px);
	}
}

.santapress-post.modal {
	position: relative;
	min-height: 400px;
	visibility: visible;
	overflow: visible !important;
	height: auto;
}

@media (max-width: 767px) {
	.santapress-post.modal {
		padding-left: 0;
		padding-right: 0;
	}
}

.santapress-post.modal:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	width: 100%;
	background-image: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/optimized/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/bg_pattern.png");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position-y: -105px;
	z-index: -1;
}

.santapress-post.modal p {
	color: #000;
}

.santapress-post.modal:before {
	content: "";
	position: absolute;
	left: -31px;
	top: -49px;
	background: url("https://6uhrclub.de/wp-content/plugins/santapress/public/img/santa_hat.png") no-repeat;
	width: 175px;
	height: 168px;
	background-size: contain;
}

h1.santapress-title {
	width: 75%;
	margin: 10px auto 25px auto;
	padding: 0;
	text-align: center;
	font-family: "Lobster", serif;
	font-size: 55px;
	line-height: normal;
	line-height: 45px;
	font-weight: bold;
	color: #de2e2e;
	border: 0;
	position: relative;
	height: 60px;
	letter-spacing: normal;
	text-shadow: -2px -2px 4px red, 2px -2px 4px red, -2px 2px 4px red, 2px 2px 4px red, 5px 7px 9px rgba(0, 0, 0, .6);
	text-rendering: auto;
	transform: scale(1.3);
}

h1.santapress-title:before {
	display: none !important;
}

h1.santapress-title:after {
	display: none !important;
}

.santapress-post-inner img {
	max-width: 100%;
	height: auto;
}

.santapress-post-inner blockquote {
	margin: 0;
	border: 0;
	font-style: normal;
	font-family: "Bree Serif", sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: normal;
	padding: 0;
	width: 100%;
}

.santapress-post-inner blockquote:before, .santapress-post-inner blockquote:after {
	display: none;
}

.santapress-post-inner blockquote p {
	font-family: "Bree Serif", sans-serif;
	font-size: 15px;
	font-weight: normal;
	font-weight: 400;
	line-height: normal;
}

.santapress-post-inner blockquote footer {
	font-family: "Bree Serif", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	margin-top: 10px;
	border: 0;
	color: #000;
}

.santapress-post-inner blockquote footer:before {
	content: "- ";
}

.santapress-post-inner blockquote footer:after {
	content: "- ";
}

@media (max-width: 767px) {
	.santapress-post-inner {
		width: auto;
	}
}

.blocker {
	z-index: 999998;
	transform: translateZ(1000px);
	transform-style: preserve-3d;
}

body.santapress-snow-modal .santapress-post.modal {
	z-index: 9999999;
}

body.santapress-snow-modal .blocker:after {
	content: "";
	transform: translateY(-5000px);
	opacity: 0;
	transition: opacity 2000ms linear;
}

body.santapress-snow-modal.modal-open .blocker:after {
	transform: translateY(0);
	opacity: 1;
}

body.santapress-snow-everywhere .spsnow {
	opacity: 0;
	transition: opacity 2000ms linear;
}

body.santapress-snow-everywhere.santapress-snow-everywhere-active .spsnow {
	opacity: 1;
}

_:-ms-lang(x), body.santapress-snow-everywhere .spsnow {
	display: none \9;
}

@media screen and (min-width: 0\0 )and (min-resolution: 0.001dpcm) {
	body.santapress-snow-everywhere .spsnow {
		display: none !important;
	}
}

.santapress-snow, body.santapress-snow-modal .blocker:after, body.santapress-snow-everywhere .spsnow {
	width: 100%;
	height: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999 !important;
	z-index: 1;
	background: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/optimized/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/sp_snow1.png"), url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/optimized/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/sp_snow2.png"), url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/optimized/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/sp_snow3.png");
	animation: snow 15s linear 1s infinite;
	will-change: animation;
	pointer-events: none;
}

.snow.snow_home {
	height: 400px !important;
}

@keyframes snow {
	0% {
		background-position: 0 0, 0 0, 0 0;
	}
	
	50% {
		background-position: 250px 500px, 250px 250px, -250px 250px;
	}
	
	100% {
		background-position: 500px 1000px, 500px 500px, -500px 500px;
	}
}

.santapress-btn {
	display: inline-block;
}

.sp-icon {
	display: block;
	margin: 25px auto;
}

.santapress-door.santapress-layout-04 .santapress-door-inner a.loaded {
	background: rgba(0, 0, 0, 0);
}

.sp_icon {
	display: inline-block;
	margin-top: 25px;
}

.hiddenmode {
	display: none;
}

.santapress-container-outer {
	background: #000;
	background: rgba(0, 0, 0, .85);
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1100;
	top: 0;
	left: 0;
	display: none;
	padding: 15px;
	overflow-y: auto;
}

.santapress-container-outer .santapress-container {
	max-width: 650px;
	margin: 5% auto;
	transform: translateY(-1200px);
	transition: all 500ms ease-in-out;
	transition-delay: 500ms;
}

.santapress-container-outer .santapress-snow, .santapress-container-outer body.santapress-snow-modal .blocker:after, body.santapress-snow-modal .santapress-container-outer .blocker:after, .santapress-container-outer body.santapress-snow-everywhere .spsnow, body.santapress-snow-everywhere .santapress-container-outer .spsnow {
	opacity: 0;
	transition: opacity 1000ms linear;
	transition-delay: 800ms;
}

.santapress-container-outer.active .santapress-container {
	transform: translateY(0);
}

.santapress-container-outer.active .santapress-snow, .santapress-container-outer.active body.santapress-snow-modal .blocker:after, body.santapress-snow-modal .santapress-container-outer.active .blocker:after, .santapress-container-outer.active body.santapress-snow-everywhere .spsnow, body.santapress-snow-everywhere .santapress-container-outer.active .spsnow {
	opacity: 1;
}

#sp-close-hidden-mode {
	width: 30px;
	height: 30px;
	position: absolute;
	right: 0;
	top: 12px;
	background-image: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/source/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/close.svg");
	background-size: contain;
	z-index: 9999;
	display: block;
}

#sp-close-hidden-mode.nitro-lazy {
	background-image: none !important;
}

@media (max-width: 767px) {
	#sp-close-hidden-mode {
		top: 6px;
	}
}

h1.santapress-title {
	margin: 0 0 10px 0;
	padding: 0;
	color: #fff;
	font-size: 44px;
	font-family: "Lobster";
	line-height: normal;
	transform: scale(1) !important;
	text-align: left;
}

@media (max-width: 767px) {
	h1.santapress-title {
		font-size: 36px;
	}
}

h1.santapress-title:before, h1.santapress-title:after {
	display: none !important;
}

h2.santapress-subtitle {
	margin: 0 0 25px 0;
	padding: 0;
	color: #fff;
	font-size: 15px;
	font-family: "Bree Serif";
	line-height: normal;
	width: 100%;
}

h2.santapress-subtitle:before, h2.santapress-subtitle:after {
	display: none !important;
}

#santapress-trigger {
	position: fixed;
	z-index: 999;
	right: 10px;
	top: 10px;
	padding: 10px 5px;
}

#santapress-trigger>span {
	background-image: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/optimized/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/default_trigger.png");
	background-repeat: no-repeat;
	width: 60px;
	height: 91px;
	background-size: contain;
	display: block;
	z-index: 1001;
	cursor: pointer;
}

#santapress-trigger>span.nitro-lazy {
	background-image: none !important;
}

#santapress-trigger:hover {
	animation: dangle 400ms 1;
}

.santapress-post.modal {
	transform: scale(.95);
	transition: all 400ms;
}

.santapress-post.modal:hover {
	transform: scale(1);
}

.spquiz h2.spquiz-question {
	margin: 20px auto 40px;
	padding: 0;
	text-align: left;
	font-family: "Bree Serif", serif;
	font-size: 24px;
	line-height: normal;
	line-height: 1.2;
	font-weight: bold;
	color: #555;
	border: 0;
	position: relative;
	letter-spacing: normal;
}

.spquiz h2.spquiz-question:before {
	display: none !important;
}

.spquiz h2.spquiz-question:after {
	display: none !important;
}

.spquiz .spquiz-answer {
	font-size: 15px;
	font-family: "Bree Serif";
	line-height: normal;
	padding: 5px 0;
	background: hsla(0, 0%, 100%, .2);
	border-radius: 20px;
	margin-bottom: 20px;
	transition: background 400ms;
	cursor: pointer;
	position: relative;
	border: 3px solid #ccc;
	text-align: center;
}

.spquiz .spquiz-answer:hover {
	box-shadow: -2px -2px 4px red, 2px -2px 4px red, -2px 2px 4px red, 2px 2px 4px red, 5px 8px 10px rgba(0, 0, 0, .4);
	background: #fff;
	color: red !important;
}

.spquiz-loader, .spquiz-result .wpcf7 .ajax-loader {
	width: 24px;
	height: 24px;
	display: block;
	display: none;
	position: absolute;
	right: -34px;
	top: 3px;
	background-image: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/optimized/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/loader.gif");
	background-repeat: no-repeat;
	background-size: contain;
}

.spquiz-loader.nitro-lazy, .spquiz-result .wpcf7 .ajax-loader.nitro-lazy {
	background-image: none !important;
}

.spquiz-result {
	display: none;
}

.spquiz-result p {
	font-size: 15px;
	font-family: "Bree Serif";
	line-height: 1.2;
}

.spquiz-result .wpcf7 {
	margin-top: 2em;
}

.spquiz-result .wpcf7 input[type=text], .spquiz-result .wpcf7 input[type=email], .spquiz-result .wpcf7 input[type=url], .spquiz-result .wpcf7 input[type=password], .spquiz-result .wpcf7 input[type=search], .spquiz-result .wpcf7 input[type=number], .spquiz-result .wpcf7 input[type=tel], .spquiz-result .wpcf7 input[type=range], .spquiz-result .wpcf7 input[type=date], .spquiz-result .wpcf7 input[type=month], .spquiz-result .wpcf7 input[type=week], .spquiz-result .wpcf7 input[type=time], .spquiz-result .wpcf7 input[type=datetime], .spquiz-result .wpcf7 input[type=datetime-local], .spquiz-result .wpcf7 input[type=color], .spquiz-result .wpcf7 textarea {
	color: #555;
	background: #fff;
	background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
	border: 0;
	border-radius: 3px;
	display: block;
	padding: .7em;
	width: 100%;
	box-sizing: border-box;
}

.spquiz-result .wpcf7 textarea {
	max-height: 125px;
}

.spquiz-result .wpcf7 .wpcf7-form-control-wrap {
	margin: 5px 0;
	display: block;
}

.spquiz-result .wpcf7 button, .spquiz-result .wpcf7 input[type=button], .spquiz-result .wpcf7 input[type=submit] {
	background-color: #222;
	border: 0;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-size: .875rem;
	font-weight: 800;
	line-height: 1;
	padding: 1em 2em;
	text-shadow: none;
	-webkit-transition: background .2s;
	transition: background .2s;
	margin-left: 29px;
}

.spquiz-result .wpcf7 div.wpcf7-response-output {
	font-size: 15px;
	font-family: "Bree Serif";
	line-height: 1.2;
	border: 0 !important;
}

.spquiz-result .wpcf7 .ajax-loader {
	position: relative;
	display: inline-block;
	right: 0;
	top: 0;
	margin-left: 5px;
}

.spquiz-back {
	display: inline-block;
	margin: 1em 0 0 0;
	cursor: pointer;
}

.santapress-post.modal h1.santapress-title, .santapress-post.modal h2.spquiz-question {
	text-align: center;
}

.santapress-post.modal .spquiz-answer {
	border-color: hsla(0, 0%, 100%, .8);
}

.santapress-post.modal .santapress-post-inner {
	padding: 20px;
	width: auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.santapress-post.modal blockquote {
	text-align: center;
}

.santapress-post.modal.santapress-layout-01 {
	background: #c2703d;
	background: -moz-radial-gradient(center, ellipse cover, #c2703d 1%, #7a4723 100%);
	background: -webkit-radial-gradient(center, ellipse cover, #c2703d 1%, #7a4723 100%);
	background: radial-gradient(ellipse at center, #c2703d 1%, #7a4723 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c2703d", endColorstr="#7a4723", GradientType=1);
	border: 26px double #8d522a;
	position: relative;
	padding-bottom: 80px;
}

.santapress-post.modal.santapress-layout-01 h1.santapress-title, .santapress-post.modal.santapress-layout-01 h2.spquiz-question {
	color: #fff;
}

.santapress-post.modal.santapress-layout-01 p, .santapress-post.modal.santapress-layout-01 footer {
	color: #fff;
	text-align: center;
	margin-bottom: 0;
}

.santapress-post.modal.santapress-layout-01 .spquiz-answer, .santapress-post.modal.santapress-layout-01 .spquiz-result p, .santapress-post.modal.santapress-layout-01 .wpcf7-form label, .santapress-post.modal.santapress-layout-01 div.wpcf7-response-output {
	color: #fff;
}

.santapress-post.modal.santapress-layout-01 a.close-modal {
	background-image: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/source/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/close.svg");
	background-size: contain;
	top: -35.5px;
	right: -36.5px;
}

.santapress-post.modal.santapress-layout-01 a.close-modal.nitro-lazy {
	background-image: none !important;
}

.santapress-post.modal.santapress-layout-01:before {
	content: "";
	position: absolute;
	bottom: 0;
	top: auto;
	top: auto;
	left: 0;
	right: 0;
	height: 100px;
	height: 150px;
	width: 100%;
	background-image: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/optimized/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/bg_pattern2.png");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position-y: 15px;
	z-index: -1;
	display: block !important;
}

@media (max-width: 767px) {
	.santapress-post.modal.santapress-layout-01:before {
		background-position-y: bottom;
	}
}

.santapress-post.modal.santapress-layout-02 {
	background-color: #e94444;
	position: relative;
	background: #e94444;
	background: -moz-radial-gradient(center, ellipse cover, #e94444 1%, #690303 100%);
	background: -webkit-radial-gradient(center, ellipse cover, #e94444 1%, #690303 100%);
	background: radial-gradient(ellipse at center, #e94444 1%, #690303 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e94444", endColorstr="#690303", GradientType=1);
}

.santapress-post.modal.santapress-layout-02 h1.santapress-title, .santapress-post.modal.santapress-layout-02 h2.spquiz-question {
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .4);
}

.santapress-post.modal.santapress-layout-02 p, .santapress-post.modal.santapress-layout-02 footer {
	color: #fff;
	text-align: center;
	margin-bottom: 0;
}

.santapress-post.modal.santapress-layout-02 .spquiz-answer, .santapress-post.modal.santapress-layout-02 .spquiz-result p, .santapress-post.modal.santapress-layout-02 .wpcf7-form label, .santapress-post.modal.santapress-layout-02 div.wpcf7-response-output {
	color: #fff;
}

.santapress-post.modal.santapress-layout-02 a.close-modal {
	background-image: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/source/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/close.svg");
	background-size: contain;
	top: -11.5px;
	right: -14.5px;
}

.santapress-post.modal.santapress-layout-02 a.close-modal.nitro-lazy {
	background-image: none !important;
}

.santapress-post.modal.santapress-layout-02:before {
	content: "";
	position: absolute;
	bottom: 0;
	top: auto;
	top: auto;
	left: 0;
	right: 0;
	height: 100px;
	height: 150px;
	width: 100%;
	background-image: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/optimized/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/bg_pattern2.png");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position-y: 15px;
	z-index: -1;
	display: block !important;
}

@media (max-width: 767px) {
	.santapress-post.modal.santapress-layout-02:before {
		background-position-y: bottom;
	}
}

.santapress-post.modal.santapress-layout-03 {
	background-color: #79c9cb;
	background-image: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/optimized/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/modal/03/bg.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 0 -180px;
	position: relative;
}

.santapress-post.modal.santapress-layout-03.nitro-lazy {
	background-image: none !important;
}

.santapress-post.modal.santapress-layout-03 h1.santapress-title, .santapress-post.modal.santapress-layout-03 h2.spquiz-question {
	color: #555;
	text-shadow: 1px 1px 3px hsla(0, 0%, 100%, .8);
}

.santapress-post.modal.santapress-layout-03 p, .santapress-post.modal.santapress-layout-03 footer {
	color: #555;
	text-shadow: 1px 1px 3px hsla(0, 0%, 100%, .8);
	text-align: center;
	margin-bottom: 0;
}

.santapress-post.modal.santapress-layout-03 .spquiz-answer, .santapress-post.modal.santapress-layout-03 .spquiz-result p, .santapress-post.modal.santapress-layout-03 .wpcf7-form label, .santapress-post.modal.santapress-layout-03 div.wpcf7-response-output {
	color: #555;
}

.santapress-post.modal.santapress-layout-03 a.close-modal {
	background-image: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/source/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/modal/03/close.svg");
	background-size: contain;
	top: -11.5px;
	right: -14.5px;
}

.santapress-post.modal.santapress-layout-03 a.close-modal.nitro-lazy {
	background-image: none !important;
}

.santapress-post.modal.santapress-layout-03:before {
	content: "";
	position: absolute;
	bottom: 0;
	top: auto;
	top: auto;
	left: 0;
	right: 0;
	height: 100px;
	height: 150px;
	width: 100%;
	background-image: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/optimized/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/bg_pattern2.png");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position-y: 15px;
	z-index: -1;
	display: block !important;
}

@media (max-width: 767px) {
	.santapress-post.modal.santapress-layout-03:before {
		background-position-y: bottom;
	}
}

.santapress-post.modal.santapress-layout-04 {
	position: relative;
	background: #dbdb56;
	background: -moz-radial-gradient(center, ellipse cover, #dbdb56 1%, #343a0e 100%);
	background: -webkit-radial-gradient(center, ellipse cover, #dbdb56 1%, #343a0e 100%);
	background: radial-gradient(ellipse at center, #dbdb56 1%, #343a0e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dbdb56", endColorstr="#343a0e", GradientType=1);
}

.santapress-post.modal.santapress-layout-04 h1.santapress-title, .santapress-post.modal.santapress-layout-04 h2.spquiz-question {
	color: #fff;
}

.santapress-post.modal.santapress-layout-04 h2.spquiz-question {
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .72);
}

.santapress-post.modal.santapress-layout-04 p, .santapress-post.modal.santapress-layout-04 footer {
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .72);
	text-align: center;
	margin-bottom: 0;
}

.santapress-post.modal.santapress-layout-04 .spquiz-answer, .santapress-post.modal.santapress-layout-04 .spquiz-result p, .santapress-post.modal.santapress-layout-04 .wpcf7-form label, .santapress-post.modal.santapress-layout-04 div.wpcf7-response-output {
	color: #fff;
}

.santapress-post.modal.santapress-layout-04 a.close-modal {
	background-image: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/source/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/close.svg");
	background-size: contain;
	top: -11.5px;
	right: -14.5px;
}

.santapress-post.modal.santapress-layout-04 a.close-modal.nitro-lazy {
	background-image: none !important;
}

.santapress-post.modal.santapress-layout-05 {
	background: #e94444;
	background: -moz-radial-gradient(center, ellipse cover, #e94444 1%, #690303 100%);
	background: -webkit-radial-gradient(center, ellipse cover, #e94444 1%, #690303 100%);
	background: radial-gradient(ellipse at center, #e94444 1%, #690303 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e94444", endColorstr="#690303", GradientType=1);
	position: relative;
}

.santapress-post.modal.santapress-layout-05 h1.santapress-title, .santapress-post.modal.santapress-layout-05 h2.spquiz-question {
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .75);
}

.santapress-post.modal.santapress-layout-05 p, .santapress-post.modal.santapress-layout-05 footer {
	color: #fff;
	text-align: center;
	margin-bottom: 0;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .75);
}

.santapress-post.modal.santapress-layout-05 .spquiz-answer, .santapress-post.modal.santapress-layout-05 .spquiz-result p, .santapress-post.modal.santapress-layout-05 .wpcf7-form label, .santapress-post.modal.santapress-layout-05 div.wpcf7-response-output {
	color: #fff;
}

.santapress-post.modal.santapress-layout-05 a.close-modal {
	background-image: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/source/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/close.svg");
	background-size: contain;
	top: -11.5px;
	right: -14.5px;
}

.santapress-post.modal.santapress-layout-05 a.close-modal.nitro-lazy {
	background-image: none !important;
}

.santapress-post.modal.santapress-layout-05:before {
	content: "";
	position: absolute;
	bottom: 0;
	top: auto;
	top: auto;
	left: 0;
	right: 0;
	height: 100px;
	height: 100%;
	width: 100%;
	background-image: url("https://6uhrclub.de/wp-content/plugins/santapress/public/img/modal/05/bg.png");
	background-size: cover;
	background-size: 100%;
	background-repeat: no-repeat;
	z-index: -1;
	display: block !important;
}

.santapress-post.modal.santapress-layout-06 {
	background: #dbdb56;
	background: -moz-radial-gradient(center, ellipse cover, #dbdb56 1%, #343a0e 100%);
	background: -webkit-radial-gradient(center, ellipse cover, #dbdb56 1%, #343a0e 100%);
	background: radial-gradient(ellipse at center, #dbdb56 1%, #343a0e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dbdb56", endColorstr="#343a0e", GradientType=1);
	position: relative;
}

.santapress-post.modal.santapress-layout-06 h1.santapress-title, .santapress-post.modal.santapress-layout-06 h2.spquiz-question {
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .6);
}

.santapress-post.modal.santapress-layout-06 p, .santapress-post.modal.santapress-layout-06 footer {
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .6);
	text-align: center;
	margin-bottom: 0;
}

.santapress-post.modal.santapress-layout-06 .spquiz-answer, .santapress-post.modal.santapress-layout-06 .spquiz-result p, .santapress-post.modal.santapress-layout-06 .wpcf7-form label, .santapress-post.modal.santapress-layout-06 div.wpcf7-response-output {
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .6);
}

.santapress-post.modal.santapress-layout-06 a.close-modal {
	background-image: url("https://6uhrclub.de/wp-content/plugins/santapress/public/img/modal/06/close.svg");
	background-size: contain;
	top: -11.5px;
	right: -14.5px;
}

.santapress-post.modal.santapress-layout-06 a.close-modal.nitro-lazy {
	background-image: none !important;
}

.santapress-post.modal.santapress-layout-06:before {
	content: "";
	position: absolute;
	bottom: 0;
	top: auto;
	top: auto;
	top: 14px;
	left: 0;
	left: 15px;
	right: 0;
	width: 100px;
	background-image: url("https://6uhrclub.de/wp-content/plugins/santapress/public/img/modal/06/bg.png");
	background-position: 6% 5%;
	background-size: cover;
	background-size: 100%;
	background-repeat: no-repeat;
	z-index: -1;
	display: block !important;
	height: 100px;
}

.santapress-post.modal.santapress-layout-07 {
	background-color: #d3b229;
	background-image: url("https://6uhrclub.de/wp-content/plugins/santapress/public/img/modal/07/bg.png");
	background-size: contain;
	position: relative;
}

.santapress-post.modal.santapress-layout-07.nitro-lazy {
	background-image: none !important;
}

.santapress-post.modal.santapress-layout-07 h1.santapress-title, .santapress-post.modal.santapress-layout-07 h2.spquiz-question {
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .55);
}

.santapress-post.modal.santapress-layout-07 p, .santapress-post.modal.santapress-layout-07 footer {
	color: #000;
	text-align: center;
	margin-bottom: 0;
}

.santapress-post.modal.santapress-layout-07 .spquiz-answer, .santapress-post.modal.santapress-layout-07 .spquiz-result p, .santapress-post.modal.santapress-layout-07 .wpcf7-form label, .santapress-post.modal.santapress-layout-07 div.wpcf7-response-output {
	color: #000;
}

.santapress-post.modal.santapress-layout-07 a.close-modal {
	background-image: url("https://6uhrclub.de/wp-content/plugins/santapress/public/img/modal/07/close.svg");
	background-size: contain;
	top: -11.5px;
	right: -14.5px;
}

.santapress-post.modal.santapress-layout-07 a.close-modal.nitro-lazy {
	background-image: none !important;
}

.santapress-post.modal.santapress-layout-08 {
	background-color: #ba7337;
	background-image: url("https://6uhrclub.de/wp-content/plugins/santapress/public/img/modal/08/bg.png");
	background-size: cover;
	position: relative;
}

.santapress-post.modal.santapress-layout-08.nitro-lazy {
	background-image: none !important;
}

.santapress-post.modal.santapress-layout-08 h1.santapress-title, .santapress-post.modal.santapress-layout-08 h2.spquiz-question {
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .4);
}

.santapress-post.modal.santapress-layout-08 p, .santapress-post.modal.santapress-layout-08 footer {
	color: #fff;
	text-align: center;
	margin-bottom: 0;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .4);
}

.santapress-post.modal.santapress-layout-08 .spquiz-answer, .santapress-post.modal.santapress-layout-08 .spquiz-result p, .santapress-post.modal.santapress-layout-08 .wpcf7-form label, .santapress-post.modal.santapress-layout-08 div.wpcf7-response-output {
	color: #fff;
}

.santapress-post.modal.santapress-layout-08 a.close-modal {
	background-image: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/source/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/close.svg");
	background-size: contain;
	top: -11.5px;
	right: -14.5px;
}

.santapress-post.modal.santapress-layout-08 a.close-modal.nitro-lazy {
	background-image: none !important;
}

.santapress-post.modal.santapress-layout-08:before {
	content: "";
	position: absolute;
	bottom: 0;
	top: auto;
	top: auto;
	left: 0;
	right: 0;
	height: 100px;
	height: 150px;
	width: 100%;
	background-image: url("https://cdn-ljlkd.nitrocdn.com/CvEeHogSEzeFWUrkSNJCJmHhlfsIArZp/assets/images/optimized/rev-e218f2c/6uhrclub.de/wp-content/plugins/santapress/public/img/bg_pattern2.png");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position-y: 15px;
	z-index: -1;
	display: block !important;
}

@media (max-width: 767px) {
	.santapress-post.modal.santapress-layout-08:before {
		background-position-y: bottom;
	}
}

.sp-modal-iframe {
	padding: 0 !important;
	line-height: 0;
	height: 0;
	overflow: hidden;
	z-index: 9999999 !important;
	transform: scale(.95);
	transition: transform 400ms;
}

.sp-modal-iframe:hover {
	transform: scale(1);
}

.sp-modal-iframe.iframeloaded {
	overflow: visible;
}

.sp-modal-iframe iframe {
	margin: 0;
	padding: 0;
	border-radius: 8px;
	overflow: hidden;
}

body.santapress-snow-modal.modal-open .blocker:after {
	-webkit-backface-visibility: hidden;
}

.santapress-post-inner blockquote, .santapress-post-inner blockquote p {
	background: rgba(0, 0, 0, 0);
}
