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

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

.blocker.behind {
	background-color: transparent
}

.modal:not(.in) {
	display: none;
	vertical-align: middle;
	position: relative;
	z-index: 2;
	max-width: 500px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 90%;
	background: #fff;
	padding: 15px 30px;
	border-radius: 8px;
	-webkit-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
}

.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==")
}

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

.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
}

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

.modal-spinner .rect3 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s
}

.modal-spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s
}

@-webkit-keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		-webkit-transform: scaleY(0.5)
	}

	20% {
		-webkit-transform: scaleY(1)
	}
}

@keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		transform: scaleY(0.5);
		-webkit-transform: scaleY(0.5)
	}

	20% {
		transform: scaleY(1);
		-webkit-transform: scaleY(1)
	}
}

.santapress-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	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 {
	padding: 3px
}

.santapress-container .santapress-door .santapress-door-inner a {
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	-webkit-box-shadow: 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;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-decoration: none;
	border: 0;
	-webkit-transition: all 400ms;
	-o-transition: all 400ms;
	transition: all 400ms;
	box-shadow: none;
	-webkit-transform-origin: left;
	-ms-transform-origin: left;
	transform-origin: left;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out
}

.santapress-container .santapress-door .santapress-door-inner a.open img {
	-webkit-transform: perspective(1200px) translateZ(0px) translateX(0px) translateY(0px) rotateY(-45deg);
	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 {
	-webkit-animation: dangle 400ms 1;
	animation: dangle 400ms 1
}

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

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

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

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

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

@media only screen and (min-width: 768px) {
	.santapress-container.cols-1 .santapress-door {
		width: 100%;
		-webkit-box-flex: 1;
		-ms-flex: 1 0 100%;
		flex: 1 0 100%
	}

	.santapress-container.cols-2 .santapress-door {
		width: 50%;
		-webkit-box-flex: 1;
		-ms-flex: 1 0 50%;
		flex: 1 0 50%
	}

	.santapress-container.cols-3 .santapress-door {
		width: 33.333333333333333%;
		-webkit-box-flex: 1;
		-ms-flex: 1 0 33.333333333333333%;
		flex: 1 0 33.333333333333333%
	}

	.santapress-container.cols-4 .santapress-door {
		width: 25%;
		-webkit-box-flex: 1;
		-ms-flex: 1 0 25%;
		flex: 1 0 25%
	}

	.santapress-container.cols-5 .santapress-door {
		width: 20%;
		-webkit-box-flex: 1;
		-ms-flex: 1 0 20%;
		flex: 1 0 20%
	}

	.santapress-container.cols-6 .santapress-door {
		width: 16.666666666666667%;
		-webkit-box-flex: 1;
		-ms-flex: 1 0 16.666666666666667%;
		flex: 1 0 16.666666666666667%
	}

	.santapress-container.cols-7 .santapress-door {
		width: 14.285714285714286%;
		-webkit-box-flex: 1;
		-ms-flex: 1 0 14.285714285714286%;
		flex: 1 0 14.285714285714286%
	}

	.santapress-container.cols-8 .santapress-door {
		width: 12.5%;
		-webkit-box-flex: 1;
		-ms-flex: 1 0 12.5%;
		flex: 1 0 12.5%
	}

	.santapress-container.cols-9 .santapress-door {
		width: 11.111111111111111%;
		-webkit-box-flex: 1;
		-ms-flex: 1 0 11.111111111111111%;
		flex: 1 0 11.111111111111111%
	}

	.santapress-container.cols-10 .santapress-door {
		width: 10%;
		-webkit-box-flex: 1;
		-ms-flex: 1 0 10%;
		flex: 1 0 10%
	}
}

@-webkit-keyframes dangle {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	35% {
		-webkit-transform: translateX(-5px);
		transform: translateX(-5px)
	}

	75% {
		-webkit-transform: translateX(5px);
		transform: translateX(5px)
	}
}

.santapress-post.modal {
	position: relative;
	min-height: 400px;
	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(/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(/wp-content/plugins/santapress/public/img/santa_hat.png) no-repeat;
	width: 175px;
	height: 168px;
	background-size: contain
}

@font-face {font-display:swap;
	font-family: 'Lobster';
	font-style: normal;
	font-weight: 400;
	src: url("/wp-content/plugins/santapress/public/fonts/lobster-v20-latin-regular.eot");
	src: local("Lobster Regular"), local("Lobster-Regular"), url("/wp-content/plugins/santapress/public/fonts/lobster-v20-latin-regular.eot?#iefix") format("embedded-opentype"), url("/wp-content/plugins/santapress/public/fonts/lobster-v20-latin-regular.woff2") format("woff2"), url("/wp-content/plugins/santapress/public/fonts/lobster-v20-latin-regular.woff") format("woff"), url("/wp-content/plugins/santapress/public/fonts/lobster-v20-latin-regular.ttf") format("truetype"), url("/wp-content/plugins/santapress/public/fonts/lobster-v20-latin-regular.svg#Lobster") format("svg")
}

@font-face {font-display:swap;
	font-family: 'Bree Serif';
	font-style: normal;
	font-weight: 400;
	src: url("/wp-content/plugins/santapress/public/fonts/bree-serif-v9-latin-regular.eot");
	src: local("Bree Serif Regular"), local("BreeSerif-Regular"), url("/wp-content/plugins/santapress/public/fonts/bree-serif-v9-latin-regular.eot?#iefix") format("embedded-opentype"), url("/wp-content/plugins/santapress/public/fonts/bree-serif-v9-latin-regular.woff2") format("woff2"), url("/wp-content/plugins/santapress/public/fonts/bree-serif-v9-latin-regular.woff") format("woff"), url("/wp-content/plugins/santapress/public/fonts/bree-serif-v9-latin-regular.ttf") format("truetype"), url("/wp-content/plugins/santapress/public/fonts/bree-serif-v9-latin-regular.svg#BreeSerif") format("svg")
}

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;
	font-weight: bold;
	color: #de2e2e;
	border: 0;
	position: relative;
	height: 60px;
	line-height: 45px;
	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, 0.6);
	text-rendering: auto;
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	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;
	line-height: normal;
	font-weight: 400
}

