/* 
Theme Name: pjur
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: pjur
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

:root {
	--top-bar-height: 4rem;
	
	--black: #060A20;
	--white: #F7F7F7;
	--yellow: #FFEE57;
	--lila: #D0BFF4;
	--orange: #F8B9A7;
}

body {
	line-height: 1.6;
	padding: 0;
	margin: 0;
	background: #fff;
}

html {
	scroll-padding-top: 11.25rem;
	scroll-behavior: smooth;
}

/*** Fonts ***/

/* font-family: Agrandir, sans-serif; */
@font-face {
    font-family: Agrandir;
    font-weight: 400;
    src: url("../pjur/assets/fonts/PPAgrandir-Regular.woff") format("woff");
}

/* font-family: SpitzkantHead, serif; */
@font-face {
    font-family: SpitzkantHead;
    font-weight: 400;
    src: url("../pjur/assets/fonts/Spitzkant-Head-Light.ttf") format("truetype");
}

/* font-family: ProximaNova, sans-serif; */
@font-face {
    font-family: 'ProximaNova';
    font-weight: 300;
    src: url('../pjur/assets/fonts/Proxima-Nova-Light.woff2') format('woff2'),
         url('../pjur/assets/fonts/Proxima-Nova-Light.woff') format('woff'),
         url('../pjur/assets/fonts/Proxima-Nova-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'ProximaNova';
    font-weight: 400;
    src: url('../pjur/assets/fonts/Proxima-Nova-Regular.woff2') format('woff2'),
         url('../pjur/assets/fonts/Proxima-Nova-Regular.woff') format('woff'),
         url('../pjur/assets/fonts/Proxima-Nova-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'ProximaNova';
    font-weight: 600;
    src: url('../pjur/assets/fonts/Proxima-Nova-Extrabold.woff2') format('woff2'),
         url('../pjur/assets/fonts/Proxima-Nova-Extrabold.woff') format('woff'),
         url('../pjur/assets/fonts/Proxima-Nova-Extrabold.ttf') format('truetype');
}
@font-face {
    font-family: 'ProximaNova';
    font-weight: 700;
    src: url('../pjur/assets/fonts/Proxima-Nova-Extrabold.woff2') format('woff2'),
         url('../pjur/assets/fonts/Proxima-Nova-Extrabold.woff') format('woff'),
         url('../pjur/assets/fonts/Proxima-Nova-Extrabold.ttf') format('truetype');
}
@font-face {
    font-family: 'ProximaNova';
    font-weight: 800;
    src: url('../pjur/assets/fonts/Proxima-Nova-Extrabold.woff2') format('woff2'),
         url('../pjur/assets/fonts/Proxima-Nova-Extrabold.woff') format('woff'),
         url('../pjur/assets/fonts/Proxima-Nova-Extrabold.ttf') format('truetype');
}

/*** Allgemein ***/

h1 span, h2 span, h3 span {
	font-family: SpitzkantHead;
	letter-spacing: 0.03rem; 
}

h2 span {
	font-size: 3.5rem;
}

.newsletter h2 span {
	font-size: 2.375rem;
}

a {
	transition: all 0.3s;
}

strong {
	font-weight: 600;
}

.elementor-element > .e-con-inner {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

#content {
	padding: 6.25rem 0 9.375rem 0;
	position: relative;
	overflow-x: hidden;
	
	&::before {
		content: '';
		width: 810px;
		height: 911px;
		position: absolute;
		z-index: -1;
		background: url('../pjur/assets/img/shape-blurred-02.svg') no-repeat center top/contain;
		filter: blur(50px);
		top: 7.5rem;
		left: 7.5rem;
	}
}

.page-id-2 #content::before,
.page-id-1061 #content::before{
	content: '';
	width: 810px;
	height: 911px;
	position: absolute;
	z-index: -1;
	background: url('../pjur/assets/img/shape-blurred-04.svg') no-repeat center top/contain;
	filter: blur(50px);
	top: 7.5rem;
	left: 7.5rem;
}

.page-id-217 #content::before,
.page-id-996 #content::before{
	content: '';
	width: 810px;
	height: 911px;
	position: absolute;
	z-index: -1;
	background: url('../pjur/assets/img/shape-blurred-06.svg') no-repeat center top/contain;
	filter: blur(50px);
	top: 7.5rem;
	left: 7.5rem;
}

/*** Farben ***/

