.nContainer {
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

/* ---------------------------------------------- */
/* ntProducts */
/* ---------------------------------------------- */

.ntProducts {
  /* border: 1px solid red; */

  --ntProduct-background-color: ##fff;
  --ntProduct--cta-background: #f60;
  --ntProduct-font-size--features: 14px;
  --ntProduct-font-size--title: 32px;
  --ntProduct-font-size--description: 18px;
  --ntProduct-font-size--price-value: 56px;
  --ntProduct-font-size--currency: 20px;
  --ntProduct-font-size--cta: 18px;
  --ntProduct-color: #232c3b;
  padding: 47px 0;
  margin: 0 auto;
}

.ntProducts__container {
    max-width: 1200px;
}

.ntProduct {
  /* border: 1px solid red; */
  color: var(--ntProduct-color);
  border-radius: 5px;
  box-shadow: 9px 0px 30px -27px rgba(66, 68, 90, 1);
  max-width: 1136px;
}

.ntProduct__wrapper {
  /* border: 1px solid green; */
  display: flex;
  overflow: hidden;
}

.ntProduct__img-wrapper {
  /* border: 2px solid purple; */
  flex: 1;
  max-width: 356px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ntProduct__img {
  max-width: 100%;
}

.ntProduct__content-wrapper {
  flex: 1;
  display: grid;
  background: var(--ntProduct-background-color);
  border-radius: 7px;
  padding: 25px 60px;
  gap: 40px;
}

.ntProduct__heading {
    font-size: 45px;
    line-height: 1;
    font-weight: bold;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid;
    padding-bottom: 28px;
}

.ntProduct .ntPrice__price {
  font-size: 75px;
  font-weight: bold ;
}

.ntProduct  .ntPrice__currency {
  line-height: 1;
  font-size: 26px;
}

.ntProduct .ntPrice--long .ntPrice__price {
  font-size: 50px;
}

.ntProduct .ntPrice--long .ntPrice__currency { 
  font-size: 20px;
}

.ntProduct__list {
  font-weight: 600;
  flex: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
  line-height: 0.8;
}

.ntProduct__list-item {
  /* border: 1px solid red; */
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.ntProduct__list-item-key {
}

.ntProduct__list-item-value {
  font-weight: normal;
}

.ntProduct__icon-svg {
  fill: #44ae0c;
}

.ntProduct__options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid red; */
    font-weight: bold;
    width: 100%;
}

.ntProduct__option {
  width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ntProduct__option-key {
}

.ntProduct__option-value {
}


.ntProduct__title {
  font-size: var(--ntProduct-font-size--title);
  font-weight: normal;
  text-align: center;
  line-height: 0.8;
}

.ntProduct__description {
  font-size: var(--ntProduct-font-size--description);
  text-align: center;
  line-height: 0.8;
  padding: 11px 0 25px;
}

.ntProduct__price-wrapper {
  margin: auto 0;
  width: 40%;
}

.ntProduct__price.ntPrice {
  /* border: 1px solid red; */
  font-size: var(--ntProduct-font-size--price-value);
  justify-content: flex-end;
  gap: 8px;
}

.ntProduct__price .ntPrice__meta {
  font-size: var(--ntProduct-font-size--currency);
}

.ntProduct__cta-wrapper {
  /* margin-top: 48px; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ntProduct__cta {
  width: 100%;
  max-width: 60%;
  font-size: var(--ntProduct-font-size--cta);
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff !important;
  background: var(--ntProduct--cta-background);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 16.5px 0;
  border-radius: 4px;
}


.ntProduct__element--hidden {
  display: none !important;
}


.ntProduct__features-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



@media(max-width: 1200px) {
  .ntProduct__price-wrapper { 
    width: 30%;
  }
  .ntProduct .ntPrice__price {
    font-size: 50px;
  }
}

@media (max-width: 1097px) {
  .ntProduct__img-wrapper {
    display: none;
  }
}

@media (max-width: 745px) {

  .ntProduct__content-wrapper {
    padding: 30px 30px;
  }

  .ntProduct__heading {
    font-size: 30px;
  }
  .ntProduct .ntPrice__price {
    font-size: 50px;
  }

  .ntProduct .ntPrice__currency {
    font-size: 20px;
  }

  .ntProduct__list-item {
    padding: 0;
  }

}

@media (max-width: 680px) { 
  .ntProduct__features-wrapper {
    flex-direction: column-reverse;
   }
   .ntProduct__price-wrapper {
    width: 100%;
   }
   .ntProduct__price.ntPrice {
    justify-content: center;
   }
   .ntProduct__list {
    width: 100%;
    margin-top: 40px;
    line-height: 1.2;
    }

    .ntProduct__list-item  {
      align-items: flex-start;
      gap: 1rem;
    }

    .ntProduct__list-item-value {
      min-width: 65px;
      display: flex;
      justify-content: flex-end;
    }
}


@media (max-width: 460px) {
  .ntProducts {
    --ntProduct-font-size--features: 11.9px;
    --ntProduct-font-size--title: 27.2px;
    --ntProduct-font-size--description: 15.3px;
    --ntProduct-font-size--price-value: 47.6px;
    --ntProduct-font-size--currency: 17px;
    --ntProduct-font-size--cta: 13.6px;
  }
  .ntProduct__list {
    font-size: 12px;
    margin-top: 25px;
  }

  .ntProduct__content-wrapper { 
    gap: 25px;
  }

}



/* ---------------------------------------------- */
/* ntPrice */
/* ---------------------------------------------- */

.ntPrice {
  /* border: 2px solid green; */
  display: flex;
  align-items: flex-end;
  gap: 2px;
  line-height: 0.8;
}

.ntPrice__meta {
  display: flex;
  gap: 1px;
}

/* ---------------------------------------------- */
/* ntZip */
/* ---------------------------------------------- */

.ntZip {
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  width: max-content;
  margin: 0px 0 0 auto;
  font-size: 12px;
  color: #fff;
  /* border: 1px solid red; */
}

.ntZip__zip-checkbox {
  display: none;
}

.ntZip__zip-element {
  width: 40px;
  height: 20px;
  background: #c2c2c2;
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.27) inset;
}

.ntZip__zip-element::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
}

.ntZip__zip-checkbox:checked + .ntZip__zip-element::before {
  left: 20px;
}

.ntZip__zip-element::after {
  content: "";
  position: absolute;
  top: 16px;
  left: -48px;
  width: 41px;
  height: 1px;
  background: #fff;
}

.ntZip__zip-checkbox:checked + .ntZip__zip-element::after {
  left: 48px;
  width: 51px;
}

.ntZip--border-0 .ntZip__zip-element::after {
  content: none;
}

.ntProducts .ntZip {
  padding-right: 17px;
}



.ntProducts .splide__list {
  padding-bottom: 48px !important;
}

.ntProducts .splide__slide {
  padding: 17px;
 }


.ntProducts .splide__arrow {
  background: none;
}

.ntProducts .splide__arrow--prev {
  left: -3rem;
}

.ntProducts .splide__arrow--next {
  right: -3rem;
}

.ntProducts .splide__pagination__page {
  height: 21px;
  width: 21px;
  border: 2px solid #4d9a4a;
  background: #fff;
  transform: none !important;
  opacity: 1;
}

.ntProducts .splide__pagination__page.is-active {
  background: #4d9a4a;
}

.ntProducts .ntZip {
  color: var(--ntProduct-color);
}
.ntProducts .ntZip__zip-element::after {
  background: var(--ntProduct-color);
}

@media (max-width: 1300px) {
  .ntProducts__container {
    padding: 0 2rem;
  }

  .ntProducts .splide__arrow--prev {
    left: -2rem;
  }

  .ntProducts .splide__arrow--next {
    right: -2rem;
  }
}


[for="ntProduct__wildcard_ID"] {
    padding: 0 !important;
}