.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;
	-webkit-transform: translateZ(1000px);
	transform: translateZ(1000px);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}

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

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

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

body.santapress-snow-everywhere .spsnow {
	opacity: 0;
	-webkit-transition: opacity 2000ms linear;
	-o-transition: opacity 2000ms linear;
	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%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999 !important;
	height: 100%;
	background: url(/wp-content/plugins/santapress/public/img/sp_snow1.png), url(/wp-content/plugins/santapress/public/img/sp_snow2.png), url(/wp-content/plugins/santapress/public/img/sp_snow3.png);
	z-index: 1;
	-webkit-animation: snow 15s linear 1s infinite;
	animation: snow 15s linear 1s infinite;
	will-change: animation;
	pointer-events: none
}

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

@-webkit-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
	}
}

@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: transparent
}

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

.hiddenmode {
	display: none
}

.santapress-container-outer {
	background: #000;
	background: rgba(0, 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;
	-webkit-transform: translateY(-1200px);
	-ms-transform: translateY(-1200px);
	transform: translateY(-1200px);
	-webkit-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
	-webkit-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	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;
	-webkit-transition: opacity 1000ms linear;
	-o-transition: opacity 1000ms linear;
	transition: opacity 1000ms linear;
	-webkit-transition-delay: 800ms;
	-o-transition-delay: 800ms;
	transition-delay: 800ms
}

.santapress-container-outer.active .santapress-container {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	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(/wp-content/plugins/santapress/public/img/close.svg);
	background-size: contain;
	z-index: 9999;
	display: block
}

@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;
	-webkit-transform: scale(1) !important;
	-ms-transform: scale(1) !important;
	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(/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:hover {
	-webkit-animation: dangle 400ms 1;
	animation: dangle 400ms 1
}

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

.santapress-post.modal:hover {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	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;
	font-weight: bold;
	color: #555;
	border: 0;
	position: relative;
	line-height: 1.2;
	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: rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	margin-bottom: 20px;
	-webkit-transition: background 400ms;
	-o-transition: background 400ms;
	transition: background 400ms;
	cursor: pointer;
	position: relative;
	border: 3px solid #ccc;
	text-align: center
}

.spquiz .spquiz-answer:hover {
	-webkit-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, 0.4);
	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, 0.4);
	background: #fff;
	color: red !important
}

.spquiz-loader,
.spquiz-result .wpcf7 .ajax-loader {
	width: 24px;
	height: 24px;
	display: block;
	position: absolute;
	right: -34px;
	top: 3px;
	background-image: url(/wp-content/plugins/santapress/public/img/loader.gif);
	background-repeat: no-repeat;
	background-size: contain;
	display: none
}