.gradient-background {
	background: linear-gradient(82deg, #F8B9A7 0%, #FFEE57 23.31%, #D2FFF3 40.95%, #B2D5FE 59.07%, #FFEDD3 100%);
	background: linear-gradient(82deg, #F8B9A7 0%, #FFEE57 23.31%, #D2FFF3 40.95%, #B2D5FE 59.07%, #D0C0F5 76.56%, #FFEDD3 100%);
}

.gradient-background-footer {
	background: linear-gradient(82deg, #D0C0F5 0%, #FFEDD3 100%);
}

/*** Button ***/

.elementor-button.elementor-button-link {
	padding: 12px 24px 15px 24px;
	position: relative;
	&::after {
		content: '';
		width: 5px;
		height: 8px;
		background: url('../pjur/assets/img/arrown-button.svg') no-repeat center/contain;
		position: absolute;
		opacity: 0;
		z-index: 5;
		top: 50%;
		margin-top: -4px;
		right: -20px;
		transition: 0.4s ease-out;
		
	}
	
	.elementor-button-text {
		&::after {
			
		}
	}
	
	&:hover {
		padding-right: 28px;
		padding-left: 20px;
		&::after {
			opacity: 1;
			right: 15px;
		}
	}
}

.elementor-button-info {
	.elementor-button.elementor-button-link {
		padding: 0.75rem 0;
		&::after {
			content: none;
		}
		&::before {
			content: '';
			width: 100%;
			height: 0.125rem;
			background: var(--white);
			position: absolute;
			left: 0;
			bottom: 0;
			opacity: 1 !important;
			transform: scale(1);
			transition: width 0.3s ease;
		}
		&:hover {
			&::before {
				width: 0;
			}
		}
	}
}


/****************************/
/********** HEADER **********/
/****************************/

.elementor.elementor-location-header {
	position: sticky;
	top: 0;
	z-index: 1001;
	box-shadow: 0 0.25rem 1.5625rem rgba(0,0,0,0.15);
}

/*** Topbar ***/

.topbar {
	height: var(--top-bar-height);
}

.topbar .social-links {
	.elementor-widget-container {
		display: flex;
	}
	.social-link {
		display: inline-block;
		width: 1.875rem;
		height: 1.875rem;
		border-radius: 100%;
		background: var(--black);
		position: relative;
		margin-right: 1.5rem;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		
		&:last-child {
			margin-right: 0;
		}
		
		svg {
			width: 1rem;
			.tiktok & {
				width: 0.875rem;
			}
			.instagram & {
				width: 0.875rem;
			}
			path {
				fill: var(--white);
				transition: all 0.3s;
			}
		}
		
		&:hover {
			background: var(--yellow);
			svg {
				path {
					fill: var(--black);
				}
			}
		}
	}
}

.topbar .product-info {
	a {
		display: inline-block;
		width: 1.875rem;
		height: 1.875rem;
		border-radius: 100%;
		background: var(--black);
		position: relative;
		margin-right: 1.5rem;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		
		&:last-child {
			margin-right: 0;
		}
		
		svg {
			width: 1rem;
			.tiktok & {
				width: 0.875rem;
			}
			.instagram & {
				width: 0.875rem;
			}
			path {
				fill: var(--white);
				transition: all 0.3s;
			}
		}
		
		&:hover {
			background: var(--yellow);
			svg {
				path {
					fill: var(--black);
				}
			}
		}
	}
}

/** Sprachen **/

.lang-menu {
	color: var(--black) !important;
	position: relative;
	width: 11.875rem;
	.elementor-menu-toggle {
		padding: 0;
		position: relative;
		width: 100%;
		height: 2.5rem;
		background: url('https://pjur.com/win/wp-content/plugins/sitepress-multilingual-cms/res/flags/de.svg') no-repeat center right 2.5rem/30px auto;
		svg {
			display: none !important;
			position: absolute;
			top: 50%;
			margin-top: -8px;
			right: 1.25rem;
			width: 0.8rem;
			height: auto;
			path {
				fill: var(--black);
			}
		}
		&::after {
			content: '';
			width: 14px;
			height: 8px;
			top: 50%;
			right: 1.25rem;
			margin-top: -4px;
			position: absolute;
			background: url('../pjur/assets/img/arrow-down.svg') no-repeat center/contain;
		}
		&::before {
			content: 'Land wählen';
			font-family: 'ProximaNova';
			position: absolute;
			left: 1.25rem;
			top: 0.25rem;
			font-size: 1rem;
			font-weight: 400;
		}
	}
	
	.elementor-nav-menu--dropdown {
		z-index: 12000;
		background: #fff;
		border-radius: 0.125rem;
		box-shadow: 0 10px 20px rgba(21,21,21,.25);
		margin: 0;
		padding: 10px 1.875rem;
		ul {
			li {
				a {
					padding: 10px 0;
					align-content: center;
					align-items: center;
					line-height: 1;
					img {
						width: 30px;
						height: auto;
					}
					span {
						margin-left: 10px;
						display: block;
						margin-top: -2px;
					}
					&:hover {
						background: none !important;
					}
				}
			}
		}
	}
}

html[lang="en-US"] {
	.lang-menu {
		width: 12.5rem;
		.elementor-menu-toggle {
			background: url('https://pjur.com/win/wp-content/plugins/sitepress-multilingual-cms/res/flags/en.svg') no-repeat center right 2.5rem/1.875rem auto;
			&::before {
				content: 'Select country';
			}
		}
	}
}



/*** Mainbar ***/

 .main-menu {
	 a {
		 position: relative;
		 &::before {
			 content: '';
			 width: 0;
			 height: 0.125rem;
			 background: var(--black) !important;
			 position: absolute;
			 left: 0;
			 bottom: -0.625rem;
			 opacity: 1 !important;
			 transform: scale(1);
			 transition: width 0.3s ease;
		 }
		 &:hover {
			 &::before {
				 width: 100%;
			 }
		 }
	 }
}

/** Mobile Menu **/

#nav-btn {
	width: 32px;
	height: 32px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	padding: 0 2px;
	cursor: pointer;
	.line {
		height: 3px;
		width: 100%;
		background: var(--black);
		border-radius: 2px;
		margin: 2px 0;
		display: block;
	}
}

#off-canvas-menu {
	
	.e-con-inner {
		padding: 0 !important;
	}
	
	width: 70%;
	padding: 5rem 2.5rem 2.5rem 2.5rem;
	background: linear-gradient(82deg, #FFEE57 0%, #F8B9A7 100%);
	position: fixed;
	top: 0;
	right: -100%;
	height: 100%;
	z-index: 1100;
	transition: right 0.5s;
	
	&.open {
		right: 0;
	}
}

.mobile-menu {
	ul {
		padding: 0;
		margin: 0;
		li {
			display: block;
			position: relative;
			border-bottom: 0.0625rem solid var(--black);
			a {
				display: block;
				position: relative;
				padding: 0.9375rem 0 !important;
			}
		}
	}
}

#close-btn {
	width: 32px;
	height: 32px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	padding: 0 2px;
	cursor: pointer;
	position: absolute;
	top: 1.875rem;
	right: 2.5rem;
	.line {
		height: 3px;
		width: 100%;
		background: var(--black);
		border-radius: 2px;
		margin: 2px 0;
		position: absolute;
		&:nth-child(1) {
			transform: translateY(7px) rotate(45deg);
			top: 7px;
		}
		&:nth-child(2) {
			transform: translateY(-7px) rotate(-45deg);
			top: 21px;
		}
	}
}

@media (max-width: 1024px) {
	:root {
		--top-bar-height: 48px;
	}
	
	.main-menu {
		display: none;
	}
}

@media (max-width: 428px) {
	
	#off-canvas-menu {
		width: 100%;
	}
	
}

