:root {
  --cream: #f3e5dc;
  --yellow: #ffcb00;
  --purple: #46358c;
  --pink: #e73c6a;
  --ink: #423938;
  --muted: #878787;
  --gold-cream: #edd491;
  --gray: #D9D9D9;
  --nav-height: 4.75rem;
  --radius-pill: 3.9375rem;
  --font-display: interstate, "Arial Black", "montserrat", sans-serif;
  --font-body: montserrat, sans-serif;
}

html {
   font-size: clamp(12px,min(1.333vw, 1.569vh) ,16px); 
   /* font-size: 16px; */
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  padding-top: var(--nav-height);
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
}

.site-wrapper {
  width: 100%;
  overflow: hidden;
}

img { max-width: 100%; }

[data-trig] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .6s ease, transform .6s ease;
}

[data-trig].trig {
  opacity: 1;
  transform: translateY(0);
}

.navbar {
  min-height: var(--nav-height);
  background: rgba(243, 229, 220, .97);
  padding: 1.15rem 0;
}

.navbar .container-fluid {
  max-width: 88.75rem;
}

.navbar-brand {
  margin-right: 1.91rem;
}
.navbar-brand img {
  display: block;
  width: 8.0625rem;
  height: auto;
      margin-top: -1.0rem;
}

.navbar-nav { gap: 1.88rem; }

.navbar .nav-link {
  color: var(--purple);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active { color: var(--pink); }

.navbar-toggler {
  border: 0;
  padding: .35rem .55rem;
}

.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(70, 53, 140, .2); }

.navbar-toggler-icon {
  position: relative;
  width: 1.5rem;
  height: 1.125rem;
  background-image: none;
}

.navbar-toggler-icon .bar {
  position: absolute;
  right: 0;
  left: 0;
  height:2px;
  border-radius: 2px;
  background: var(--purple);
  transition: top .3s ease, bottom .3s ease, opacity .3s ease, transform .3s ease;
}

.navbar-toggler-icon .bar-1 { top: 50%; transform: rotate(45deg); }
.navbar-toggler-icon .bar-2 { top: 50%; opacity: 0; }
.navbar-toggler-icon .bar-3 { bottom: calc(50% - .125rem); transform: rotate(-45deg); }
.navbar-toggler.collapsed .bar-1 { top: 0; transform: rotate(0); }
.navbar-toggler.collapsed .bar-2 { top: calc(50% - .0625rem); opacity: 1; }
.navbar-toggler.collapsed .bar-3 { bottom: 0; transform: rotate(0); }

.section-space { padding: 6.25rem 0; }

