@charset "utf-8";
/* CSS Document */

:root {
	--dark_magenta: #8e024a;
	--accent: #e20074;
	--dark-accent: #670035;
	--yellow: #f5bd33;
	--celadon: #00b8ab;
	--lawenda: #7878ff;
	--light_gray: #f2f2f2;
	--black: #000000;
	--white: #ffffff;
	--bs-link-color: #e20074;
	--bs-link-color-rgb: 226, 0, 116;

	--maxwidth: 600px;
	--maxrem: calc(var(--maxwidth) * (32 / 780));
}

html,
.root {
	font-size: min(4.103vw, var(--maxrem));
	line-height: 22px;
}

html {
	width: 100%;
	height: 100%;
}

body {
	background-color: var(--white);
	color: #fff;
	font-family: "teleneoregular";
	font-size: 1rem;
	line-height: 1.2941176rem;
	overflow-y: scroll !important;
}

h1,
.h1 {
	font-family: "teleneoextrabold_italic";

	text-align: center;

	font-size: 2rem;
	font-weight: normal;
	font-style: normal;

	line-height: normal;
	letter-spacing: -0.04rem;
	text-transform: uppercase;

	margin-bottom: 0;
}

h1 small,
.h1 small {
	font-family: "teleneoregular_italic";
	font-size: 1.25rem;
	letter-spacing: normal;
}

h2,
.h2 {
	font-family: "teleneoextrabold";
	text-align: center;
	font-size: 2rem;
	font-style: normal;
	font-weight: normal;
	line-height: normal;
	letter-spacing: -0.04rem;
	text-transform: uppercase;
}

h3,
.h3 {
	font-family: "teleneoextrabold_italic";

	text-align: center;

	font-size: 2rem;
	line-height: normal;
	text-transform: uppercase;
}

h3 small,
.h3 small {
	font-family: "teleneoregular_italic";
	font-size: 1.25rem;
	display: inline-block;
	line-height: 1;
}

h4,
.h4 {
	text-align: center;
	font-family: "teleneoregular_italic";
	font-size: 1.5rem;
	line-height: normal;
	text-transform: uppercase;
}

h4 strong,
.h4 strong {
	font-family: "teleneoextrabold_italic";
}

strong,
.strong {
	font-family: "teleneoextrabold";
}

.italic {
	font-family: "teleneoregular_italic";
}

strong.italic,
.strong.italic {
	font-family: "teleneoextrabold_italic";
}

.accent {
	color: var(--accent) !important;
}

.btn {
	font-family: "teleneoextrabold";
	font-size: 1rem;
	line-height: 1;
	text-transform: uppercase;
	padding: 1.2rem 1.5rem 0.8rem 1.5rem;
	border-radius: 0.375rem;
	box-shadow: 0 0.188rem 0.375rem 0 rgba(0, 0, 0, 0.25);
}

.btn.btn-primary {
	--bs-btn-color: var(--white);
	--bs-btn-bg: var(--accent);
	--bs-btn-border-color: var(--accent);
	--bs-btn-hover-color: var(--white);
	--bs-btn-hover-bg: var(--accent);
	--bs-btn-hover-border-color: var(--accent);
	--bs-btn-active-color: var(--white);
	--bs-btn-active-bg: var(--accent);
	--bs-btn-active-border-color: var(--accent);
	--bs-btn-active-shadow: 0 0.188rem 0.375rem 0 rgba(0, 0, 0, 0.25);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: #6c757d;
	--bs-btn-disabled-border-color: #6c757d;
}

.btn.btn-secondary {
	--bs-btn-color: var(--accent);
	--bs-btn-bg: var(--light_gray);
	--bs-btn-border-color: var(--light_gray);
	--bs-btn-hover-color: var(--accent);
	--bs-btn-hover-bg: var(--light_gray);
	--bs-btn-hover-border-color: var(--light_gray);
	--bs-btn-active-color: var(--accent);
	--bs-btn-active-bg: var(--light_gray);
	--bs-btn-active-border-color: var(--light_gray);
	--bs-btn-active-shadow: 0 0.188rem 0.375rem 0 rgba(0, 0, 0, 0.25);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: #6c757d;
	--bs-btn-disabled-border-color: #6c757d;
}