/****************************/
/********** FOOTER **********/
/****************************/

/*** Newsletter ***/

.newsletter {
	position: relative;
	overflow: hidden;
	&::before {
		content: '';
		position: absolute;
		top: 6.25rem;
		left: 0;
		width: 809px;
		height: 467px;
		background: url('../pjur/assets/img/shape-blurred-01.svg') no-repeat center top/contain;
		mix-blend-mode: hard-light;
		filter: blur(50px);
	}
}

html[lang="en-US"] {
	.elementor-element.elementor-element-73b3ca8 .elementor-widget-container {
		padding-right: 0.625rem;
	}
}

/** Newsletter Formular **/

#newsletter-formular {
	.elementor-field-group.elementor-field-type-submit {
		position: absolute;
		top: 0;
		right: 0;
		height: 56.4px;
		width: 3.125rem;
		padding: 0;
		margin: 0;
		#submit-arrow {
			padding: 0;
			width: 100%;
			height: 100%;
		}
	}
	.elementor-field-group.elementor-field-type-email {
		input:focus {
			border-color: #fff;
			box-shadow: none;
		}
	}
	.elementor-message.elementor-message-success {
		color: #28a745;
		background: #B6EDC2;
		padding: 10px;
	}
}

/** Newsletter Formular Mailchimp **/