.section-title {
  margin-bottom: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4375rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.text-purple { color: var(--purple); }

.btn {
      --bs-btn-font-size: 1.25rem;
}

.btn-brand,
.btn-secondary-brand, .btn-primary {
  min-width: 14.375rem;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 1rem 2rem;
  line-height: 1.5rem;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-brand, .btn-primary { color: var(--purple); background: var(--yellow); }
.btn-secondary-brand { color: var(--yellow); background: var(--purple); }

.btn-brand:hover,
.btn-brand:focus,
.btn-primary:hover,
.bbtn-primary:focus,
.btn-secondary-brand:hover,
.btn-secondary-brand:focus {
  color: var(--purple);
  background: #ffd738;
  transform: translateY(-.125rem);
  box-shadow: 0 .5rem 1.5rem rgba(35, 25, 81, .2);
}

.hero-section { background: var(--cream); }

.hero-stage {
  position: relative;
  width: min(100%, 120rem);
  min-height: clamp(38rem, 49.3229vw, 59.1875rem);
  overflow: hidden;
}

.hero-title {
  position: absolute;
  z-index: 2;
  top: clamp(2.25rem, 2.5521vw, 3.0625rem);
  left: clamp(13.5rem, 22.0313vw, 26.4375rem);
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-title-line,
.hero-title-emphasis { display: block; }

.hero-title-line {
  font-size: clamp(2.5rem, 3.3333vw, 4rem);
  line-height: 1.1;
}

.hero-title-emphasis {
  font-size: clamp(3.75rem, 5vw, 6rem);
  line-height: 1.0417;
}

.hero-art {
  position: absolute;
  top: clamp(5rem, 8.2813vw, 9.9375rem);
  left: 20.625%;
  width: 54.4792%;
  height: auto;
  aspect-ratio: 1046 / 668;
  overflow: hidden;
}

.hero-art img {
width:100% ;
height: auto;
}

.hero-cta {
  position: absolute;
  z-index: 3;
  bottom: clamp(4rem, 8.2292vw, 9.875rem);
  left: calc(50% + .75rem);
  transform: translateX(-50%);
}

.hero-cta:hover,
.hero-cta:focus { transform: translateX(-50%) translateY(-.125rem); }


/* Form */

.form {
    background: var(--yellow);
}



.form .form-control.is-invalid {
	background-image: none;
	background-color: #ff0000;
	color: #fff;
}

.form .form-control.is-invalid::placeholder {
	color: #fff;
}

.form .form-container .input-group-addon {
	width: 44px;
	height: 44px;
	position: absolute;
	right: 0px;
	top: 0;
	cursor: pointer;
	z-index: 3;
}

.form  .input-group {
  transition: all 0.5s ease-in-out;
  min-height: 33px;
}

.form  .small-field {
  margin-top: 4px;
}


.form  .form-container {
	position: relative;
	
	background-color: #fff;
  background-image: url("../images/form-top-IBhhtuH.svg"), url("../images/form-bottom-ep5GxgU.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: center top -1px, center bottom -1px;
  background-size: max(100%, 70.938rem) 1.125rem, max(100%, 70.938rem) 1.125rem;;
	padding: 4.62rem 2.6rem;
	max-width: 70.9375rem;
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	color:var(--purple);
  line-height: 1;
}



.form-control, .form-floating>.form-control {
  color: var(--muted);  
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background-color: var(--gray);
  color: var(--purple);

  border: 0;
  padding: 0 2.12rem;
  height: 3rem;
  min-height: 3rem;
  border-radius: 1.5rem;
}

.form-floating>label {
font-size: 0.875rem;
padding: 0 2.12rem;
font-style: normal;
font-weight: 600;
line-height: 1;
display: flex;
flex-direction: column;
justify-content: center;

height: 3rem;
  
}

.form-control:focus {
    border-color: var(--yellow);
    outline: 0;
    box-shadow: 0 0 0 0.188rem var(--yellow);
}


.data-input-row {
  border-top: dotted 0.25rem var(--purple);
  border-bottom: dotted 0.25rem var(--purple);
}

@media (min-width: 768px) {  
.data-input-row > div:first-child {
  border-right: dotted 0.25rem var(--purple); 
}
}

@media (max-width: 767.98px) { 
  .data-input-row > div:first-child {
  border-bottom: dotted 0.25rem var(--purple); 
}
 }

.data-input-row h3 {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto 2.56rem auto;
  background-image: url("../images/apla-h9VCFlg.svg");
  background-size: 100% 100%;
  color: #fff;
  width: 12.75rem;
  height: 8.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.input-group-text {
  background-color: var(--gray);
  color: var(--purple);
  border: 0;
  border-radius: 1.5rem;
  padding: .5rem;
  cursor: pointer;
}

.input-group-text img {
  width: 2rem;
  height: auto;
}

 label.form-check-label {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.25rem 0 0 0;
}

label a {
	color: inherit;
}


  .form-check {
	position: relative;
}

.form-check .form-check-input {
	border-radius: 0;
	border: 0;
  background-color: var(--gray);
  width: 1rem;
  height: 1rem;
}

.form-container .form-check-input:checked[type=checkbox] {

}
.form-check-input:checked {
	background-color: var(--purple)
}

.zgody {
  border-bottom: dotted 0.25rem var(--purple);
  padding: 3rem 0 2.5rem 0;
}

.form-container .zgody .collapseBtn {
	cursor: pointer;
	transition: all 0.5s ease-in-out;
	z-index: 3;
	position: absolute;
	right: -5px;
	top: 5px;	
}

.form-container .zgody .collapseBtn.collapsed {
	-ms-transform: rotate(180deg); /* IE 9 */
	-webkit-transform: rotate(180deg); /* Safari 3-8 */
	transform: rotate(180deg);
	transition: all 0.5s ease-in-out;
}

.form-container .more-btn {
	fill: #031d4f;
}

.form-container .zgody .collapseBtn.collapsed .more-btn {
	fill: #fff;
}

.form-container .zgody .collapseBtn.collapsed .more-btn {
	fill: #fff;
}

.form-container .zgody .collapse, .form-container .zgody .collapsing {
  background-color: #fff;
  color:#031d4f;
  font-size: 11px;
  padding: 20px 50px 20px 25px;

  -webkit-box-shadow: 3px 3px 7px 0px rgba(0,0,0,0.35);
  -moz-box-shadow: 3px 3px 7px 0px rgba(0,0,0,0.35);
  box-shadow: 3px 3px 7px 0px rgba(0,0,0,0.35);
  position: absolute;

  z-index: 2;
  top: 0;
  right: -15px;
	
  width: 100%;
}

.popover-body {
	padding: 5px 0; }
.popover-body img {
	width: 100%;
	height: auto;
}



/* zaślepki */

.form .form-container {
  position: relative;
}


.zaslepka {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.zaslepka.active {
  display: flex;
}

.zaslepka-hero { color: #fff;}

.zaslepka p, .zaslepka-hero p {
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: auto;
}

.zaslepka .time-stamp, .zaslepka-hero .time-stamp {
 
    width: 12.75rem;
    height: 8.75rem;

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

    margin: 1.5rem auto auto auto;
    background-image: url("../images/time-stamp-kIOnj04.svg");
    background-size: 100% 100%;
    color: #fff;

    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.9375rem;

}

.form .form-container:has(.zaslepka.active) {
  background-color:  #46358C;
}

.form .form-container:has(.zaslepka.active) .form-container-inner {
  opacity: 0.08;
}


.rules-section { background: var(--purple); }

.rule-card img {
  width: 13.125rem;
  height: auto;
  object-fit: contain;
}

.rule-card h3 {
  max-width: 24rem;
  margin: 1.25rem auto 0;
  color: var(--gold-cream);
  font-size: 1.25rem;
  font-weight: 400;
}

.rules-note {
  max-width: 50rem;
  margin-top: 4rem;
  margin-bottom: 3.38rem;
  color: var(--gold-cream);

  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.prizes-section { background: var(--cream); }
.prizes-visual { width: min(100%, 70rem); }

.winners-section { background: var(--pink); }

.calendar-row { max-width: 62rem; margin-inline: auto; margin-top: 3.5rem; }

.calendar-col { padding: 0 3rem 2rem; }

@media (min-width: 768px) {

.calendar-col:first-child {
  border-right: 1px solid var(--purple);
}

.calendar-col + .calendar-col {
  border-left: 1px solid var(--purple);
}
 }

.calendar-wrap { max-width: 19.4069rem; margin-inline: auto; }

.calendar-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 .4rem;
  color: white;
  font-size: 1.0766rem;
  line-height: 1;
  text-align: center;
}

.month {
  caption-side: top;
  width: 12.75rem;
  height: 8.75rem;
  margin: -1.25rem auto 1rem auto;

  color: var(--purple);
  background-image: url("../images/apla2-BqdZVRx.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;

  font-size: 1.65rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;

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

.calendar-table th {
  height: 2rem;
  padding: 0;
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.calendar-table td {
  height: 1.75rem;
  padding: 0;
  border: 0;
  color: white;
  font-weight: 400;
  vertical-align: middle;
}

.calendar-table th:nth-child(n+6),
.calendar-table td:nth-child(n+6) { color: var(--purple); }

.calendar-table td.is-highlighted span {
  display: inline-flex;
  width: 1.875rem;
  height: 1.875rem;
  align-items: center;
  justify-content: center;
  border: .125rem solid var(--purple);
  border-radius: 50%;
  color: var(--purple);
  background: var(--cream);
}

.winner-list {
  max-width: 52rem;
  margin-top: 2rem;
  border-radius: 1rem;
  padding: 1.25rem 1.25rem .25rem;
  background: rgba(255, 255, 255, .12);
}

.draw-note { margin: 4rem 0 0; font-size: 1.5rem; font-weight: 700; }
.small-draw-note { margin: 0; font-size: 1rem; font-weight: 400; }

.products-section { background: var(--purple); }

.products-swiper {
  --product-blob-scale: 1;
  position: relative;
  width: 100%;
  min-height: 38rem;
  margin-inline: 0;
  overflow: hidden;
  padding: 4rem 0 2rem;
}

.products-swiper:focus-visible { outline: .1875rem solid var(--yellow); outline-offset: .25rem; }

.products-swiper .swiper-wrapper {
  display: flex;
  align-items: flex-end;
  will-change: transform;
  transition-property: transform;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.products-swiper .swiper-slide {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  min-height: 30.438rem;
  align-items: flex-end;
  justify-content: center;
}

.products-swiper .swiper-slide::before {
  position: absolute;
  z-index: 0;
  bottom: 1.625rem;
  left: 50%;
  width: 26.5625rem;
  height: 27.125rem;
  background: url("../images/blob02-Ov35o_4.svg") center / contain no-repeat;
  content: "";
  transform: translateX(-50%) scale(var(--product-blob-scale));
  transform-origin: center bottom;
  transition: transform .3s ease;
}

.products-swiper .swiper-slide[data-product-index="0"]::before,
.products-swiper .swiper-slide[data-product-index="2"]::before,
.products-swiper .swiper-slide[data-product-index="4"]::before {
  bottom: 5.625rem;
  width: 27.125rem;
  height: 18.625rem;
  background-image: url("../images/blob01-N_rLGg0.svg");
}

.products-swiper .swiper-slide[data-product-index="3"]::before {
  bottom: 2.125rem;
  height: 27.125rem;
  background-image: url("../images/blob03-KIfrVd8.svg");
}

.products-swiper .swiper-slide img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 38.875rem;
  object-fit: contain;
  pointer-events: none;
  transform: scale(.792);
  transform-origin: center bottom;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  user-select: none;
}

.products-swiper .swiper-slide.is-active img {
  z-index: 2;
  transform: scale(1);
}

.products-swiper .swiper-button-next,
.products-swiper .swiper-button-prev {
  position: absolute;
  z-index: 3;
  top: 0;
  width: 3rem;
  height: 3rem;
  border: 0;
  padding: 0;
  color: var(--yellow);
  background: transparent;
  cursor: pointer;
}

.products-swiper .swiper-button-prev { left: calc(50% - 30.75rem); }
.products-swiper .swiper-button-next { right: calc(50% - 30.75rem); }

.products-swiper .swiper-button-next::after,
.products-swiper .swiper-button-prev::after {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  border-top: 0.438rem solid currentColor;
  border-right: 0.438rem solid currentColor;
  content: "";
}

.products-swiper .swiper-button-prev::after { margin-left: .8rem; transform: rotate(-135deg); }
.products-swiper .swiper-button-next::after { margin-left: .25rem; transform: rotate(45deg); }

.products-swiper .swiper-button-next:hover,
.products-swiper .swiper-button-next:focus-visible,
.products-swiper .swiper-button-prev:hover,
.products-swiper .swiper-button-prev:focus-visible { color: white; }

.contact-section { background: var(--yellow); }
.contact-form { max-width: 57.3125rem; }
.contact-form .form-control { background: white; }

.contact-form textarea.form-control {
  min-height: 18.875rem;
  height: 18.875rem;
  border-radius: 1.5rem;
  padding-top: 2rem;
  resize: vertical;
}

.contact-consent {  margin-inline: auto; }
.contact-consent .form-check-input {background-color: #fff;}
.contact-consent .form-check-label { font-size: .75rem; line-height: 1.5; color: var(--purple);}

.regulations-section { color: white; background: var(--purple); }

.site-footer {
  padding: 3rem 0;
  color: white;
  background: var(--purple);
  font-size: .875rem;
}

.footer-links { gap: 1rem 2.875rem; }
.footer-links a { color: white; text-decoration: none; }
.footer-links a:hover,
.footer-links a:focus { color: var(--yellow); }

/* Zaślepka przed rozpoczęciem loterii */

.prelaunch-page { padding-top: 0; background: var(--cream); }
.prelaunch-hero { background: var(--cream); }

.prelaunch-stage {
  --prelaunch-hero-top: clamp(5rem, 8.2813vw, 9.9375rem);
  --prelaunch-hero-height: min(34.7875vw, 41.75rem);
  position: relative;
  width: min(100%, 120rem);
  min-height: 70rem;
  overflow: hidden;
}

.prelaunch-title {
  position: absolute;
  z-index: 2;
  top: 2.9375rem;
  left: 25.625rem;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
}

.prelaunch-title span,
.prelaunch-title strong { display: block; }

.prelaunch-title span {
  font-size: 4rem;
  line-height: 1.1;
}

.prelaunch-title strong {
  font-size: 6rem;
  line-height: 6.25rem;
}

.prelaunch-art {
  position: absolute;
  top: 11rem;
  left: 20.2604%;
  width: 54.4792%;
  height: 35.625rem;
  overflow: hidden;
}

.prelaunch-art > img {
  position: absolute;
  top: -44.78%;
  left: 0;
  width: 100%;
  max-width: none;
  height: 179.26%;
}

.prelaunch-info {
  position: absolute;
  z-index: 3;
  top: calc(var(--prelaunch-hero-top) + var(--prelaunch-hero-height) - 8rem);
  left: 43.0208%;
  width: 32.5521%;
  color: var(--ink);
  text-align: center;
}

.prelaunch-info > p {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.prelaunch-date {
  position: relative;
  width: 12.75rem;
  height: 7.875rem;
  margin: .75rem auto 0;
}

.prelaunch-date > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.prelaunch-date > p {
  position: absolute;
  inset: 0;
  display: flex;
  margin: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2917;
}

.prelaunch-cta {
  position: absolute;
  z-index: 4;
  top: 58.0625rem;
  left: 50%;
  min-width: 14.625rem;
  border: 0;
  border-radius: var(--radius-pill);
  padding: .875rem 2rem;
  color: white;
  background: #fbbc20;
  font-size: 1.25rem;
  font-weight: 700;
  transform: translateX(-50%);
}

.prelaunch-cta:hover,
.prelaunch-cta:focus {
  color: white;
  background: var(--purple);
  transform: translateX(-50%) translateY(-.125rem);
}

.prelaunch-footer {
  display: flex;
  min-height: 8.9375rem;
  align-items: center;
  padding: 2rem 0;
}

/* Formularz laureata */

.winner-form-page {
  padding-top: 0;
  background: var(--yellow);
  color: #423938;
}

.winner-form-section {
  min-height: 139.25rem;
  padding: 8rem 1rem 10.3125rem;
  background: var(--yellow);
}

.winner-form-heading {
  color: var(--purple);
  margin-bottom: 5rem;
}

.winner-form-heading h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 7.375rem;
  font-weight: 900;
  line-height: 1.0085;
}

.winner-form-heading p {
  margin: 1.25rem auto 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.winner-sheet {
  position: relative;
  max-width: 74.375rem;
  overflow: hidden;
}

.winner-sheet::before {
  position: absolute;
  z-index: 0;
  inset: .75rem 0;
  background: white;
  content: "";
}

.winner-sheet-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

.winner-form-section .form-container .winner-sheet-content {
  position: relative;
  z-index: 1;
  color: #423938;
}

.winner-sheet .form-control {
  min-height: 3rem;
  height: 3rem;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 1.2rem 1.4375rem .2rem;
  color: var(--ink);
  background: #d9d9d9;
  font-size: .875rem;
  font-weight: 600;
}

.winner-sheet .form-floating > label {
  height: 3rem;
  border: 0;
  padding: .875rem 1.4375rem;
  color: var(--muted);
  font-size: .875rem;
  font-weight: 600;
}

.winner-sheet .form-floating > .form-control:focus ~ label,
.winner-sheet .form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--purple);
  opacity: .8;
  transform: scale(.78) translateY(-.5rem) translateX(.2rem);
}

.winner-sheet .form-floating > label::after {
  background: transparent !important;
}

.winner-sheet .form-control:focus,
.winner-sheet .form-check-input:focus,
.winner-upload:focus-within {
  box-shadow: 0 0 0 .25rem rgba(70, 53, 140, .18);
}

.winner-subtitle,
.winner-proof h2 {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.winner-subtitle {
  margin: 3rem 0 1.5rem;
}

.winner-proof {
  margin-top: 3.875rem;
}

.winner-proof h2 {
  margin-bottom: 2.25rem;
}

.winner-proof-copy {
  max-width: 34.125rem;
  margin-inline: auto;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.18;
}

.winner-proof-copy p {
  margin-bottom: 1rem;
}

.winner-proof-copy strong {
  display: block;
  margin-bottom: 1.125rem;
  font-size: 1.8125rem;
  line-height: .9;
}

.winner-upload {
  display: flex;
  width: min(100%, 31.5625rem);
  min-height: 16.1875rem;
  margin-top: 2.25rem;
  border-radius: 2.3125rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--muted);
  background: #d9d9d9;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.winner-upload:hover {
  transform: translateY(-.125rem);
  box-shadow: 0 .75rem 1.5rem rgba(70, 53, 140, .12);
}

.winner-upload-icon {
  position: relative;
  display: block;
  width: 4.5625rem;
  height: 4.5625rem;
}

.winner-upload-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.winner-upload-plus::before,
.winner-upload-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.714375rem;
  height: .231rem;
  background: white;
  content: "";
  transform: translate(-50%, -50%);
}

.winner-upload-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.winner-upload-label {
  display: block;
  max-width: 17.0625rem;
  margin-top: .6875rem;
  overflow: hidden;
  font-size: .875rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.winner-upload-help {
  margin-top: 1.875rem;
  font-size: .75rem;
  font-weight: 600;
}

.winner-consents {
  margin-top: 4.1875rem;
  border-top: .25rem dotted var(--purple);
  border-bottom: .25rem dotted var(--purple);
  padding: 3rem 1.25rem 2.5rem;
}

.winner-consent {
  min-height: 2rem;
  margin-bottom: 1.75rem;
  padding-left: 2.375rem;
}

.winner-consent:last-child {
  margin-bottom: 0;
}

.winner-consent .form-check-input {
  width: 1rem;
  height: .9375rem;
  margin-top: .1875rem;
  margin-left: -2.375rem;
  border: 0;
  border-radius: .125rem;
  background-color: #d9d9d9;
}

.winner-consent .form-check-input:checked {
  background-color: var(--purple);
}

.winner-consent .form-check-label {
  font-size: 1rem;
  line-height: 1.2;
}

.winner-submit {
  min-width: 11.6875rem;
  margin-top: 3.3125rem;
  border: 0;
  border-radius: var(--radius-pill);
  padding: .6875rem 2rem;
  color: white;
  background: var(--purple);
  font-size: 1.25rem;
  font-weight: 700;
}

.winner-submit:hover,
.winner-submit:focus {
  color: var(--purple);
  background: var(--yellow);
}

@media (max-width: 61.99875rem) {
  .navbar-collapse {
    margin-top: .75rem;
    border-top: .0625rem solid rgba(70, 53, 140, .18);
    padding: .75rem 0 1rem;
  }

  .navbar-nav { gap: .15rem; }
  .hero-stage {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem 4.5rem;
  }

  .hero-title {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    text-align: center;
  }

  .hero-title-line { font-size: clamp(2.25rem, 7vw, 4rem); }
  .hero-title-emphasis { font-size: clamp(3.5rem, 11vw, 6rem); line-height: 1; }

  .hero-art {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 65.375rem);
    height: auto;
    aspect-ratio: 1046 / 668;
    margin-top: 1.5rem;
  }

  .hero-cta {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    margin-top: 1.5rem;
    transform: none;
  }

  .hero-cta:hover,
  .hero-cta:focus { transform: translateY(-.125rem); }

  .prelaunch-stage {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem 5rem;
  }

  .prelaunch-title {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    text-align: center;
  }

  .prelaunch-title span { font-size: clamp(2.25rem, 7vw, 4rem); }
  .prelaunch-title strong { font-size: clamp(3.5rem, 11vw, 6rem); line-height: 1; }

  .prelaunch-art {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 65.375rem);
    height: auto;
    aspect-ratio: 1046 / 570;
    margin-top: 1.5rem;
  }

  .prelaunch-info {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 39rem);
    margin-top: 1rem;
  }

  .prelaunch-cta {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 2.5rem;
    transform: none;
  }

  .prelaunch-cta:hover,
  .prelaunch-cta:focus { transform: translateY(-.125rem); }

  .winner-form-section {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 6rem;
  }

  .winner-form-heading h1 {
    font-size: clamp(4.5rem, 11.5vw, 7.375rem);
  }

}

@media (max-width: 47.99875rem) {
  :root { --nav-height: 4.25rem; }
  .section-space { padding: 4.5rem 0; }
  .navbar-brand img { width: 6.75rem; height: auto; }
  .hero-stage { padding-top: 2.5rem; padding-bottom: 3.5rem; }
  .prelaunch-stage { padding-top: 2.5rem; padding-bottom: 4rem; }
  .prelaunch-info > p { font-size: 1.125rem; }
  .prelaunch-date { width: 11rem; height: 6.8rem; }
  .prelaunch-date > p { font-size: 1.125rem; }
  .calendar-col { padding: 1.5rem 0 2.5rem; }
  .entry-card { padding: 1.5rem; }
  .rule-card img { height: 11rem; }
  .products-swiper { min-height: 23rem; padding-top: 3.5rem; }
  .products-swiper .swiper-slide { min-height: 19rem; }
  .products-swiper .swiper-slide img { height: 18rem; }
  .products-swiper .swiper-button-prev { left: 1.25rem; }
  .products-swiper .swiper-button-next { right: 1.25rem; }
  .contact-form textarea.form-control { min-height: 13rem; }

  .winner-form-section {
    padding: 3.5rem .25rem 4rem;
  }

  .winner-form-heading h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
    line-height: 1;
  }

  .winner-form-heading p {
    font-size: 1rem;
  }



  .winner-subtitle {
    margin-top: 2.5rem;
  }

  .winner-proof {
    margin-top: 3rem;
  }

  .winner-proof h2 {
    margin-bottom: 1.75rem;
  }

  .winner-proof-copy {
    font-size: .875rem;
  }

  .winner-upload {
    min-height: 14rem;
  }

  .winner-consents {
    margin-top: 3rem;
    padding: 2.25rem 0;
  }

  .winner-consent .form-check-label {
    font-size: .8125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01rem !important; }
  [data-trig] { opacity: 1; transform: none; }
}


/* modale */

.prize-modal {
  --bs-modal-width: 64.25rem;
  --bs-modal-bg: transparent;
  --bs-modal-border-width: 0;
}

.prize-modal .modal-dialog {
  transform: translateY(100vh);
}

.prize-modal.show .modal-dialog {
  animation: modal-bounce-in 1s cubic-bezier(.22, .61, .36, 1) both;
}

.prize-modal .modal-content {
  aspect-ratio: 1028 / 655;
  border: 0;
  background: url("../images/modal-bg-aCRvjhz.svg") center / 100% 100% no-repeat;
  filter: drop-shadow(0 1.25rem 1.125rem rgba(0, 0, 0, .35));
}

.prize-modal .modal-body {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 7% 10% 5% 35%;
  color: white;
}

.prize-modal-copy {
  width: min(100%, 29rem);
}

.prize-modal h2 {
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 3.4375rem;
  font-weight: 900;
  line-height: 1;
  text-transform: capitalize;
}

.prize-modal h3 {
  margin-bottom: 3.75rem;
  font-size: 2.1875rem;
  font-weight: 700;
}

.prize-modal p {
  margin-bottom: 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4375;
}

.prize-modal-back {
  width: min(100%, 25.3125rem);
  border: 0;
  border-radius: var(--radius-pill);
  padding: .875rem 2rem;
  color: var(--purple);
  background: var(--yellow);
  font-size: 1.25rem;
  font-weight: 700;
}

.prize-modal-back:hover,
.prize-modal-back:focus {
  color: white;
  background: var(--purple);
}

.prize-confetti {
  position: absolute;
  height: auto;
}

.prize-confetti-top { top: 8%; left: 68%; width: 2.3125rem; }
.prize-confetti-left { top: 54%; left: 35%; width: 4.6rem; transform: rotate(-36deg); }
.prize-confetti-right { top: 50%; right: 4%; width: 2.5625rem; }

@keyframes modal-bounce-in {
  0% { transform: translateY(100vh); }
  30% { transform: translateY(0); }
  55% { transform: translateY(-1.5rem); }
  75% { transform: translateY(.5rem); }
  90% { transform: translateY(-.125rem); }
  100% { transform: translateY(0); }
}

@media (max-width: 47.99875rem) {
  .prize-modal {
    overflow-x: hidden;
  }

  .prize-modal .modal-dialog {
    width: 64.25rem;
    max-width: none;
    margin-right: 0;
    margin-left: calc(50vw - 43.3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .prize-modal.show .modal-dialog {
    animation: none;
    transform: none;
  }
}

.modal.transparent-modal {
  --bs-modal-width: fit-content;
  --bs-modal-padding: 0;
  --bs-modal-color: var(--bs-body-color);
  --bs-modal-bg: transparent;
  --bs-modal-border-color: transparent;
  --bs-modal-border-width: 0;
  --bs-modal-border-radius: 0;
  --bs-modal-header-padding-x: 0;
  --bs-modal-header-padding-y: 0.86rem;
  --bs-modal-header-padding: 0;
  --bs-modal-header-border-color: transparent;
  --bs-modal-header-border-width: 0;
  --bs-modal-title-line-height: 1.63519rem;
  --bs-modal-footer-gap: 0;
  --bs-modal-footer-bg: transparent;
  --bs-modal-footer-border-color: transparent;
  --bs-modal-footer-border-width: 0;
}

.modal .modal-header {
  min-height: 2.5rem;
}

.btn-close {
  background-image: none;
  opacity: 1;
  width: 1.67938rem;
height: 1.63519rem;

}

.btn-close svg {
width: 100%;
height: auto;
}

.paragon {
  filter: drop-shadow(0px 0.25rem 1.125rem rgba(0, 0, 0, 0.25));
  width: 27.5rem;
  height: auto;
  max-width: 100%;
}

.modal.yellow-modal {
   --bs-modal-width: 47rem;
     --bs-modal-padding: 0;
  --bs-modal-color: var(--red);
  --bs-modal-bg: transparent;
  --bs-modal-border-color: transparent;
  --bs-modal-border-width: 0;
  --bs-modal-border-radius: 0;
  --bs-modal-header-padding-x: 0;
  --bs-modal-header-padding-y: 0.86rem;
  --bs-modal-header-padding: 0;
  --bs-modal-header-border-color: transparent;
  --bs-modal-header-border-width: 0;
  --bs-modal-footer-gap: 0;
  --bs-modal-footer-bg: transparent;
  --bs-modal-footer-border-color: transparent;
  --bs-modal-footer-border-width: 0;
}


@media (max-width: 575.98px) { 
.modal.yellow-modal  .modal-dialog {
  margin-left: 0;
  margin-right: 0;
}
 }
.modal.yellow-modal  .modal-dialog .modal-content {
  background-image: url("../images/modal-bg-aCRvjhz.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
  padding: 9rem 1rem 7rem 1rem;
  position: relative;
}

.modal-content .winner01 {
  position: absolute;
  width: 3.313rem;
  height: auto;
  top: 3rem;
  left: calc(50% + 3rem);
}

.modal-content .winner02 {
  position: absolute;
  width: 2.563rem;
  height: auto;
  top: 54%;
  right: calc(50% + 16rem);
}

.modal-content .winner03 {
  position: absolute;
  width: 2.313rem;
  height: auto;
  top: 50%;
  left: calc(50% + 16rem);
}

.modal.yellow-modal h2 {
  color: #fff;
} 

.modal.yellow-modal h3  {
      width: fit-content;
    margin: 0 auto 2.56rem auto;
    background-image: url("../images/apla-h9VCFlg.svg");
    background-size: 100% 100%;
    color: #fff;
    padding: 1rem 2.37rem 0.94rem 1.81rem;
    font-size: 2.1875rem;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.modal.yellow-modal h3.smallh3 {
font-size: 1.625rem;
font-style: normal;
font-weight: 700;
line-height: 107%; /* 1.73875rem */
}

.modal.yellow-modal.loser-modal h3  {
  max-width: 37.9375rem;
  margin-left: auto;
  margin-right: auto;
  background-image: none;
  color: var(--red);
text-align: center;

font-size: 2.125rem;
font-style: normal;
font-weight: 700;
line-height: 107%; /* 2.27375rem */
letter-spacing: -0.02125rem;
}

.modal.yellow-modal p {
text-align: center;
font-size: 1rem;
font-style: normal;
font-weight: 500;
line-height: 1.4375rem; /* 143.75% */
max-width: 28.25rem;
margin: 0 auto 1.75rem auto;
}


.modal.winners-modal {
   --bs-modal-width: 47rem;
     --bs-modal-padding: 0;
  --bs-modal-color: var(--red);
  --bs-modal-bg: transparent;
  --bs-modal-border-color: transparent;
  --bs-modal-border-width: 0;
  --bs-modal-border-radius: 0;
  --bs-modal-header-padding-x: 0;
  --bs-modal-header-padding-y: 0.86rem;
  --bs-modal-header-padding: 0;
  --bs-modal-header-border-color: transparent;
  --bs-modal-header-border-width: 0;
  --bs-modal-footer-gap: 0;
  --bs-modal-footer-bg: transparent;
  --bs-modal-footer-border-color: transparent;
  --bs-modal-footer-border-width: 0;
}

.modal.winners-modal .modal-body {
  background-color: #fff;
  color: var(--purple);
  border-radius: 1.25rem;
  padding: 1.5rem 1rem 1rem 1rem;
}

.modal.winners-modal h3 {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 1.5rem;
}


.table.table-winners td {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  padding: 1rem;
  border-top: dotted 0.25rem var(--purple);
  border-bottom: 0;
  color: var(--purple);
}

.table.table-winners tr td:first-child {
  border-right:  dotted 0.25rem var(--purple);
}

.table.table-winners-all thead th  {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  padding: 1rem;
  border-bottom: 0;
  color: var(--purple);
}

.table.table-winners-all td  {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: left;
  padding: 1rem;
  border-top: dotted 0.25rem var(--purple);
  border-bottom: 0;
  color: var(--purple);
}

.table.table-winners-all tbody th  {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  padding: 1rem;
  border-top: dotted 0.25rem var(--purple);
  border-bottom: 0;
  color: var(--purple);
}

.table.table-winners-all tbody th, .table.table-winners-all thead tr th:first-child {
  border-right:  dotted 0.25rem var(--purple);
}

.table.table-winners-all thead tr th:first-child { 
  width: 12rem;
}

.modal {
scrollbar-color: #6F2B6F #EFDEEF;
scrollbar-width: thin;
}

.calendar-table  .btn-table {
	color: inherit;
	text-decoration: none;
	position: relative;
	display: inline-block;
	z-index: 2;
	cursor: pointer;
}

.calendar-table .btn-table.active::before {
	content: '';
	display: block;
	width: 1.875rem;
	height: 1.875rem;
	border-radius: 50%;
	border: solid 0.125rem var(--purple);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

.data-input-row .is-inactive {
  opacity: 0.4;
}

.polec-znajomym {
  position: fixed;
  right: 1rem;
  bottom: 6rem;
  z-index: 1040;
  text-decoration: none;
}
.polec-znajomym__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0.5rem 1.25rem rgba(70, 53, 140, 0.35);
}
.polec-znajomym__label {
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}
.share-modal .modal-content {
  border: 0;
  border-radius: 1.5rem;
  background: var(--cream);
  color: var(--purple);
}
.share-modal-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-align: center;
}
.share-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--purple);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.75rem;
}
.share-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}
.share-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: var(--pink);
}
.share-copy {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.share-copy-input {
  flex: 1;
  border: 0;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  background: #fff;
}
.share-copy-btn,
.share-native {
  border: 0;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
}
