@import url("https://lp.al.to/libs/fonts/CentraleSans.css");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap");

/* packages imports */

@import url("../packages/bootstrap-xxl/xxl-columns.css");
:root {
  /* colors */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-content: #646464;
  /* x-kom */
  --color-x-blue: #0082fa;
  /* a.to */
  --color-a-violet: #96238e;
  /* radius */
  --full-radius: 99999px;
  --x-radius: 15px;
  --a-radius: 3px;
  /* breakpoints */
  --hamburger: var(--md);
  --lg: 1199.98;
  --md: 991.98;
  --sm: 767.98;
  --xs: 575.98;
  /* additional */
  --nunito: "Nunito", sans-serif;
  --centrale: "CentraleSansRnd", sans-serif;
  --main-font-size: 16px;
}

img {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.xlp {
  position: relative;
  overflow: hidden;
}

.container-fluid {
  max-width: 1920px;
}

html,
body {
  font-family: "Nunito", sans-serif !important;
  scroll-behavior: smooth;
  background-color: #170039 !important;
}

.font-weight-bold {
  font-weight: 500;
}

.btn {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.4rem 2.4rem;
  border-radius: 300px;
  transition: all 200ms ease-in-out;
}

.btn.btn-light {
  background: var(--color-white);
  border: 2px solid var(--color-white);
  color: var(--color-black);
  text-decoration: none;
}

.btn.btn-light:hover {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

header {
  position: absolute;
  top: 60px;
  left: 60px;
  width: calc(100% - 120px);
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

header .logo {
  max-height: 30px;
}

header .logo.x-kom {
  max-height: 50px;
}

/* sections */

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: calc(100% - 30px);
  margin: 15px;
  border-radius: var(--x-radius);
  min-height: 720px;
  position: relative;
  overflow: hidden;
}

.hero .hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* products */

.product-list .single-product {
  position: relative;
  overflow: hidden;
}

.product-list .single-product h3 {
  color: #000;
  font-size: 1.2rem;
}

.product-list .step .background-icon,
.background-icon {
  width: 30%;
  position: absolute;
  top: -10%;
  right: 0;
  filter: grayscale(1);
  opacity: 0.03;
}

.product-list #step-02 .background-icon {
  left: 0;
  top: 50%;
  right: inherit;
}

.product-list .step .row {
  width: 100%;
  margin: 0;
  padding: 0;
}

.product-list .single-product .product-card {
  background: #2c006f;
  color: #fff;
  border-radius: var(--x-radius);
  border: 2px solid transparent;
  padding: 0 16px 32px 16px;
  width: 100%;
  overflow: hidden;
  height: 100%;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0);
  transition: all 150ms ease-in-out;
}

.product-list .single-product .product-card:hover {
  cursor: pointer;
  background: #3a0093;
}

.product-list .single-product .product-card .thumb {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 80%;
  margin: 16px auto 0 auto;
  transition: all 200ms ease-in-out;
  border-radius: 16px;
}

.product-list .single-product .product-card .thumb:after {
  content: "";
  width: 100%;
  position: relative;
  padding-top: 100%;
}

.product-list .single-product .product-card .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  object-fit: contain;
  border-radius: 16px;
  overflow: hidden;
}

.product-list .single-product .product-card:hover .action-btn {
  background: #0067c7;
  color: #fff;
}

.product-list .icon-category {
  width: auto;
  max-height: 100px;
  object-fit: cover;
}

.product-card h3 {
  color: #fff !important;
}

.product-list .single-product .product-card h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 200;
  margin-bottom: 0;
  height: calc(2 * 1.35rem);
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.product-list .single-product input[type="radio"] {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  z-index: -1;
}

.product-list .single-product input[type="radio"] + .product-card .icon-checked {
  color: var(--color-white);
  transition: all 200ms ease-in-out;
  position: absolute;
  top: 15px;
  left: -60px;
  font-size: 18px;
}

.product-list .single-product input[type="radio"]:checked + .product-card .icon-checked {
  color: var(--color-x-blue);
  opacity: 1;
  left: 15px;
}

.product-list .single-product input[type="radio"]:checked + .product-card {
  box-shadow: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: #3a0093;
}

.product-list .single-product .product-card .action-btn {
  border-radius: 200px;
  border: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 42px;
  line-height: 42px;
  padding: 0 32px;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  background: #0082fa;
  color: #fff;
  margin-top: 10px;
  z-index: 1;
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 auto;
  font-weight: 300;
}

.product-list .single-product input[type="radio"]:checked + .product-card .action-btn {
  background: var(--color-x-blue);
  color: white;
  border: 2px solid var(--color-x-blue);
}

.product-list .single-product .product-card .action-btn:after {
  content: "wybierz";
}

.product-list .single-product input[type="radio"]:checked + .product-card .action-btn:after {
  content: "wybrano";
}

.product-list .single-product input[type="radio"]:checked + .product-card .thumb {
  opacity: 1;
}

.modal {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
}

.modal .modal-header {
  border-bottom: 0;
}

.modal .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: calc(100% - 30px);
  margin: 0;
}

.modal .modal-dialog .modal-content {
  border-radius: var(--x-radius);
}

footer {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: calc(100% - 30px);
  margin: 5rem 15px;
  padding: 7.5rem 0 0;
  background: #220055;
  border-radius: var(--x-radius);
  position: relative;
}

footer .icon-final {
  max-width: 90px;
}