.newsletter-form #mc_embed_signup {
	width: 100% !important;
	min-width: 100% !important;
	form {
		margin: 0 !important;
		
		.mc-field-group {
			position: relative;
			width: 100%;
			div.mce_inline_error {
				margin: 0 !important;
				padding: 0 !important;
				background: none !important;
			}
		}
		
		input[type="email"] {
			padding: 1rem 4.625rem 1rem 1.25rem;
			border-radius: 0;
			border: 0.0625rem solid var(--black);
			text-indent: 0;
			background: #fff;
			line-height: 1;
			&.mce_inline_error {
				border-width: 0.0625rem !important;
			}
		}
		
		#mc-embedded-subscribe {
			border-radius: 0;
			padding: 0;
			position: absolute;
			top: 1px;
			right: 1px;
			margin: 0;
			height: 54px;
			width: 54px;
			background: #fff url('../pjur/assets/img/arrown-button-black.svg') no-repeat center/0.5rem auto;
			&:hover {
				background: var(--black) url('../pjur/assets/img/arrown-button.svg') no-repeat center/0.5rem auto;
			}
		}
		
		#mce-responses {
			width: 100%;
			margin: 0.625rem 0 0 0;
			padding: 0;
			#mce-success-response {
				color: #28a745;
				background-color: #b6edc2;
				width: 100%;
				font-weight: 400;
				margin: 0;
				padding: 0;
				border-radius: 0.1875rem;
				padding: 0.625rem 0.9375rem;
			}
		}
	}
}

/*** Slogan ***/

.slogan {
	p {
		margin: 0;
		padding: 0;
	}
	
	text-align: center;
	font-family: Agrandir;
	font-size: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.06rem;
	span {
		display: block;
		font-family: SpitzkantHead;
		font-size: 1.5rem;
		text-transform: none;
		letter-spacing: normal;
	}
}

/*** Service Hotline ***/

.service-hotline {
	a {
		font-size: 1.5rem;
		font-family: Agrandir;
		font-weight: 400;
		&:hover {
			text-decoration: underline;
		}
	}
}

/*** Footer Liste ***/

.footer-list {
	
	> .e-con-inner {
		max-width: 100% !important;
	}
	
	ul {
		padding: 1rem 0;
		margin: 0;
		display: flex;
		justify-content: space-between;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		
		li {
			list-style: none;
			display: flex;
			position: relative;
			padding: 0 1.25rem 0 0;
			margin: 0;
			letter-spacing: 0.01rem;
			&::before {
				content: '';
				width: 1.5rem;
				height: 1.5rem;
				display: inline-block;
				margin-right: 0.9375rem;
				background: url('../pjur/assets/img/circle-check-solid.svg') no-repeat center/contain;
			}
		}
	}
}

/*** Service ***/

.service {
	p {
		margin: 0;
	}
}

/*** Footer Nav ***/

footer a:hover {
	text-decoration: underline;
}

/*
@media (max-width: 1024px) {

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	.nav-col {
		width: calc(50 - 1.25rem);
	}
}
	
}
*/

/*** Footer Bottom ***/

.footer-bottom p {
	margin: 0;
}

.footer-bottom .social-links {
	.elementor-widget-container {
		display: flex;
	}
	.social-link {
		display: inline-block;
		width: 1.875rem;
		height: 1.875rem;
		border-radius: 100%;
		background: var(--black);
		position: relative;
		margin-right: 1.5rem;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		
		&:last-child {
			margin-right: 0;
		}
		
		svg {
			width: 1rem;
			.tiktok & {
				width: 0.875rem;
			}
			.instagram & {
				width: 0.875rem;
			}
			path {
				fill: var(--white);
				transition: all 0.3s;
			}
		}
		
		&:hover {
			background: var(--yellow);
			svg {
				path {
					fill: var(--black);
				}
			}
		}
	}
}

/***********************************/
/********** 30 Jahre pjur **********/
/***********************************/

/*** Animation ***/

.animation-container_01 {
	position: absolute;
	top: -10rem !important;
	left: 0;
	width: 1529px;
	height: 635px;
	left: 50% !important;
	margin-left: -764.5px !important;
	
	.confetti {
		width: 670px !important;
		position: absolute;
		.e-lottie__container {
			width: 100%;
			max-width: 670px;
		}
	}
	
	.confetti:nth-child(1) {
		bottom: 0;
		left: 0;
	}
	.confetti:nth-child(2) {
		top: 5rem;
		left: 50%;
		margin-left: -335px;
	}
	.confetti:nth-child(3) {
		top: 0;
		right: 0;
	}
}

.animation-container_02 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 670px;
	height: 535px;
	left: 50% !important;
	margin-left: -335px !important;
	
	.confetti {
		width: 670px !important;
		position: absolute;
		top: 0;
		left: 0;
		.e-lottie__container {
			width: 100%;
			max-width: 670px;
		}
	}
}

.animation-container_03 {
	position: absolute;
	top: -15.625rem;
	left: -15.625rem;
	width: 670px;
	height: 535px;
	.confetti {
		width: 670px !important;
		position: absolute;
		.e-lottie__container {
			width: 100%;
			max-width: 670px;
		}
	}
}

