/**
 * Vars
 * ====
 */
/*$link-color--hover: darken($link-color, 15%);*/
.custom-dropdown {
  position: relative;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  font-family: inherit;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.custom-dropdown .dropdown-trigger {
  position: relative;
  min-height: 3rem;
  padding: 0.5rem 0.75rem;
  border: 0.0625rem solid var(--dlc-color-section-grey-lightened);
  border-radius: 0.3125rem;
  background-color: white;
  color: var(--dlc-color-black);
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  text-align: left;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.custom-dropdown .dropdown-value {
  min-width: 1px;
  display: inline-block;
}
.custom-dropdown .dropdown-chevron {
  width: 1rem;
  height: 1rem;
  color: var(--dlc-color-section-grey-darkened);
  transition: color 0.2s ease;
}
.custom-dropdown.is-open .dropdown-trigger {
  border: 0.0625rem solid var(--dlc-color-orange);
  border-bottom-color: var(--dlc-color-section-grey-lightened);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.custom-dropdown.is-open .dropdown-chevron {
  -ms-transform: none;
      transform: none;
  color: var(--dlc-color-orange);
}
.custom-dropdown.is-open .dropdown-options {
  display: block;
  border: 0.0625rem solid var(--dlc-color-orange);
  border-bottom-left-radius: 0.3125rem;
  border-bottom-right-radius: 0.3125rem;
  margin-top: -0.125rem;
}
.custom-dropdown .dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border: 0.0625rem solid var(--dlc-color-section-grey-lightened);
  display: none;
  z-index: 100;
  max-height: 13rem;
  overflow-y: auto;
  scrollbar-gutter: stable;
  box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.custom-dropdown .dropdown-options::-webkit-scrollbar {
  width: 0.375rem;
}
.custom-dropdown .dropdown-options::-webkit-scrollbar-track {
  background: transparent;
}
.custom-dropdown .dropdown-options::-webkit-scrollbar-thumb {
  background: #9E9E9E;
  border-radius: 0.3125rem;
}
.custom-dropdown .dropdown-option {
  padding: 0.75rem;
  color: var(--dlc-color-black);
  cursor: pointer;
  text-align: left;
}
.custom-dropdown .dropdown-option:hover {
  background-color: var(--dlc-color-orange-lightened);
}
.custom-dropdown .dropdown-option.is-selected {
  background-color: var(--dlc-color-orange);
  color: white;
}

.program-finder-white-box {
  background: white;
  border: 0.0625rem solid var(--dlc-color-section-grey-lightened);
}

.program-finder-body {
  padding: 4rem;
}

.program-finder-footer {
  width: 100%;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: center !important;
      justify-content: center !important;
  -ms-flex-align: center !important;
      align-items: center !important;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-top: 0.1rem solid var(--dlc-color-section-grey-lightened) !important;
  background-color: transparent;
  box-sizing: border-box;
}

.program-finder-landing-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 3rem;
}

.program-finder-landing-text {
  -ms-flex: 1;
      flex: 1;
  text-align: left;
}

.program-finder-landing-title {
  text-transform: none;
}

.program-finder-landing-estimate {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.program-finder-landing-body {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  white-space: pre-wrap;
}

.program-finder-landing-consent {
  margin-top: 2rem;
}

.program-finder-question-group {
  text-align: center;
}
.program-finder-question-group:last-child {
  margin-bottom: 0;
}

.program-finder-question-label {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem !important;
}

.program-finder-field-group {
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
}

.program-finder-text-input,
.program-finder-select {
  width: 100%;
  max-width: 20rem;
  min-height: 3rem;
  border: 0.0625rem solid var(--dlc-color-section-grey-lightened);
  border-radius: 0.3125rem;
  background-color: white !important;
  color: var(--dlc-color-black);
}

.program-finder-text-input:focus {
  border: 0.0625rem solid var(--dlc-color-orange);
  outline-offset: 0.0625rem;
}

.program-finder-radio-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 3rem;
}

.program-finder-radio-label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  margin: 0 !important;
}
.program-finder-radio-label input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  margin: 0;
  display: -ms-inline-grid;
  display: inline-grid;
  place-content: center;
  -ms-flex: 0 0 1.25rem;
      flex: 0 0 1.25rem;
  cursor: pointer;
  border: 0.1rem solid var(--dlc-color-section-grey-darkened);
  border-radius: 50%;
  position: relative;
  top: 0.185rem;
}
.program-finder-radio-label input[type=radio]:checked {
  background-image: radial-gradient(circle, var(--dlc-color-orange) 0 0.25rem, white 0.28125rem);
}
.program-finder-radio-label input[type=radio]:focus-visible {
  outline: 0.125rem solid var(--dlc-color-orange);
  outline-offset: 0.125rem;
}
.program-finder-radio-label input[type=radio]:disabled {
  cursor: not-allowed;
  border-color: var(--dlc-color-section-grey-darkened);
}
.program-finder-radio-label input[type=radio]:disabled:checked {
  background-image: radial-gradient(circle, var(--dlc-color-section-grey-darkened) 0 0.25rem, white 0.28125rem);
}

