/*-- -------------------------- -->
<---        Calculators         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-calc {
    padding: clamp(6rem, 10vw, 10rem) 1rem clamp(2rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
    text-align: center;
  }
  #hero-calc .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #hero-calc .cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center;
    width: 100%;
    max-width: 50rem;
    margin: 0;
    color: #fff;
  }
  #hero-calc .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: #fff;
    opacity: 0.9;
  }
  #hero-calc .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #hero-calc .cs-background:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #hero-calc .cs-background img {
    height: 100%;
    width: 100%;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }
  /* Calculator Section */
  #calculators {
    padding: var(--sectionPadding);
    background-color: #f7f7f7;
  }
  #calculators .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  #calculators .cs-card {
    width: 100%;
    max-width: 40rem;
    background-color: #fff;
    border-radius: 1rem;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  #calculators .cs-h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
  }
  #calculators .cs-desc {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #calculators .cs-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  #calculators .cs-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--headerColor);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  #calculators .cs-hint {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--bodyTextColor);
  }
  #calculators input,
  #calculators select {
    width: 100%;
    height: 3rem;
    padding: 0 1rem;
    border: 1px solid #e8e8e8;
    border-radius: 0.5rem;
    background-color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s;
  }
  #calculators input:focus,
  #calculators select:focus {
    outline: none;
    border-color: var(--primary);
  }
  #calculators .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: 3rem;
    text-align: center;
    text-decoration: none;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  #calculators .cs-button-solid:hover {
    background-color: #000;
    color: #fff;
  }
  /* Result Box */
  #calculators .cs-result {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }
  #calculators .cs-result.hidden {
    display: none;
  }
  #calculators .cs-result-label {
    font-size: 1rem;
    font-weight: 700;
    color: #166534;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  #calculators .cs-result-value {
    font-size: 2rem;
    font-weight: 900;
    color: #15803d;
    line-height: 1.2em;
  }
  #calculators .cs-disclaimer {
    font-size: 0.875rem;
    color: #166534;
    opacity: 0.8;
    margin-top: 0.5rem;
    font-style: italic;
  }
  #calculators .cs-result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }
  #calculators .cs-result-item:last-child {
    margin-bottom: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #calculators .cs-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
  }
  #calculators .cs-card {
    max-width: 45%;
    flex: 1 1 25rem;
  }
}
/*-- -------------------------- -->
<---           Table            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #table-1669 {
    padding: var(--sectionPadding);
  }
  #table-1669 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #table-1669 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #table-1669 .cs-table {
    width: 100%;
    border-collapse: collapse;
  }
  #table-1669 .cs-th {
    padding: 0.75rem 1rem;
    box-sizing: border-box;
  }
  #table-1669 .cs-td {
    padding: 0.5rem 1rem;
    box-sizing: border-box;
  }
  #table-1669 .cs-th,
  #table-1669 .cs-td {
    border: 1px solid #ddd;
    text-align: center;
  }
  #table-1669 .cs-color .cs-th:first-child {
    color: #fff;
    background-color: var(--primary);
  }
  #table-1669 .cs-th:first-child,
  #table-1669 .cs-td:first-child {
    position: sticky;
    left: 0;
    z-index: 100;
    /* Make sure it sits above the other cells */
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    text-align: left;
  }
  #table-1669 .cs-th {
    background-color: #f2f2f2;
  }
  #table-1669 .cs-tr {
    color: var(--bodyTextColor);
  }
  #table-1669 .cs-icon {
    height: 1rem;
    width: auto;
  }
}
/* Tablet - 600px */
@media screen and (max-width: 37.5rem) {
  #table-1669 .cs-table {
    display: block;
    overflow-x: auto;
  }
}

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