.animation-container_04 {
	position: absolute;
	top: -10.625rem;
	right: -12.5rem;
	width: 670px;
	height: 535px;
	.confetti {
		width: 670px !important;
		position: absolute;
		.e-lottie__container {
			width: 100%;
			max-width: 670px;
		}
	}
}

.animation-container_05 {
	position: absolute;
	top: -10rem !important;
	left: 0;
	width: 1529px;
	height: 635px;
	left: 50% !important;
	margin-left: -764.5px !important;
	
	.confetti {
		width: 670px !important;
		position: absolute;
		.e-lottie__container {
			width: 100%;
			max-width: 670px;
		}
	}
	
	.confetti:nth-child(1) {
		top: 0;
		left: 50%;
		margin-left: -335px;
	}
	.confetti:nth-child(2) {
		top: 0;
		left: 0;
		transform: rotate(50deg);
	}
	.confetti:nth-child(3) {
		top: -115px;
		left: 250px;
	}
	.confetti:nth-child(4) {
		top: 0;
		right: -180px;
		transform: rotate(130deg);
	}

}

.animation-container_06 {
	pointer-events: none;
	position: absolute;
	bottom: 0;
	right: -9.375rem;
	width: 670px;
	height: 535px;
	.confetti {
		width: 670px !important;
		position: absolute;
		transform: rotate(250deg);
		.e-lottie__container {
			width: 100%;
			max-width: 670px;
		}
	}
}

/*** Countdown ***/

.countdown {
	width: 530px;
	.elementor-countdown-item {
		position: relative;
		height: 496px;
		padding: 12.5rem 0 0 0;
		&::after {
			content: '';
			width: 100%;
			height: 100%;
			position: absolute;
			top: 0;
			left: 0;
			background: url('../pjur/assets/img/flasche.svg') no-repeat center top/contain;
		}
		&::before {
			content: ':';
			font-family: SpitzkantHead;
			font-size: 59px;
			position: absolute;
			top: 215px;
			right: -15px;
			color: var(--black);
			@media (max-width:767px) {
				font-size: 2.5rem;
				top: 180px;
			}
			@media (max-width:767px) {
				top: 150px;
			}
		}
		
		.elementor-countdown-digits {
			position: relative;
			display: block;
			height: 163px;
			padding-top: 2.5rem;
			&::after {
				content: '';
				position: absolute;
				top: 0;
				left: 5%;
				width: 90%;
				height: 100%;
				background: none;
				z-index: -1;
			}
			&::before {
				content: '';
				width: 67px;
				height: 67px;
				border-radius: 100%;
				background: var(--yellow);
				position: absolute;
				top: -2.8125rem;
				left: 50%;
				margin-left: -34px;
				z-index: 1;
				@media (max-width:767px) {
					height: 50px;
					width: 50px;
					margin-left: -25px;
					top: -30px;
				}
				@media (max-width:480px) {
					height: 40px;
					width: 40px;
					margin-left: -20px;
					top: -30px;
				}
			}
			@media (max-width:767px) {
				height: 120px;
			}
			@media (max-width:480px) {
				height: 90px;
				padding-top: 25px;
			}
		}
		
		.elementor-countdown-label {
			padding-top: 1.875rem;
			@media (max-width:767px) {
				padding-top: 20px;
			}
		}
		
		&:last-child::before {
			content: none;
		}
		
		@media (max-width:767px) {
			height: 400px;
			padding-top: 160px;
		}
		@media (max-width:480px) {
			height: 300px;
			padding-top: 120px;
		}
	}
	@media (max-width:767px) {
		width: 450px;
	}
	@media (max-width:480px) {
		width: 380px;
	}
	
}

/*** Logo before Image ***/

.image-logo-before {
	position: relative;
	&::before {
		content: '';
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
		background: url('../pjur/assets/img/image-logo-before.png') no-repeat center/contain;
	}
	&::after {
		content: '';
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		background: url('../pjur/assets/img/shape-blurred-10.svg') no-repeat bottom right/45% auto;
		filter: blur(3.125rem);
	}
}

/*** Header mit Störer ***/