.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: 0.7em;
	width: 100%
}

.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;
	border-radius: 2px;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 800;
	line-height: 1;
	padding: 1em 2em;
	text-shadow: none;
	-webkit-transition: background 0.2s;
	-o-transition: background 0.2s;
	transition: background 0.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: #fffc
}

.santapress-post.modal .santapress-post-inner {
	padding: 20px;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center
}

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

.santapress-post.modal.santapress-layout-01 {
	background: #c2703d;
	background: -o-radial-gradient(center, ellipse, #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(/wp-content/plugins/santapress/public/img/close.svg);
	background-size: contain;
	top: -35.5px;
	right: -36.5px
}

.santapress-post.modal.santapress-layout-01:before {
	content: '';
	position: absolute;
	bottom: 0;
	top: auto;
	left: 0;
	right: 0;
	height: 100px;
	width: 100%;
	background-image: url(/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;
	top: auto;
	height: 150px
}

@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: -o-radial-gradient(center, ellipse, #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, 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(/wp-content/plugins/santapress/public/img/close.svg);
	background-size: contain;
	top: -11.5px;
	right: -14.5px
}

.santapress-post.modal.santapress-layout-02:before {
	content: '';
	position: absolute;
	bottom: 0;
	top: auto;
	left: 0;
	right: 0;
	height: 100px;
	width: 100%;
	background-image: url(/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;
	top: auto;
	height: 150px
}

@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(/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 h1.santapress-title,
.santapress-post.modal.santapress-layout-03 h2.spquiz-question {
	color: #555;
	text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8)
}

.santapress-post.modal.santapress-layout-03 p,
.santapress-post.modal.santapress-layout-03 footer {
	color: #555;
	text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.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(/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:before {
	content: '';
	position: absolute;
	bottom: 0;
	top: auto;
	left: 0;
	right: 0;
	height: 100px;
	width: 100%;
	background-image: url(/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;
	top: auto;
	height: 150px
}

@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: -o-radial-gradient(center, ellipse, #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, 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, 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(/wp-content/plugins/santapress/public/img/close.svg);
	background-size: contain;
	top: -11.5px;
	right: -14.5px
}

.santapress-post.modal.santapress-layout-05 {
	background: #e94444;
	background: -o-radial-gradient(center, ellipse, #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, 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, 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(/wp-content/plugins/santapress/public/img/close.svg);
	background-size: contain;
	top: -11.5px;
	right: -14.5px
}

.santapress-post.modal.santapress-layout-05:before {
	content: '';
	position: absolute;
	bottom: 0;
	top: auto;
	left: 0;
	right: 0;
	height: 100px;
	width: 100%;
	background-image: url(/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;
	top: auto;
	height: 100%
}

.santapress-post.modal.santapress-layout-06 {
	background: #cc0000;
background: -o-radial-gradient(center, ellipse, #cc0000 1%, #3a140e  100%);
background: radial-gradient(ellipse at center, #cc0000 1%, #3a140e  100%);

	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cc0000', endColorstr='#3a140e ', 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, 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, 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, 0.6)
}

.santapress-post.modal.santapress-layout-06 a.close-modal {
	background-image: url(/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:before {
	content: '';
	position: absolute;
	bottom: 0;
	top: auto;
	left: 0;
	right: 0;
	width: 100px;
	background-image: url(/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;
	top: auto;
	height: 100px;
	top: 14px;
	left: 15px
}

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

.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, 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(/wp-content/plugins/santapress/public/img/modal/07/close.svg);
	background-size: contain;
	top: -11.5px;
	right: -14.5px
}

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

.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, 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, 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(/wp-content/plugins/santapress/public/img/close.svg);
	background-size: contain;
	top: -11.5px;
	right: -14.5px
}

.santapress-post.modal.santapress-layout-08:before {
	content: '';
	position: absolute;
	bottom: 0;
	top: auto;
	left: 0;
	right: 0;
	height: 100px;
	width: 100%;
	background-image: url(/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;
	top: auto;
	height: 150px
}

@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;
	-webkit-transform: scale(0.95);
	-ms-transform: scale(0.95);
	transform: scale(0.95);
	-webkit-transition: -webkit-transform 400ms;
	transition: -webkit-transform 400ms;
	-o-transition: transform 400ms;
	transition: transform 400ms;
	transition: transform 400ms, -webkit-transform 400ms
}

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

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

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