.btn.btn-outline-secondary {
	--bs-btn-color: var(--light_gray);
	--bs-btn-border-color: var(--light_gray);
	--bs-btn-hover-color: var(--light_gray);
	--bs-btn-hover-bg: var(--accent);
	--bs-btn-hover-border-color: var(--light_gray);
	--bs-btn-active-color: var(--light_gray);
	--bs-btn-active-bg: var(--accent);
	--bs-btn-active-border-color: var(--light_gray);
	--bs-btn-active-shadow: 0 0.188rem 0.375rem 0 rgba(0, 0, 0, 0.25);
	--bs-gradient: none;
}

.celadon-bg {
	background-color: var(--celadon);
}

/* navbar */

.navbar {
	padding: 0;
}

.navbar .container-fluid {
	background-color: #fff;
	font-weight: 700;
	font-style: normal;
	color: #e20074;
	padding: 0;
	max-width: var(--maxwidth);
	box-shadow: 0px 1px 0px rgba(17, 17, 26, 0.05),
	0px 0px 8px rgba(17, 17, 26, 0.1);
}

.navbar .navbar-nav .nav-link {
	color: #000;
	text-transform: none;
	font-size: 17px;
	padding-right: 15px;
	padding-left: 15px;
	text-align: center;
}

@media (max-width: 991.98px) {
	.navbar .navbar-nav .nav-link {
		margin-top: 5px;
		margin-bottom: 5px;
	}
}

.navbar .navbar-brand {
	padding: 0;
	margin: 0;

	width: 50px;
	height: 50px;
	background-color: #e20074;
	display: flex;
	justify-content: center;
	align-items: center;
}

.navbar .navbar-brand .logo {
}
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	color: #e20074;
}

/* hamburger  */

.navbar-toggler {
	width: 50px;
	height: 50px;
	border-radius: 0;
	padding: 0;
	border: 0;
	background-color: #f2f2f2;
}

.navbar-toggler-icon {
	background-image: none;
	position: relative;
	width: 20px;
	height: 12px;
	padding: 0;
}

button:focus,
.navbar-toggler:focus {
	outline: 0 !important;
	box-shadow: 0 0 0 0;
}

.navbar-toggler-icon .bar {
	height: 2px;
	background-color: #e20074;
	border-radius: 1px;
	position: absolute;
	left: 0;
	right: 0;
	transition: all 0.5s ease;
}

.navbar-toggler.collapsed .bar.bar1 {
	top: 0;
	transform: rotate(0deg);
}

.navbar-toggler.collapsed .bar.bar2 {
	transform: rotate(0deg);
	opacity: 1;
}

.navbar-toggler.collapsed .bar.bar3 {
	bottom: 0;
	transform: rotate(0deg);
}

.navbar-toggler-icon .bar.bar1 {
	top: calc(50% - 1px);
	transform: rotate(45deg);
}

.navbar-toggler-icon .bar.bar2 {
	top: calc(50% - 1px);
	transform: rotate(45deg);
	opacity: 0;
}
.navbar-toggler-icon .bar.bar3 {
	bottom: calc(50% - 1px);
	transform: rotate(-45deg);
}

.page-wrapper {
	background-color: var(--accent);
	position: relative;
	max-width: var(--maxwidth);
	min-height: 100vh;
	margin-left: auto;
	margin-right: auto;

	overflow: hidden;
	box-sizing: content-box;
	box-shadow: 0px 4px 16px rgba(17, 17, 26, 0.1),
	0px 8px 24px rgba(17, 17, 26, 0.1), 0px 16px 56px rgba(17, 17, 26, 0.1);
}

/* Home */

.home {
	padding-top: max(85px, 5.31rem);
}

.home .img200k {
	width: 18.75rem;
	height: auto;
	max-width: 100%;
	margin: 0.5rem auto 0.75rem auto;
}

.home .hero {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;

	background-image: url("../images/hero-bg-SXdKHkK.svg");
	background-repeat: no-repeat;
	background-position: center top 5.75rem;
	background-size: 100% auto;
	padding-bottom: 6rem;
}

.home .hero .car {
	width: 100%;
	height: auto;
	margin-top: -1.85rem;
	margin-bottom: 0.69rem;
}

.home .hero .telefony {
	width: 9.875rem;
	height: auto;
}

.home .hero .wycieczki {
	width: 10.875rem;
	height: auto;
	margin-top: -1.19rem;
}