.gewinnspiel-header.lyt1 {
	.headline {
		width: calc(100% - 150px);
		position: relative;
		left: -32px;
		text-align: center;
		position: relative;
		z-index: 2;
			h1 {
			font-size: 81px;
			line-height: 1.2;
			margin: 0 !important;
			@media (max-width: 1360px) {
				font-size: 71px;
			}
			@media (max-width: 1024px) {
				font-size: 61px;
			}
			@media (max-width: 768px) {
				font-size: 45px;
			}
			@media (max-width: 480px) {
				font-size: 35px;
			}
			span.large {
				font-size: 210px;
				display: block;
				line-height: 1;
				margin-top: -1.25rem;
				margin-bottom: 0.625rem;
				@media (max-width: 1360px) {
					font-size: 180px;
				}
				@media (max-width: 1024px) {
					font-size: 150px;
					margin-top: -10px;
				}
				@media (max-width:767px) {
					font-size: 120px;
				}
				@media (max-width: 480px) {
					font-size: 90px;
					margin-top: 0;
					margin-bottom: 10px;
				}
			}
		}
		@media (max-width:1024px) {
			left: auto;
			width: 100%;
		}
		@media (max-width:767px) {
			left: auto;
			width: 100%;
			padding-top: 75px;
		}
	}

	.stoerer {
		width: 11.25rem;
		height: 11.25rem;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 1;
		&::after {
			content: '';
			position: absolute;
			background: url('../pjur/assets/img/shape-blurred-09.svg') no-repeat center/contain;
			width: 110%;
			height: 110%;
			top: -15px;
			left: -10%;
			z-index: -1;
			filter: blur(2.5rem);
		}
		@media (max-width:1024px) {
			top: -60px;
		}
		@media (max-width:767px) {
			width: 7.5rem;
			height: 7.5rem;
			top: -30px;
			&::after {
				filter: blur(1.875rem);
			}
		}
		@media (max-width:480px) {
			width: 100px;
			height: 100px;
			&::after {
				filter: blur(1.25rem);
			}
		}
	}
}

html[lang="en-US"] {
	
	.gewinnspiel-header.lyt1 {
	.headline {
		left: auto;
		span.large {

				@media (max-width: 1360px) {

				}
			}
		}
	}
	
}

/*** Gewinnspiel ***/

/** Shape nach 2Spalter **/

.elementor-element.elementor-element-e85a9a7 {
	position: relative;
	&::after {
		content: '';
		width: 809px;
		height: 600px;
		position: absolute;
		z-index: -1;
		background: url('../pjur/assets/img/shape-blurred-03.svg') no-repeat center top/contain;
		filter: blur(3.125rem);
		bottom: -9.375rem;
		right: -9.375rem;
	}
}

/** Bilder Animation **/

.image-collage {
	transform: scale(1.2) translate(0px, 0);
	.img3 {
		pointer-events: none;
		transform: translate(-400px, -400px) rotate(-50deg);
		opacity: 0;
		transition: transform 0.7s, opacity 0.9s;
	}
	.img2 {
		pointer-events: none;
		transform: translate(500px, 0) rotate(50deg);
		opacity: 0;
		transition: transform 0.7s, opacity 0.9s;
	}
	
	&:hover {
		.img3 {
			opacity: 1;
			transform: translate(0, 0) rotate(0deg);
		}
	}
	&:hover {
		.img2 {
			opacity: 1;
			transform: translate(0, 0) rotate(0deg);
		}
	}
}

/*** Formular ***/

.elementor-element.elementor-element-5276b81 input::placeholder,
.elementor-element.elementor-element-5276b81 textarea::placeholder{
	color: #fff !important;
	opacity: 0 !important;
}

.elementor-2 .elementor-element.elementor-element-5276b81 .elementor-field-group {
	margin-bottom: 1.25rem;
}

.elementor-form .elementor-field-group {
	position: relative;
}

.elementor-field-group.elementor-field-type-text label,
.elementor-field-group.elementor-field-type-email label,
.elementor-field-group.elementor-field-type-select label,
.elementor-field-group.elementor-field-type-textarea label {
	position: absolute;
	left: 1.5625rem;
	top: 0.9375rem;
	font-weight: 600;
	font-size: 1rem;
	background: none;
	line-height: 1;
	padding: 0.3125rem !important;
	z-index: 2;
	transition: all 0.3s;
}

.elementor-form .elementor-mark-required .elementor-field-label::after {
	color: var(--black) !important;
}

.elementor-field-group.elementor-field-type-text:focus-within label,
.elementor-field-group.elementor-field-type-email:focus-within label,
.elementor-field-group.elementor-field-type-select:focus-within label,
.elementor-field-group.elementor-field-type-textarea:focus-within label,
.elementor-field-group.filled.elementor-field-type-text label,
.elementor-field-group.filled.elementor-field-type-email label,
.elementor-field-group.filled.elementor-field-type-select label,
.elementor-field-group.filled.elementor-field-type-textarea label {
	top: -0.9375rem;
	background: #fff;
}