@media (max-width: 767px) {
  .program-finder-body {
    padding: 2.5rem 1.5rem;
  }
  .program-finder-footer {
    padding: 2rem 1.5rem;
  }
  .program-finder-landing-content {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    gap: 2rem;
    -ms-flex-align: center;
        align-items: center;
  }
  .program-finder-landing-visual {
    width: 100%;
    max-width: 280px;
  }
  .program-finder-radio-group {
    gap: 1rem;
    -ms-flex-align: center;
        align-items: center;
  }
}
.program-finder-landing-consent .form-check {
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 0.75em;
  line-height: 1;
  padding-left: 0;
}
.program-finder-landing-consent .form-check .form-check-input {
  width: 1.25em;
  height: 1.25em;
  -ms-flex: 0 0 1.25em;
      flex: 0 0 1.25em;
  margin: 0;
  cursor: pointer;
  border: 0.0625em solid var(--dlc-color-section-grey-lightened);
  border-radius: 0;
  background-color: white;
}
.program-finder-landing-consent .form-check .form-check-input:checked {
  background-color: var(--dlc-color-orange);
  border-color: var(--dlc-color-orange);
}

.info-container {
  margin: 2.5rem auto -0.5rem;
  max-width: 66%;
  color: var(--dlc-color-black);
  background-color: var(--dlc-color-gray-background);
  padding: 1rem;
  border: 0.125rem solid var(--dlc-color-black-lightened);
  border-radius: 0.625rem;
}
.info-container p {
  margin: 0;
}
.info-container p + p {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .info-container {
    max-width: 100%;
  }
}
.placeholder-active,
input:-ms-input-placeholder {
  color: var(--dlc-color-section-grey-darkened);
}
.placeholder-active,
input::placeholder {
  color: var(--dlc-color-section-grey-darkened);
}

.program-finder-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: stretch;
      align-items: stretch;
  padding: 1rem 2.5rem;
  border-bottom: 0.0625rem solid var(--dlc-color-section-grey-lightened);
  gap: 4rem;
}

.program-finder-card-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex: 1;
      flex: 1;
}

.program-finder-card-icon-circle {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.program-finder-card-visual {
  margin: auto 0;
}

.program-finder-loading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  min-height: 500px;
}

.program-finder-results {
  margin-bottom: 2rem;
}

.program-finder-results-header {
  margin: -0.5rem 0 1.5rem;
}

.program-finder-category-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 1rem;
  padding: 1rem 2.5rem;
  border-bottom: 0.0625rem solid var(--dlc-color-section-grey-lightened);
}
.program-finder-category-header .program-finder-category-title {
  margin: 0;
}

.program-finder-category-icon {
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

[data-category="Bill Payment Assistance"] .program-finder-category-icon {
  background-image: url("/Content/images/program-finder/checkmark-orange.svg");
}

[data-category="Billing & Payment Management"] .program-finder-category-icon {
  background-image: url("/Content/images/program-finder/checkmark-purple.svg");
}

[data-category="Home Energy Efficiency & Repair"] .program-finder-category-icon {
  background-image: url("/Content/images/program-finder/checkmark-green.svg");
}

.program-finder-card-header-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.program-finder-card-header-container .program-finder-card-title {
  margin: 0;
  line-height: 1;
}

.program-finder-seasonal-label {
  background-color: var(--dlc-color-section-grey-darkened);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  white-space: nowrap;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  height: 1.5rem;
}

.program-finder-start-over-button-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .program-finder-card {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    padding: 1rem;
    gap: 1rem;
    -ms-flex-align: center;
        align-items: center;
    text-align: center;
  }
  .program-finder-card-content {
    width: 100%;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
  .program-finder-card-content .button.primary.dont-decorate {
    margin-top: 1.5rem;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .program-finder-card-header-container {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
  }
  .program-finder-card-icon-circle {
    width: 5rem;
    height: unset;
  }
  .program-finder-category-header {
    padding: 1rem;
  }
}