/*
$white: #fff;
$sand: #f7f4f2;
$white: #f6f2ee;
$red: #fe6162;
$orange: #44b9f0;
$black: #231f20;
$orange: #17d0bc;
$orange: #eeb136;
$yellow: #ffc71c;
$orange: #7c4fe8;
*/
.bg-white {
  background: #fff;
}

.bg-red {
  background: #fe6162;
}

.bg-black {
  background: #000000;
}

.bg-dark-grey {
  background: #181815;
}

.bg-orange {
  background: #eeb136;
}

.bg-yellow {
  background: #ffc71c;
}

.epr-calculator {
  max-width: 100%;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
.epr-calculator__container {
  background: #181815;
  border-radius: 0px;
  padding: 2rem;
  max-width: 1300px;
  margin: auto;
}
.epr-calculator__title {
  font-size: 47px;
  line-height: 47px;
  font-weight: 900 !important;
  text-transform: uppercase;
  color: #eeb136;
  margin-bottom: 40px;
  text-align: left;
}
.epr-calculator__content {
  color: white;
  line-height: 1.6;
}
.epr-calculator__content--above {
  margin-bottom: 2rem;
}
.epr-calculator__content--below {
  margin-top: 2rem;
}
.epr-calculator__content p {
  margin-bottom: 1rem;
}
.epr-calculator__content p:last-child {
  margin-bottom: 0;
}
.epr-calculator__content ul, .epr-calculator__content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.epr-calculator__content a {
  color: #eeb136;
  text-decoration: underline;
}
.epr-calculator__content a:hover {
  opacity: 0.8;
}
.epr-calculator__table-wrapper {
  overflow-x: auto;
  margin-bottom: 2rem;
}
.epr-calculator__table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.epr-calculator__header-row {
  background: #eeb136;
}
.epr-calculator__header {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  color: #181815;
  border-bottom: none;
}
.epr-calculator__header--material {
  width: 25%;
}
.epr-calculator__header--weight {
  width: 25%;
}
.epr-calculator__header--units {
  width: 25%;
}
.epr-calculator__header--subtotal {
  width: 25%;
  text-align: right;
}
.epr-calculator__row {
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.2s ease;
  /*
  &:hover {
    background-color: #fafbfc;
  }
  */
}
.epr-calculator__row:last-child {
  border-bottom: none;
}
.epr-calculator__cell {
  padding: 1rem;
  vertical-align: middle;
}
.epr-calculator__cell--material {
  font-weight: 500;
}
.epr-calculator__cell--subtotal {
  text-align: right;
}
.epr-calculator__cell--weight, .epr-calculator__cell--units {
  padding: 0px;
  line-height: 0px;
  font-size: 0px;
}
.epr-calculator__cell--weight input, .epr-calculator__cell--units input {
  height: 71px;
  border: none;
  background: none !important;
  border-radius: 0px;
}
.epr-calculator__material-name {
  color: #eeb136;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
}
.epr-calculator__input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0px;
  background: none;
  font-size: 0.9rem;
  color: white;
  /*
  &:hover {
    border-color: #cbd5e1;
    background: white;
  }
  */
}
.epr-calculator__input::placeholder {
  color: #9ca3af;
  font-style: italic;
}
.epr-calculator__input:focus {
  outline: none;
  background: white;
  color: white;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}
.epr-calculator__input[type=number] {
  -moz-appearance: textfield;
}
.epr-calculator__input[type=number]::-webkit-outer-spin-button, .epr-calculator__input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.epr-calculator__subtotal {
  font-weight: 600;
  font-size: 1rem;
  color: #eeb136;
}
.epr-calculator__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 2px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 1rem;
}
.epr-calculator__total-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.epr-calculator__total-label {
  font-size: 25px;
  font-weight: 600;
  color: #eeb136;
  opacity: 0.5;
}
.epr-calculator__total-amount {
  font-size: 25px;
  font-weight: 900;
  color: #eeb136;
}
.epr-calculator__reset-btn {
  background: #ef4444;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.epr-calculator__reset-btn:hover {
  background: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}
.epr-calculator__reset-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .epr-calculator__container {
    padding: 1rem;
  }
  .epr-calculator__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .epr-calculator__table {
    font-size: 0.85rem;
  }
  .epr-calculator__header, .epr-calculator__cell {
    padding: 0.75rem 0.5rem;
  }
  .epr-calculator__input {
    padding: 0.6rem;
    font-size: 0.85rem;
  }
  .epr-calculator__footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .epr-calculator__total-wrapper {
    justify-content: center;
  }
  .epr-calculator__reset-btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .epr-calculator__table-wrapper {
    margin: 0 -1rem 2rem -1rem;
  }
  .epr-calculator__header--material {
    width: 30%;
  }
  .epr-calculator__header--weight, .epr-calculator__header--units {
    width: 25%;
  }
  .epr-calculator__header--subtotal {
    width: 20%;
  }
  .epr-calculator__material-name {
    font-size: 0.8rem;
  }
  .epr-calculator__input {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  .epr-calculator__subtotal {
    font-size: 0.9rem;
  }
}

/*# sourceMappingURL=styles.css.map */