/* temp ntPriceList */

/* ----------------------- ------------- ----------------------- */
/* ------------------------ ntPriceList ------------------------ */
/* ----------------------- ------------- ----------------------- */

.ntPriceList {
  font-size: 14px;
  line-height: 1.3;
  padding: 4rem 1rem;

  --heading-primary-size: 28px;
  --heading-secondary-size: 20px;
}

/* ----------------------- --------- ----------------------- */
/* ----------------------- Container ----------------------- */
/* ----------------------- --------- ----------------------- */

.ntPriceList__container--pricingPage {
  max-width: 1024px;
  margin: 0 auto;
}

/* Heading */

.ntPriceList__primaryHeading {
  font-size: var(--heading-primary-size) !important;
  font-weight: bold !important;
  text-align: center !important;
  color: #0a0a0a !important;
  margin: 0 0 37px !important;
  line-height: 1;
}

.ntPriceList__primaryHeading::after {
  content: "";
  display: block;
  height: 3px;
  width: 70px;
  background: #ff6720;
  margin: 10px auto 10px;
}

.ntPriceList__secondaryHeading {
  font-size: var(--heading-secondary-size) !important;
  background: #5d5d5d;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  padding: 1.25em;
  margin: 3.375em 0 0;
}

.ntPriceList__secondaryHeading--promotion {
  background: #f60;
}

/* ----------------------- --------- ----------------------- */
/* ----------------------- Row items ----------------------- */
/* ----------------------- --------- ----------------------- */

.ntPriceList__table-item {
  background: #fff;
  padding: 22.5px 24px !important;
  font-weight: bold;
  text-align: center;
}
.ntPriceList__table-item:nth-child(2n) {
    background: #f8f8f8;
}

.ntPriceList__table-item:first-child {
  text-align: left;
}

.ntPriceList__table-item--bg {
  background: #f8f8f8;
}

.ntPriceList__table-row--heading .ntPriceList__table-item {
  font-weight: normal;
}

.ntPriceList__price {
  display: flex;
  gap: 4px;
  justify-content: center;
}

/* ------------------------- ---- -------------------------- */
/* ------------------------- Rows -------------------------- */
/* ------------------------- ---- -------------------------- */

/* ------------------------- 2 cols ------------------------- */

.ntPriceList__table .ntPriceList__table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ------------------------- 4 cols ------------------------- */

.ntPriceList__table--col-4 .ntPriceList__table-row {
  grid-template-columns: 41% repeat(3, 1fr);
}

.ntPriceList__table--col-4 .ntPriceList__table-item:first-child {
  text-align: left;
}

.ntPriceList__table--col-4 .ntPriceList__table-item {
  text-align: right;
}

.ntPriceList__table--col-4 .ntPriceList__price {
  justify-content: flex-end;
}


/* ------------------------- 5 cols ------------------------- */

.ntPriceList__table--col-5 .ntPriceList__table-row {
  grid-template-columns: 31% repeat(4, 1fr);
}

.ntPriceList__table--col-5 .ntPriceList__table-item:first-child {
  text-align: left;
}

.ntPriceList__table--col-5 .ntPriceList__table-item {
  text-align: center;
}

.ntPriceList__table--col-5 .ntPriceList__price {
  justify-content: center;
}


/* ------------------------- ------------- -------------------------- */
/* ------------------------- Notifications -------------------------- */
/* ------------------------- ------------- -------------------------- */

.ntPriceList__notification {
  font-size: 12px;
  padding: 22.5px 0 0 22.5px;
  text-align: justify;
}

.ntPriceList__ntZip {
  color: #333 !important;
}
.ntPriceList__ntZip .ntZip__zip-element::after {
  background: #333;
}

/* ------------------------- --------------- -------------------------- */
/* ------------------------- ntPrice__footer -------------------------- */
/* ------------------------- --------------- -------------------------- */

.ntPriceList__footer {
  padding: 22.5px 24px;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 12px;
  text-align: justify;
}

.textNetto--hidden {
  display: none;
}

@media (max-width: 720px) {
  .ntPriceList {
    font-size: 12px;
  }
  .ntPriceList__table-item {
    padding: 15px 10px !important;
  }
}

@media (max-width: 460px) {
  .ntPriceList {
    font-size: 10px;
  }
  .ntPriceList__table-item {
    padding: 10px 9px !important;
  }
  .ntPriceList__notification {
    font-size: 10px;
    padding: 22.5px 0 0 22.5px;
  }
  .ntPriceList__footer {
    font-size: 10px;
    flex-direction: column-reverse;
    gap: 19px;
    padding: 22.5px 0;
  }
}

/* ---------------------------------------------- */
/* 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;
}