.home .hero .ebony {
	width: 11.4375rem;
	height: auto;
	margin-top: 0.75rem;
}

/* Zasady */

.zasady {
	background-color: var(--celadon);
	color: var(--black);
}

.zasady h2 {
	color: var(--celadon);
}

.zasady .container-fluid {
	background-color: var(--light_gray);
}

/* Nagrody */

.nagrody {
	background-color: var(--celadon);
	padding-top: 4rem;
	color: #fff;
}

.nagrody h3,
.nagrody .h3 {
	color: var(--yellow);
}

.nagrody .info30 {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	text-align: left;
	width: fit-content;
	margin: auto;
}

.nagrody .info30 .info30img {
	width: auto;
	height: 5rem;
}

.price-info {
	font-family: "teleneoextrabold_italic";
	text-align: center;
	font-size: 2rem;
	font-weight: normal;
	font-style: normal;
	/*	line-height: 1.875rem;*/

	line-height: 1.875rem;
	letter-spacing: -0.04rem;

	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.price-info p {
	font-size: 1rem;
}

.nagrody .big-txt {
	font-family: "teleneoextrabold_italic";
	font-size: 4rem;
	line-height: 0.8;
	transform: translateY(5%);
}

.nagrody .x {
	width: 1.25rem;
	height: auto;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}

.nagrody .zabka {
	width: 7.0625rem;
	height: auto;
}

.nagrody .telefon2 {
	width: 7.3125rem;
	height: auto;
}

.nagrody .wycieczki2 {
	width: 17.5rem;
	height: auto;
}

/* Najbliższe losowania */

.losowania {
	background-color: var(--light_gray);
	color: var(--accent);
	padding-top: 4rem;
}

.counter {
	text-align: center;
	font-family: "teleneoextrabold";
	font-size: 1rem;
	font-style: normal;
	line-height: normal;
	text-transform: uppercase;

	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
}

.counter .c-box {
	color: var(--light_gray);
	text-align: center;
	font-family: "teleneoextrabold";
	font-size: 1.875rem;
	font-style: normal;
	line-height: normal;
	text-transform: uppercase;

	width: 3rem;
	height: 3.125rem;

	padding-top: 0.25rem;
	margin: 0 auto 0.25rem auto;

	display: flex;
	justify-content: center;
	align-items: center;

	border-radius: 0.3125rem;
	box-shadow: 0 0.063rem 0.188rem 0 rgba(0, 0, 0, 0.25);
}

.counter .dots {
	margin: 0 0.38rem auto 0.38rem;
	height: 3.125rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.counter .dots .dot {
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 50%;
}

.counter .dots .dot:first-child {
	margin-bottom: 0.19rem;
}

.counter .dots .dot:last-child {
	margin-top: 0.19rem;
	filter: brightness(75%);
}

.counter.c-color-accent {
	color: var(--accent);
}

.counter.c-color-accent .c-box {
	background-image: url("../images/klocek-accent-jXBBaUE.svg");
	background-size: 100% 100%;
	background-position: center center;
}

.counter.c-color-accent .dots .dot {
	background-color: var(--accent);
}

.losowania .price-info {
	line-height: 1;
	color: var(--celadon);
}

.losowania .price-info .telefon3 {
	width: 5.5rem;
}

.counter-wycieczka {
	position: relative;
}

.counter-wycieczka .counter {
	position: absolute;
	left: 0;
	right: 0;
	top: 2.25rem;
}

.counter.c-color-yellow {
	color: var(--white);
	text-shadow: 0 0.063rem 0.188rem rgba(0, 0, 0, 0.25);
}

.counter.c-color-yellow .c-box {
	background-image: url("../images/klocek-yellow-bwh1zPR.svg");
	background-size: 100% 100%;
	background-position: center center;
}

.counter.c-color-yellow .dots .dot {
	background-color: var(--yellow);
}

/* Ile masz losów */

.ile {
	padding-top: 4rem;
	padding-bottom: 4rem;
	background-color: var(--accent);
	color: var(--white);
}

/* Laureaci */

.laureaci .container-fluid {
	background-color: var(--light_gray);
}

.laureaci h2 {
	color: var(--lawenda);
}

.laureaci h3 {
	color: var(--accent);
}

.laureaci-tygodnia {
	padding: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.laureaci-tygodnia li {
	font-size: 1rem;
	border-radius: 2.1875rem;
	border: 1px solid var(--lawenda);
	color: var(--black);
	background: var(--white);
	padding: 0.58rem 0 0.18rem 0;

	list-style: none;
	width: calc(50% - 0.76rem);
	margin: 0.19rem 0.38rem;
}

.laureaci-tygodnia li strong {
	display: inline-block;
	font-size: 1.25rem;
	color: var(--lawenda);
}

.page-link {
	font-size: 1rem;
	font-family: "teleneoextrabold";
	border-radius: 0.375rem;
	background: var(--accent);
	color: var(--white);
	margin: 0.38rem;
	display: flex;
	width: 2rem;
	height: 2rem;
	padding: 0.6rem 0 0.4rem 0;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 0.063rem 0.188rem 0 rgba(0, 0, 0, 0.25);

	border: solid 1px var(--accent);
}

.active .page-link {
	background: var(--white);
	color: var(--accent);
	border-color: var(--accent);
}

.laureaci-specjalnych {
	padding: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.laureaci-specjalnych li {
	font-size: 1rem;
	border-radius: 2.3125rem;
	border: 1px solid var(--lawenda);
	color: var(--black);
	background: var(--white);
	padding: 0.38rem;

	list-style: none;
	width: 100%;
	margin: 0.19rem 0.38rem;

	line-height: 1;

	display: flex;
	flex-direction: row;
	align-items: center;

	text-align: left;
}

.laureaci-specjalnych li img {
	width: 4rem;
	height: 4rem;
	margin-right: 0.75rem;
}

.laureaci-specjalnych li.wylosowany .winner {
	display: block;
	font-size: 1.25rem;
	color: var(--lawenda);
	line-height: 1;
}

.laureaci-specjalnych li .winner {
	display: none;
}

.laureaci-specjalnych li .jaka-nagroda {
	display: block;
	line-height: 1;
	opacity: 0.5;
}

.laureaci-specjalnych li.winner-wenecja {
	border-color: var(--accent);
}

.laureaci-specjalnych li.winner-wenecja.wylosowany .jaka-nagroda {
	color: var(--accent);
	opacity: 1;
}

.laureaci-specjalnych li.winner-car {
	border-color: var(--celadon);
}

.laureaci-specjalnych li.winner-car.wylosowany .jaka-nagroda {
	color: var(--celadon);
	opacity: 1;
}

.laureaci-specjalnych li.winner-sewilla {
	border-color: var(--lawenda);
}

.laureaci-specjalnych li.winner-sewilla.wylosowany .jaka-nagroda {
	color: var(--lawenda);
	opacity: 1;
}

.laureaci-specjalnych li.winner-paris {
	border-color: var(--yellow);
}

.laureaci-specjalnych li.winner-paris.wylosowany .jaka-nagroda {
	color: var(--yellow);
	opacity: 1;
}

/* Regulamin */

.regulamin {
	background-color: var(--celadon);
	color: var(--white);
	padding: 4rem 0;
}

/* Kontakt */

.kontakt {
	background-color: var(--accent);
	color: var(--white);
}

/* footer */

footer {
	position: relative;
	padding: 2.65rem 0 10rem 0;
	font-size: 1rem;
	background-color: var(--light_gray);
	color: var(--black);
}

footer a {
	color: inherit;
}

.footer-logo {
	width: auto;
	height: 1.82225rem;
	margin-bottom: 1.55rem;
}

/* Form */

.trigger {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	right: auto;
	bottom: 0;
	top: auto;
	width: 100%;
	max-width: var(--maxwidth);

	z-index: 5;

	transition: all 0.3s ease-In-Out;
	background-image: url("../images/trigger-bg-So_cZDE.svg");
	background-repeat: no-repeat;
	background-position: center top 0.56rem;
	background-size: 100% auto;

	text-align: center;
	padding-bottom: 1.31rem;

	color: var(--black);

	filter: drop-shadow(0 0 0.25rem rgba(0, 0, 0, 0.25));
}

body:has(.offcanvas-accent.showing) .trigger,
body:has(.offcanvas-accent.show) .trigger {
	transform: translateY(100%) translateX(-50%);
}

.attention {
	animation: bounce 2s ease 0s infinite normal forwards;
}

@keyframes bounce {
	0%,
	100% {
		transform: translateX(0%);
		transform-origin: 50% 50%;
	}

	15% {
		transform: translateX(-1rem) rotate(-3deg);
	}

	30% {
		transform: translateX(0.5rem) rotate(3deg);
	}

	45% {
		transform: translateX(-0.5rem) rotate(-1.8deg);
	}

	60% {
		transform: translateX(0.3rem) rotate(1.2deg);
	}

	75% {
		transform: translateX(-0.2rem) rotate(-0.6deg);
	}
}

.form-label {
	width: 100%;
	text-align: center;
	font-family: "teleneoextrabold";
	font-size: 1rem;
	font-style: normal;
	line-height: normal;
	letter-spacing: -0.02rem;
	margin-bottom: 0.5rem;
}

.form-control {
	height: 3rem;
	text-align: center;
	color: var(--accent);
	border-radius: 0.3125rem;
	background-color: var(--white);
	border: 1px solid var(--dark-accent);
	box-shadow: 0 0.188rem 0.375rem 0 rgba(0, 0, 0, 0.5) inset;
}

.form-container .form-control:disabled,
.form-container .form-control[readonly] {
	background-color: transparent;
	color: var(--white);
	border-color: var(--white);
	box-shadow: none;
	opacity: 1;
	-webkit-text-fill-color: var(--white);
}

.form-check-input {
	border-radius: 0.3125rem;
	background-color: var(--white);
	border: 1px solid var(--dark-accent);
	box-shadow: 0 0.188rem 0.375rem 0 rgba(0, 0, 0, 0.5) inset;
}

.form-check-input:checked {
	background-color: var(--dark-accent);
	border-color: var(--dark-accent);
}

.form-check-label {
	font-size: 1rem;
	letter-spacing: -0.02rem;
}

.form-check-label a {
	color: inherit;
}

.form-control.is-invalid,
.was-validated .form-control:invalid,
.form-check-input.is-invalid,
.was-validated .form-check-input:invalid {
	border: 1px solid var(--dark-accent);
	box-shadow: 0 0.188rem 0.375rem 0 rgba(0, 0, 0, 0.5) inset;

	animation: alert 2s ease-In-out 0s infinite normal forwards;
}

@keyframes alert {
	0% {
		background-color: rgba(255, 255, 255, 1);
	}

	50% {
		background-color: rgba(255, 154, 206, 1);
	}

	100% {
		background-color: rgba(255, 255, 255, 1);
	}
}
.alert-primary {
	--bs-alert-color: var(--white);
	--bs-alert-bg: rgba(255, 255, 255, 0.1);
	--bs-alert-border-color: var(--white);
	--bs-alert-link-color: var(--white);
	border-style: dashed;
	outline: 0.25rem solid rgba(0, 0, 0, 0.15);
	outline-offset: 2px;
	margin-bottom: 2rem;
	box-shadow: 0px 16px 16px 0px rgba(0, 0, 0, 0.15);
	border-width: 0.15rem;
	text-align: center;
	font-size: 1.1rem;
}
.invalid-feedback {
	color: var(--white);
}

.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
	color: var(--white);
}

.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
	animation: alert-input 2s ease-In-out 0s infinite normal forwards;
}

@keyframes alert-input {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.6;
	}

	100% {
		opacity: 1;
	}
}

/* offcanvas */

.offcanvas {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	background-color: transparent;
	border: 0;
}

.offcanvas-header {
	padding: 3rem 0 0 0;
	position: relative;
	background-color: transparent;
	border: 0;
	width: 100%;
	max-width: var(--maxwidth);
	margin-left: auto;
	margin-right: auto;
}

.offcanvas.offcanvas-bottom {
	border-top: 0;
	height: 100%;
	overflow: auto;
}

.offcanvas-header .btn-close {
	position: absolute;
	right: 1.31rem;
	top: 2.5rem;
	width: 1.5rem;
	height: 1.5rem;
	background-image: url("../images/x-accent-KyB4Ap4.svg");
	background-size: contain;
	padding: 0;
	opacity: 1;
}

.offcanvas-accent .offcanvas-body {
	background-color: var(--accent);
	color: var(--white);
	height: fit-content;
	overflow: visible;
	max-width: var(--maxwidth);
	margin-left: auto;
	margin-right: auto;
	width: 100%;

	padding: 0 2.06rem 3.12rem 2.06rem;
}

.offcanvas-white .offcanvas-body {
	background-color: var(--light_gray);
	color: var(--black);
	height: fit-content;
	overflow: visible;
	max-width: var(--maxwidth);
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	position: relative;

	padding: 0 2.06rem 3.12rem 2.06rem;
}

/* modal */

.modal .modal-dialog {
	max-width: var(--maxwidth);
	margin: auto;
}

.modal .modal-dialog {
	background-color: transparent;
	border: 0;
	width: 100%;
}

.modal .modal-dialog .modal-content {
	background-color: transparent;
	border: 0;
	width: 100%;
}

.modal .modal-dialog .modal-content .modal-body {
	background-color: var(--accent);
	color: var(--white);
	padding-top: 0;
	padding-bottom: 0;
	position: relative;
	overflow: visible;
	z-index: 2;
}

.modal-header,
.modal-footer {
	padding: 0;
	position: relative;
	background-color: transparent;
	border: 0;
	width: 100%;

	margin-left: auto;
	margin-right: auto;
}

.modal-header .btn-close {
	position: absolute;
	right: 1.31rem;
	top: -0.5rem;
	width: 1.5rem;
	height: 1.5rem;
	background-image: url("../images/x-accent-KyB4Ap4.svg");
	background-size: contain;
	padding: 0;
	opacity: 1;
}

.modal-footer > * {
	margin: 0;
}

/* GRA */

.gadget {
	background-color: var(--white);
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.gadget .info {
	font-size: 1.25rem;
	background-color: var(--accent);
	padding-top: 1.69rem;
	padding-bottom: 1.56rem;
	text-align: center;
	position: relative;
	z-index: 2;
}

.gadget .clickhere {
	flex: auto;
	position: relative;
}

.gadget .clickhere.is-unlocking {
	pointer-events: none;
}

.gadget .clickhere .arch-top {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	height: auto;
	z-index: 2;
}

.gadget .clickhere .arch-bottom {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	z-index: 2;
}

.gadget .clickhere .gadget-blob-01 {
	position: absolute;
	width: 5rem;
	height: 6.6875rem;
	top: -1.44rem;
	right: 0;
	z-index: 3;
}

.gadget .clickhere .gadget-blob-02 {
	position: absolute;
	width: 5.3125rem;
	height: 7.5625rem;

	bottom: -1.03rem;
	left: -0.69rem;
	z-index: 3;
}

.gadget .gadget-animation {
	position: absolute;
	top: 0;
	bottom: 1.37rem;
	width: 100%;

	cursor: pointer;

	z-index: 1;

	background-image: var(--step1), var(--step2);
	background-size: contain, contain;
	background-repeat: no-repeat, no-repeat;
	background-position: center center, center center;

	transition: all 0.3s ease-In-Out;

	animation: shake 2s ease 0s infinite normal forwards;
}

@keyframes shake {
	0%,
	100% {
		transform: rotate(0deg);
		transform-origin: 50% 100%;
		background-image: var(--step1), var(--step2);
	}

	10% {
		transform: rotate(0.25deg);
		background-image: var(--step2), var(--step1);
	}

	20%,
	40%,
	60% {
		transform: rotate(-0.5deg);
		background-image: var(--step1), var(--step2);
	}

	30%,
	50%,
	70% {
		transform: rotate(0.5deg);
		background-image: var(--step2), var(--step1);
	}

	80% {
		transform: rotate(-0.25deg);
		background-image: var(--step1), var(--step2);
	}

	90% {
		transform: rotate(0.25deg);
		background-image: var(--step2), var(--step1);
	}
}

.gadget .clickhere.wylosowano .gadget-animation {
	background-image: var(--step3);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	animation: none;
}

.gadget-01 {
	--step1: url("../images/gadgety/gadget-01/step1-rCYVajj.jpg");
	--step2: url("../images/gadgety/gadget-01/step2-L0Pjk3U.jpg");
	--step3: url("../images/gadgety/gadget-01/step3-8pB6Q-3.jpg");
}

.gadget-02 {
	--step1: url("../images/gadgety/gadget-02/step1-fcnVZ3J.jpg");
	--step2: url("../images/gadgety/gadget-02/step2-QCcNr2B.jpg");
	--step3: url("../images/gadgety/gadget-02/step3-2aNAUTk.jpg");
}

.gadget-03 {
	--step1: url("../images/gadgety/gadget-03/step1-H9cRS-9.jpg");
	--step2: url("../images/gadgety/gadget-03/step2-_A76exE.jpg");
	--step3: url("../images/gadgety/gadget-03/step3-Qp6rFyK.jpg");
}

.gadget-04 {
	--step1: url("../images/gadgety/gadget-04/step1-i2DZs4e.jpg");
	--step2: url("../images/gadgety/gadget-04/step2-HNIm1dB.jpg");
	--step3: url("../images/gadgety/gadget-04/step3-tdE8Lnk.jpg");
}

.gadget-05 {
	--step1: url("../images/gadgety/gadget-05/step1-xPo_TOr.jpg");
	--step2: url("../images/gadgety/gadget-05/step2-hQZ15fh.jpg");
	--step3: url("../images/gadgety/gadget-05/step3-kntCNkx.jpg");
}

.gadget-06 {
	--step1: url("../images/gadgety/gadget-06/step1-HWm82Kg.jpg");
	--step2: url("../images/gadgety/gadget-06/step2-Ox0XMlS.jpg");
	--step3: url("../images/gadgety/gadget-06/step3-NkiTneV.jpg");
}

.gadget .gadget-animation.gadget-03,
.gadget .gadget-animation.gadget-05,
.gadget .gadget-animation.gadget-06 {
	animation: zoom 10s ease-in-out 0s infinite alternate both;
	background-size: 100% auto, 100% auto;
}

.gadget .clickhere.wylosowano .gadget-animation.gadget-03,
.gadget .clickhere.wylosowano .gadget-animation.gadget-05,
.gadget .clickhere.wylosowano .gadget-animation.gadget-06 {
	background-size: 100% auto, 100% auto;
}

@keyframes zoom {
	0% {
		background-size: 100% auto, 100% auto;
	}

	100% {
		background-size: 110% auto, 110% auto;
	}

	0%,
	20%,
	40%,
	60%,
	80%,
	100% {
		background-image: var(--step1), var(--step2);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		background-image: var(--step2), var(--step3);
	}
}

/* Winner offcanvas */

.winner30 {
	width: 13rem;
	height: auto;
	margin-top: -3rem;
	position: relative;
	z-index: 2;
}

.nagroda {
	font-family: "teleneoextrabold_italic";
	text-transform: uppercase;

	height: 15.625rem;
	width: 100%;
	color: var(--white);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.nagroda.zabka {
	background-image: url("../images/badge-green-dE4tWJn.svg");
}

.nagroda.losy {
	background-image: url("../images/badge-accent-tDcIfuM.svg");
}

.nagroda .bigtxt {
	font-size: 3.25rem;
	line-height: 1;
	letter-spacing: -0.065rem;
}
.nagroda .midtxt {
	font-size: 2rem;
	line-height: 1;
	letter-spacing: -0.04rem;
}

.nagroda .smalltxt {
	font-size: 1rem;
	line-height: 1;
	letter-spacing: -0.02rem;
}

.nagroda .zabka {
	width: 7.3125rem;
	height: auto;
}

.ile-do {
	font-family: "teleneoextrabold";
	text-align: center;
	font-size: 1rem;
	color: var(--textcolor);
}

.ile-do .los {
	font-family: "teleneoextrabold_italic";
	font-size: 2.5rem;
	letter-spacing: -0.05rem;
	text-transform: uppercase;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.ile-do .los .plus {
	font-family: "teleneoextrabold_italic";
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;

	color: var(--white);
	background-image: var(--rose);
	background-repeat: no-repeat;
	background-size: contain;

	margin-right: 0.5rem;
	padding-top: 0.5rem;
	padding-right: 0.5rem;
	margin-top: -0.5rem;

	width: 3.875rem;
	height: 3.875rem;
}

.ile-do.tygodniowej {
	--textcolor: var(--accent);
	--rose: url("../images/roze-accent-u-duawC.svg");
}

.ile-do.specjalnej {
	--textcolor: var(--celadon);
	--rose: url("../images/roze-celadon-_iPIDrT.svg");
}

.ile-aktualnie .los {
	font-family: "teleneoextrabold_italic";
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	background-image: url("../images/roze-white-HGTm9kH.svg");
	background-repeat: no-repeat;
	background-size: contain;

	padding-top: 0.5rem;
	width: 6rem;
	height: 6rem;

	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0.38rem;
}

.ile-aktualnie .los .plus {
	font-family: "teleneoextrabold";
	font-size: 2rem;
	letter-spacing: -0.04rem;
}

.ile-aktualnie.tygodniowej .los {
	color: var(--accent);
}

.ile-aktualnie.specjalnej .los {
	color: var(--celadon);
}

.wygrana-blob-01 {
	position: absolute;
	width: 5rem;
	height: 6.6875rem;
	top: 30rem;
	right: 0;
	z-index: 3;
}

.wygrana-blob-02 {
	position: absolute;
	width: 5.3125rem;
	height: 7.5625rem;

	top: 3rem;
	left: -0.69rem;
	z-index: 3;
}

/* Intro VIdeo  */

#introVideo {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.8s ease;
}

#introVideo.fade-out {
	opacity: 0;
	pointer-events: none;
}

#introVideo video {
	width: 100%;

	max-width: var(--maxwidth);
	height: 100%;
	object-fit: cover;
}

/* Parallax  */

section {
	position: relative;
}

.parallax {
	position: absolute;
	z-index: 2;
}

.trig.parallax {
	transform: translateY(calc(var(--trig) * -0.3));
}

.parallax01 {
	width: 4.4375rem;
	height: 2.625rem;
	aspect-ratio: 71/42;

	left: 0;
	top: 29.5rem;
}

.parallax02 {
	width: 3.875rem;
	height: 5.5rem;

	right: 0;
	top: 38.88rem;
}

.parallax03 {
	width: 5.875rem;
	height: 8.375rem;

	left: 0;
	top: -2.12rem;
}

.parallax04 {
	width: 6.04031rem;
	height: 5.82194rem;
	right: 1.12rem;
	top: -2.44rem;
}

.parallax05 {
	width: 4.4375rem;
	height: 2.625rem;

	right: 0;
	top: 12rem;
}

.parallax06 {
	width: 5.9375rem;
	height: 8.4375rem;

	right: 0;
	top: -3.06rem;
}

.parallax07 {
	width: 4.4375rem;
	height: 2.625rem;
	left: 0;
	top: 23.25rem;
}

.parallax08 {
	width: 3.76744rem;
	height: 5.0625rem;

	right: 0;
	top: 22.06rem;
}

.parallax09 {
	width: 3.907rem;
	height: 5.25rem;

	left: 0;
	top: 41.19rem;
}

.parallax10 {
	width: 4.4375rem;
	height: 2.625rem;

	right: 0;
	top: 42rem;
}

.parallax10b {
	width: 4.4375rem;
	height: 2.625rem;
	left: 0;
	top: 59rem;
}

.parallax12 {
	width: 4.4375rem;
	height: 2.625rem;

	right: -1rem;
	top: 79.75rem;
}

.parallax11 {
	width: 3.875rem;
	height: 5.5625rem;

	right: 0;
	top: 66rem;
}

.parallax13 {
	width: 3.86044rem;
	height: 5.1875rem;

	left: 0;
	top: 82rem;
}

.parallax14 {
	width: 6rem;
	height: 8.0625rem;

	left: 0;
	top: 6.62rem;
}

.parallax15 {
	width: 5.3125rem;
	height: 7.5625rem;

	right: 0;
	top: 17.94rem;
}

.parallax16 {
	width: 4.07269rem;
	height: 6.49738rem;
	right: 1.11rem;
	top: 0;
}

.parallax17 {
	width: 6.57056rem;
	height: 6.37413rem;

	left: 1.06rem;
	top: -2.44rem;
}

.parallax18 {
	width: 2.625rem;
	height: 3.875rem;
	right: 0;
	top: 0;
}

.parallax19 {
	width: 5.3125rem;
	height: 7.5625rem;

	left: 0;
	top: -2.88rem;
}

.parallax20 {
	width: 5.3125rem;
	height: 7.5625rem;

	right: 0;
	top: -2.12rem;
}

.aktualnie-parallax-01 {
	width: 3.25rem;
	height: 4.8125rem;

	left: 0;
	top: 0;
}

.aktualnie-parallax-02 {
	width: 3.25rem;
	height: 4.8125rem;

	right: 0;
	bottom: -4rem;
}