footer .brand-logo {
  position: absolute;
  bottom: -60%;
  right: 0;
  left: 0;
  margin: 0 auto;
  opacity: 0.03;
  width: 40%;
}

footer ul.social-icons {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

footer ul.social-icons li {
  margin: 0 15px;
  list-style-type: none;
}

footer ul.social-icons li:first-child {
  margin-left: 0;
}

footer ul.social-icons li:last-child {
  margin-right: 0;
}

footer ul.social-icons li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background: var(--color-white);
  border-radius: var(--x-radius);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

footer ul.social-icons li a img {
  height: 1.3rem;
  transition: all 120ms ease-in-out;
}

footer ul.social-icons li a:hover img {
  height: 1.45rem;
}

/* up to 1199.98px */

@media (max-width: 1199.98px) {
}

/* up to 991.98px */

@media (max-width: 991.98px) {
}

/* up to 767.98px */

@media (max-width: 767.98px) {
  header .logo {
    max-height: 23px;
  }
  header .logo.x-kom {
    max-height: 35px;
  }
  .hero {
    min-height: 540px;
  }
}

/* up to 575.98px */

@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
  header .logo {
    max-height: 15px;
  }
  header .logo.x-kom {
    max-height: 20px;
  }
  footer ul.social-icons {
    flex-direction: row;
  }
  footer ul.social-icons li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0;
    width: 50%;
  }
  footer ul.social-icons li a {
    width: 2.5rem;
    height: 2.5rem;
  }
  footer ul.social-icons li a img {
    height: 1rem;
  }
}

#hasDiscount {
  display: none;
}

#displayBonValue,
#displayPriceValue {
  display: inline-block;
}
h4 {
  padding-bottom: 0px !important;
}

/* Typography */
h1 {
  font-weight: 200;
  font-size: 1.6rem !important;
}

@media (min-width: 992px) {
  h1 {
    font-size: 1.8rem !important;
  }
}

h1 br {
  display: none;
}

@media (min-width: 768px) {
  h1 br {
    display: initial;
  }
}

h2 {
  margin-bottom: 60px;
}

@media (min-width: 992px) {
  h2 {
    font-size: 1.7rem;
  }
}

h3 {
  font-weight: 600;
  color: #fff;
}

@media (min-width: 992px) {
  h3 {
    font-size: 1.4rem;
  }
}

@media (min-width: 992px) {
  h4 {
    font-size: 1.2rem;
  }
}

.top__wrapper--2 {
  background-image: url("../img/bg-mobile.jpg?v=6.0");
}
.top {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

.top__wrapper {
  background-size: cover;
  background-position: 50% 100%;
  border-radius: 0 0 16px 16px;
  width: 100%;
  padding: 100px 0 264px 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 460px;
}

@media (min-width: 576px) {
  .top__wrapper {
    padding: 132px 0 364px 0;
    min-height: 540px;
  }
}

@media (min-width: 768px) {
  .top__wrapper {
    padding: 200px 0 200px 0;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, transparent 50%), url("../img/bg_lp.jpg");
    min-height: 540px;
    background-position: 50% 60%;
  }
}

.top__copy {
  display: flex;
}

@media (min-width: 768px) {
  .top__copy {
    margin-top: 32px;
  }
}

.top__copy h2 {
  font-weight: 200;
  font-size: 1.5rem;
  color: #c7c7c7;
  margin-bottom: 10px;
}

.top__copy--center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.top__copy--left {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none !important;
}

a:hover {
  color: inherit;
}

.cta {
  border-radius: 200px;
  font-size: 1rem !important;
  font-weight: 300;
  border: none;
  width: fit-content;
  height: 40px;
  padding: 0 24px;
  font-size: 1.1rem !important;
  display: flex;
  align-items: center;
  transition: 0.3s;
  background: #0082fa;
  color: #fff;
  margin-top: 10px;
}

.cta:hover {
  background: #0067c7;
  color: #fff;
}

.cta--white {
  background: #fff;
  color: #000;
}

.cta--white:hover {
  background: #e6e6e6;
  color: #000;
}

.cta--big {
  height: 48px;
  padding: 0 34px;
  font-size: 1.2rem !important;
}

.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  margin-top: 0;
  overflow: hidden;
}

.header__logos-wrapper {
  height: auto;
  width: 100%;
  padding: 20px 25px 20px 16px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 576px) {
  .header__logos-wrapper {
    padding: 32px 32px 32px 22px !important;
  }
}

.header #brand {
  height: 26px;
  transition: 0.3s;
  z-index: 1;
  position: relative;
  margin-left: 16px;
}
@media (min-width: 576px) {
  .header #brand {
    height: 36px;
    margin-left: 0;
  }
}

.header #brand:hover {
  opacity: 0.9;
}

.header #vendor {
  height: 20px;
  transition: 0.3s;
  position: relative;
  top: -2px;
}

@media (min-width: 576px) {
  .header #vendor {
    height: 28px;
  }
}

.header #vendor:hover {
  opacity: 0.9;
}

strong {
  font-weight: 600 !important;
}

h1 {
  font-weight: 200 !important;
}

footer {
  margin-bottom: 0;
}

footer h3 {
  color: #fff !important;
  font-weight: 300 !important;
}

footer p {
  color: #fff;
  opacity: 0.5;
}

#displayPriceValue,
#displayBonValue {
  color: #fff !important;
  opacity: 1;
  font-weight: 600;
}