.elementor-field-type-upload.elementor-field-group {
	.elementor-field-label {
		font-weight: 600;
		color: var(--black);
		display: block;
		margin-bottom: 0.3125rem;
		padding-left: 1.5625rem;
	}
}

input, select, textarea {
	background: var(--white);
}

input[type="file"] {
	background: #FEEDD3 url('../pjur/assets/img/file-import.svg') no-repeat center right 25px/18px auto !important;
	font-style: italic;
	border-color: #FEEDD3 !important;
}
input[type="file"].has-file {
	background: var(--black) url('../pjur/assets/img/check.svg') no-repeat center right 25px/18px auto !important;
	font-style: italic;
	color: var(--white) !important;
}

input::file-selector-button {
	font-family: 'ProximaNova';
	font-weight: normal;
	color: var(--black);
	background: #fff;
	border-radius: 0;
	padding: 5px 10px;
	border: none;
	outline: none;
	cursor: pointer;
	margin-right: 10px;
}

input[type="checkbox"] {
	appearance: none;
	display: block !important;
	background: none !important;
	width: 22px;
	height: 22px;
	border: 2px solid var(--black) !important;
	padding: 0 !important;
	border-radius: 100% !important;
	cursor: pointer;
}

input[type="checkbox"]:checked {
	background: var(--black) url('../pjur/assets/img/check.svg') no-repeat center/70% auto !important;
}

.elementor-field-group.elementor-field-type-submit {
	width: auto;
	.elementor-button {
		padding: 12px 24px 15px 24px;
		border-radius: 0;
		min-height: auto;
	}
}

.elementor-field-option {
	position: relative;
	input[type="checkbox"] {
		position: absolute;
		top: 5px;
		left: 0;
	}
	label {
		font-size: 0.875rem;
		strong {
			padding: 7px 0 0 30px;
			display: block;
			margin: 0 0 15px 0;
		}
		span {
			font-size: 0.75rem;
			display: block;
			line-height: 1.5;
			&.col2 {
				column-count: 2;
			}
			
			a {
				font-size: 0.75rem !important;
				font-weight: 600 !important;
				position: relative;
				z-index: 2;
				display: inline-block;
				&::after {
					content: '';
					position: absolute;
					bottom: 0.125rem;
					left: 0;
					width: 100%;
					height: 0.375rem;
					background: var(--lila);
					z-index: -1;
				}
				&:hover {
					&:after {
						background: var(--orange);
					}
				}
			}
		}
	}
}

.elementor-field-type-checkbox.elementor-field-group.elementor-field-group-field_b5cadaa,
.elementor-field-type-checkbox.elementor-field-group.elementor-field-group-field_ab793e0,
.elementor-field-type-acceptance.elementor-field-group.elementor-field-group-field_b5cadaa {
	background: #fff;
	box-shadow: 0 0.25rem 3.125rem rgba(0,0,0,0.1);
	padding: 2.5rem !important;
}

.elementor-field-type-checkbox.elementor-field-group.elementor-field-group-field_092b54e,
.elementor-field-type-checkbox.elementor-field-group.elementor-field-group-field_b5cadaa,
.elementor-field-type-checkbox.elementor-field-group.elementor-field-group-field_ab793e0,
.elementor-field-type-acceptance.elementor-field-group.elementor-field-group-field_b5cadaa,
.elementor-field-type-acceptance.elementor-field-group.elementor-field-group-field_092b54e{
	.elementor-field-label {
		display: none;
	}
}

.elementor-field-type-upload.elementor-field-group-field_543eef2 {
	margin-top: 1.25rem;
}

/* 2Spalter */

.elementor-field-type-text.elementor-field-group.elementor-field-group-name {
	width: 50%;
	padding-right: 0.625rem !important;
}

.elementor-field-type-text.elementor-field-group.elementor-field-group-field_a0dd015 {
	width: 50%;
	padding-left: 0.625rem !important;
}

/* Shapes */

.elementor-element.elementor-element-4e9328d {
	position: relative;
	&::after {
		content: '';
		width: 671px;
		height: 465px;
		position: absolute;
		z-index: -1;
		background: url('../pjur/assets/img/shape-blurred-05.svg') no-repeat center top/contain;
		filter: blur(3.125rem);
		top: -6.25rem;
		left: 50%;
		margin-left: -20.96875rem;
	}
}

.elementor-field-group.elementor-field-type-html.elementor-field-group-field_c930e67 {
	position: relative;
	&::after {
		content: '';
		width: 810px;
		height: 556px;
		position: absolute;
		z-index: -1;
		background: url('../pjur/assets/img/shape-blurred-08.svg') no-repeat center top/contain;
		filter: blur(3.125rem);
		top: -6.25rem;
		left: 50%;
		margin-left: -405px;
	}
}

.gewinnspiel {
	img {
		width: 4.375rem;
		height: auto;
	}
}

/* Dateien */

.elementor-field-group.elementor-field-type-html.elementor-field-group-field_7b5ea3d,
.elementor-field-group.elementor-field-type-html.elementor-field-group-field_256feb1{
	font-style: italic;
	font-size: 0.75rem;
}

/*** Teilnahmebedingungen ***/

/** Shape am Seitenende **/

.elementor-element.elementor-element-b0402b8 {
	position: relative;
	&::after {
		content: '';
		width: 809px;
		height: 600px;
		position: absolute;
		z-index: -1;
		background: url('../pjur/assets/img/shape-blurred-07.svg') no-repeat center top/contain;
		filter: blur(3.125rem);
		bottom: 0;
		right: 9.375rem;
	}
}

/*** Teilnahmebestätigung ***/

.page-id-1075,
.page-id-1172{
	
	#content {
		padding-bottom: 0;
		background: var(--black);
		&::before {
			content: '';
			width: 670px;
			height: 750px;
			position: absolute;
			z-index: -1;
			background: url('../pjur/assets/img/shape-blurred-11.svg') no-repeat center top/contain;
			filter: blur(50px);
			top: 7.5rem;
			left: 7.5rem;
			mix-blend-mode: hard-light;
			opacity: 0.9;
			z-index: 0;
		}
	}
}

.elementor-element.elementor-element-ed488e9 {
	z-index: 5;
	mix-blend-mode: hard-light;
}

.elementor-element.elementor-element-ed488e9::after {
	content: '';
	width: 671px;
	height: 464px;
	position: absolute;
	z-index: -1;
	background: url('../pjur/assets/img/shape-blurred-10.svg') no-repeat center top/contain;
	filter: blur(3.125rem);
	left: -380px;
	bottom: 0;
	opacity: 0.9;
	transform: rotate(180deg);
}


/********************************/
/********** RESPONSIVE **********/
/********************************/
@media (max-width: 1360px) {
	
}

@media (max-width: 1024px) {
	
	html {
		scroll-padding-top: 9.0625rem;
	}
	
	.elementor-element > .e-con-inner {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
	
	h2 span {
		font-size: 2.375rem;
	}
	
	
	/***********************************/
	/********** 30 Jahre pjur **********/
	/***********************************/
	
	/*** Gewinnspiel ***/

	#gewinn-stoerer {
		&::after {
			transform: scale(0.8);
			top: -2.5rem;
			left: -1.875rem;
		}
	}
	
}

@media (max-width: 767px) {
	#content {
		padding: 3.125rem 0 6.25rem 0;
	}
	
	/****************************/
	/********** FOOTER **********/
	/****************************/
	
	/*** Newsletter ***/
	
	html[lang="en-US"] {
		.elementor-element.elementor-element-73b3ca8 .elementor-widget-container {
			padding-right: 0;
		}
	}
	
	/***********************************/
	/********** 30 Jahre pjur **********/
	/***********************************/
	
	/*** Gewinnspiel ***/

	#gewinn-stoerer {

		&::after {

		}
	}
}

@media (max-width: 480px) {
	h1.elementor-heading-title.elementor-size-default {
		font-size: 45px !important;
	}
	
	/***********************************/
	/********** 30 Jahre pjur **********/
	/***********************************/
	
	/*** Gewinnspiel ***/

	#gewinn-stoerer {
		width: 7.5rem;
		&::after {
			transform: scale(0.6);
			top: -2.5rem;
			left: -1.875rem;
		}
	}
	
	/** Bild Tüte entfernen **/
	
	.elementor-element.elementor-element-0dd8484 {
		display: none;
	}
	
	/** Formular **/
	
	/* 2Spalter */
	
	.gewinnspiel .elementor-form {
		.elementor-field-type-text.elementor-field-group.elementor-field-group-name,
		.elementor-field-type-text.elementor-field-group.elementor-field-group-field_a0dd015{
			width: 100%;
			padding-left: 0 !important;
			padding-right: 0 !important;
		}
		
		.elementor-field-option {
		  label {
			span {
			  &.col2 {
				column-count: 1;
			  }
			}
		  }
		}
		
		.elementor-field-type-checkbox.elementor-field-group.elementor-field-group-field_b5cadaa,
		.elementor-field-type-checkbox.elementor-field-group.elementor-field-group-field_ab793e0,
		.elementor-field-type-acceptance.elementor-field-group.elementor-field-group-field_b5cadaa {
			padding: 1.25rem !important;
		}
		
	}

	
}