@charset "utf-8";

/* ==================================================
 * ==================================================
 * sewerage-data-page
 * ==================================================
 * ================================================== */
.sewerage-data-page{
  min-width: 0;
  overflow: clip;
}

/* ==================================================
 * ==================================================
 * sewerage-data-hero
 * ==================================================
 * ================================================== */
.sewerage-data-hero{
  display: grid;
  align-content: end;
  justify-items: start;
  gap: clamp(1.5rem, 3vw, 3rem);
  min-height: min(52rem, 100svh);
  padding-top: calc(var(--layout-header-height) + var(--space-panel-block));
  padding-bottom: var(--space-panel-block);
}
.sewerage-data-hero__title-en{
  color: var(--color-brand);
  font-family: var(--font-en-sans);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
.sewerage-data-hero__title-ja{
  font-size: clamp(2.75rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.2;
  text-wrap: balance;
}
.sewerage-data-hero__lead{
  color: rgba(255,255,255,.68);
  font-size: var(--fs-lg);
  line-height: 2;
  width: min(100%, 42rem);
}

/* ==================================================
 * ==================================================
 * sewer-pipe-aging-chart
 * ==================================================
 * ================================================== */
.sewer-pipe-aging-chart{
  display: grid;
  gap: clamp(3.5rem, 8vw, 8rem);
  min-width: 0;
}
.sewer-pipe-aging-chart__intro{
  display: grid;
  align-content: start;
  gap: clamp(2rem, 3vw, 3rem);
  min-width: 0;
}
.sewer-pipe-aging-chart__index{
  color: var(--color-brand-dark);
  font-family: var(--font-en-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
.sewer-pipe-aging-chart__head{
  display: grid;
  gap: 1rem;
}
.sewer-pipe-aging-chart__eyebrow{
  color: rgba(32,34,40,.56);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.sewer-pipe-aging-chart__title{
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.35;
  text-wrap: balance;
}
.sewer-pipe-aging-chart__body{
  display: grid;
  gap: 1rem;
  width: min(100%, 36rem);
}
.sewer-pipe-aging-chart__lead{
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: 1.9;
}
.sewer-pipe-aging-chart__text{
  color: rgba(32,34,40,.68);
  font-size: var(--fs-sm);
  line-height: 2;
}
.sewer-pipe-aging-chart__figure{
  display: grid;
  gap: 1.5rem;
  min-width: 0;
}
.sewer-pipe-aging-chart__plot{
  height: clamp(27rem, 58vw, 34rem);
  padding-left: clamp(2.75rem, 5vw, 4rem);
  position: relative;
}
.sewer-pipe-aging-chart__plot::before{
  content: "";
  background-image: repeating-linear-gradient(
    to top,
    var(--color-border-base) 0,
    var(--color-border-base) 1px,
    transparent 1px,
    transparent 20%
  );
  position: absolute;
  top: 0;
  right: 0;
  bottom: 4.5rem;
  left: clamp(2.75rem, 5vw, 4rem);
  pointer-events: none;
}
.sewer-pipe-aging-chart__scale{
  color: rgba(32,34,40,.42);
  font-family: var(--font-en-sans);
  font-size: 0.6875rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 0 4.5rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.sewer-pipe-aging-chart__bars{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.5rem, 2.5vw, 2rem);
  height: 100%;
  min-width: 0;
  position: relative;
}
.sewer-pipe-aging-chart__bar-item{
  display: grid;
  grid-template-rows: minmax(0, 1fr) 4.5rem;
  justify-items: center;
  min-width: 0;
}
.sewer-pipe-aging-chart__bar-area{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-width: 0;
}
.sewer-pipe-aging-chart__bar{
  background: linear-gradient(180deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  width: min(100%, 6.5rem);
  height: var(--sewer-pipe-aging-height);
  min-height: 0;
  position: relative;
  transform-origin: center bottom;
}
.sewer-pipe-aging-chart__bar::after{
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sewer-pipe-aging-chart__bar-value,
.sewer-pipe-aging-chart__bar-distance{
  font-family: var(--font-en-sans);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.sewer-pipe-aging-chart__bar-value{
  color: var(--color-fg-base);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 600;
  bottom: calc(100% + 1.75rem);
}
.sewer-pipe-aging-chart__bar-value > span:last-child{
  font-size: 0.48em;
  margin-left: 0.1em;
}
.sewer-pipe-aging-chart__bar-distance{
  color: rgba(32,34,40,.58);
  font-size: var(--fs-2xs);
  font-weight: 500;
  bottom: calc(100% + 0.45rem);
}
.sewer-pipe-aging-chart__bar-label{
  display: grid;
  align-content: start;
  gap: 0.2rem;
  padding-top: 1rem;
  text-align: center;
}
.sewer-pipe-aging-chart__bar-label > p:first-child{
  font-family: var(--font-en-sans);
  font-size: clamp(0.6875rem, 2.5vw, var(--fs-xs));
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  line-height: 1.3;
}
.sewer-pipe-aging-chart__bar-label > p:last-child{
  color: rgba(32,34,40,.52);
  font-size: var(--fs-2xs);
  line-height: 1.4;
}
.sewer-pipe-aging-chart__caption{
  color: rgba(32,34,40,.58);
  font-size: var(--fs-2xs);
  line-height: 1.8;
}
.sewer-pipe-aging-chart__source{
  color: rgba(32,34,40,.58);
  font-size: var(--fs-2xs);
  line-height: 1.8;
}
.sewer-pipe-aging-chart__source-link{
  color: var(--color-link);
}

/* ==================================================
 * sewer-pipe-aging-chart animation
 * ================================================== */
.sewer-pipe-aging-chart.is-chart-enhanced .sewer-pipe-aging-chart__bar{
  transform: scaleY(0);
}
.sewer-pipe-aging-chart.is-chart-enhanced .sewer-pipe-aging-chart__bar-value,
.sewer-pipe-aging-chart.is-chart-enhanced .sewer-pipe-aging-chart__bar-distance,
.sewer-pipe-aging-chart.is-chart-enhanced .sewer-pipe-aging-chart__bar-label{
  opacity: 0;
  transform: translateY(0.75rem);
}
.sewer-pipe-aging-chart.is-chart-enhanced .sewer-pipe-aging-chart__bar-value,
.sewer-pipe-aging-chart.is-chart-enhanced .sewer-pipe-aging-chart__bar-distance{
  transform: translate(-50%, 0.75rem);
}
.sewer-pipe-aging-chart.is-chart-enhanced.is-chart-visible .sewer-pipe-aging-chart__bar{
  transform: scaleY(1);
  transition: transform 960ms cubic-bezier(.22,1,.36,1) var(--sewer-pipe-aging-delay);
}
.sewer-pipe-aging-chart.is-chart-enhanced.is-chart-visible .sewer-pipe-aging-chart__bar-value,
.sewer-pipe-aging-chart.is-chart-enhanced.is-chart-visible .sewer-pipe-aging-chart__bar-distance{
  opacity: 1;
  transform: translate(-50%, 0);
  transition:
    opacity 480ms ease calc(var(--sewer-pipe-aging-delay) + 420ms),
    transform 680ms cubic-bezier(.22,1,.36,1) calc(var(--sewer-pipe-aging-delay) + 360ms);
}
.sewer-pipe-aging-chart.is-chart-enhanced.is-chart-visible .sewer-pipe-aging-chart__bar-label{
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 480ms ease calc(var(--sewer-pipe-aging-delay) + 240ms),
    transform 680ms cubic-bezier(.22,1,.36,1) calc(var(--sewer-pipe-aging-delay) + 180ms);
}

/* ==================================================
 * sewer-pipe-aging-chart responsive 1025px
 * ================================================== */
@media (min-width: 1025px){
  .sewer-pipe-aging-chart{
    grid-template-columns: minmax(18rem, .76fr) minmax(32rem, 1.24fr);
    align-items: end;
  }
  .sewer-pipe-aging-chart__source{
    grid-column: 1 / -1;
  }
}

/* ==================================================
 * ==================================================
 * sewer-inspection-result-chart
 * ==================================================
 * ================================================== */
.sewer-inspection-result-chart{
  display: grid;
  gap: clamp(3.5rem, 8vw, 8rem);
  min-width: 0;
}
.sewer-inspection-result-chart__intro{
  display: grid;
  align-content: start;
  gap: clamp(2rem, 3vw, 3rem);
  min-width: 0;
}
.sewer-inspection-result-chart__index{
  color: var(--color-brand);
  font-family: var(--font-en-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
.sewer-inspection-result-chart__head{
  display: grid;
  gap: 1rem;
}
.sewer-inspection-result-chart__eyebrow{
  color: rgba(255,255,255,.54);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.sewer-inspection-result-chart__title{
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.35;
  text-wrap: balance;
}
.sewer-inspection-result-chart__body{
  display: grid;
  gap: 1rem;
  width: min(100%, 36rem);
}
.sewer-inspection-result-chart__lead{
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: 1.9;
}
.sewer-inspection-result-chart__text{
  color: rgba(255,255,255,.62);
  font-size: var(--fs-sm);
  line-height: 2;
}
.sewer-inspection-result-chart__figure{
  display: grid;
  justify-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  min-width: 0;
}
.sewer-inspection-result-chart__visual{
  display: grid;
  place-items: center;
  width: min(100%, 32rem);
  position: relative;
}
.sewer-inspection-result-chart__donut{
  width: 100%;
  height: auto;
  overflow: visible;
  transform: rotate(-90deg);
}
.sewer-inspection-result-chart__donut-track,
.sewer-inspection-result-chart__donut-value{
  fill: none;
  stroke-width: 18;
}
.sewer-inspection-result-chart__donut-track{
  stroke: rgba(255,255,255,.12);
}
.sewer-inspection-result-chart__donut-value{
  stroke: var(--color-brand);
  stroke-dasharray: 14 86;
  stroke-dashoffset: 0;
}
.sewer-inspection-result-chart__summary{
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  text-align: center;
  position: absolute;
  inset: auto;
}
.sewer-inspection-result-chart__summary-value{
  color: var(--color-white);
  font-family: var(--font-en-sans);
  font-size: clamp(3rem, 7vw, 6rem);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}
.sewer-inspection-result-chart__summary-value > span:last-child{
  color: var(--color-brand);
  font-size: 0.34em;
  margin-left: 0.1em;
}
.sewer-inspection-result-chart__summary-label{
  color: rgba(255,255,255,.56);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.sewer-inspection-result-chart__caption{
  display: grid;
  gap: 1.5rem;
  width: min(100%, 34rem);
}
.sewer-inspection-result-chart__legend{
  display: grid;
  border-top: 1px solid var(--color-border-light);
}
.sewer-inspection-result-chart__legend-item{
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.75rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--color-border-light);
}
.sewer-inspection-result-chart__legend-item::before{
  content: "";
  background: currentColor;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: var(--radius-pill);
}
.sewer-inspection-result-chart__legend-item--abnormal{
  color: var(--color-brand);
}
.sewer-inspection-result-chart__legend-item--normal{
  color: rgba(255,255,255,.24);
}
.sewer-inspection-result-chart__legend-label{
  color: var(--color-white);
  font-size: var(--fs-sm);
}
.sewer-inspection-result-chart__legend-value{
  color: var(--color-white);
  font-family: var(--font-en-sans);
  font-size: var(--fs-lg);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.sewer-inspection-result-chart__legend-value > span{
  color: rgba(255,255,255,.54);
  font-size: var(--fs-xs);
  margin-left: 0.35em;
}
.sewer-inspection-result-chart__note,
.sewer-inspection-result-chart__source{
  color: rgba(255,255,255,.52);
  font-size: var(--fs-2xs);
  line-height: 1.8;
}
.sewer-inspection-result-chart__source-link{
  color: var(--color-brand-light);
}

/* ==================================================
 * sewer-inspection-result-chart animation
 * ================================================== */
.sewer-inspection-result-chart.is-chart-enhanced .sewer-inspection-result-chart__donut-value{
  stroke-dasharray: 0 100;
}
.sewer-inspection-result-chart.is-chart-enhanced .sewer-inspection-result-chart__summary{
  opacity: 0;
  transform: scale(.92);
}
.sewer-inspection-result-chart.is-chart-enhanced.is-chart-visible .sewer-inspection-result-chart__donut-value{
  stroke-dasharray: 14 86;
  transition: stroke-dasharray 1200ms cubic-bezier(.22,1,.36,1);
}
.sewer-inspection-result-chart.is-chart-enhanced.is-chart-visible .sewer-inspection-result-chart__summary{
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 520ms ease 360ms,
    transform 760ms cubic-bezier(.22,1,.36,1) 280ms;
}

/* ==================================================
 * sewer-inspection-result-chart responsive 1025px
 * ================================================== */
@media (min-width: 1025px){
  .sewer-inspection-result-chart{
    grid-template-columns: minmax(18rem, .86fr) minmax(32rem, 1.14fr);
    align-items: center;
  }
  .sewer-inspection-result-chart__source{
    grid-column: 1 / -1;
  }
}

/* ==================================================
 * ==================================================
 * sewer-sinkhole-depth-chart
 * ==================================================
 * ================================================== */
.sewer-sinkhole-depth-chart{
  display: grid;
  gap: clamp(3.5rem, 8vw, 8rem);
  min-width: 0;
}
.sewer-sinkhole-depth-chart__intro{
  display: grid;
  align-content: start;
  gap: clamp(2rem, 3vw, 3rem);
  min-width: 0;
}
.sewer-sinkhole-depth-chart__index{
  color: var(--color-brand-dark);
  font-family: var(--font-en-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
.sewer-sinkhole-depth-chart__head{
  display: grid;
  gap: 1rem;
}
.sewer-sinkhole-depth-chart__eyebrow{
  color: rgba(32,34,40,.56);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.sewer-sinkhole-depth-chart__title{
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.35;
  text-wrap: balance;
}
.sewer-sinkhole-depth-chart__body{
  display: grid;
  gap: 1rem;
  width: min(100%, 36rem);
}
.sewer-sinkhole-depth-chart__lead{
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: 1.9;
}
.sewer-sinkhole-depth-chart__text{
  color: rgba(32,34,40,.68);
  font-size: var(--fs-sm);
  line-height: 2;
}
.sewer-sinkhole-depth-chart__figure{
  display: grid;
  justify-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  min-width: 0;
}
.sewer-sinkhole-depth-chart__visual{
  display: grid;
  place-items: center;
  width: min(100%, 32rem);
  position: relative;
}
.sewer-sinkhole-depth-chart__donut{
  width: 100%;
  height: auto;
  overflow: visible;
  transform: rotate(-90deg);
}
.sewer-sinkhole-depth-chart__donut-track,
.sewer-sinkhole-depth-chart__donut-segment{
  fill: none;
  stroke-width: 18;
}
.sewer-sinkhole-depth-chart__donut-track{
  stroke: var(--color-bg-soft);
}
.sewer-sinkhole-depth-chart__donut-segment--shallow{
  stroke: var(--color-brand-dark);
  stroke-dasharray: 86 14;
  stroke-dashoffset: 0;
}
.sewer-sinkhole-depth-chart__donut-segment--middle{
  stroke: var(--color-brand);
  stroke-dasharray: 12 88;
  stroke-dashoffset: -86;
}
.sewer-sinkhole-depth-chart__donut-segment--deep{
  stroke: var(--color-brand-light);
  stroke-dasharray: 2 98;
  stroke-dashoffset: -98;
}
.sewer-sinkhole-depth-chart__summary{
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  text-align: center;
  position: absolute;
  inset: auto;
}
.sewer-sinkhole-depth-chart__summary-label{
  color: rgba(32,34,40,.48);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.sewer-sinkhole-depth-chart__summary-value{
  color: var(--color-fg-base);
  font-family: var(--font-en-sans);
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}
.sewer-sinkhole-depth-chart__summary-value > span:first-child,
.sewer-sinkhole-depth-chart__summary-value > span:last-child{
  color: rgba(32,34,40,.52);
  font-family: var(--font-base);
  font-size: 0.3em;
  letter-spacing: 0;
}
.sewer-sinkhole-depth-chart__summary-value > span:first-child{
  margin-right: 0.15em;
}
.sewer-sinkhole-depth-chart__summary-value > span:last-child{
  margin-left: 0.15em;
}
.sewer-sinkhole-depth-chart__caption{
  display: grid;
  gap: 1.5rem;
  width: min(100%, 34rem);
}
.sewer-sinkhole-depth-chart__legend{
  display: grid;
  border-top: 1px solid var(--color-border-base);
}
.sewer-sinkhole-depth-chart__legend-item{
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.75rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--color-border-base);
}
.sewer-sinkhole-depth-chart__legend-item::before{
  content: "";
  background: currentColor;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: var(--radius-pill);
}
.sewer-sinkhole-depth-chart__legend-item--shallow{
  color: var(--color-brand-dark);
}
.sewer-sinkhole-depth-chart__legend-item--middle{
  color: var(--color-brand);
}
.sewer-sinkhole-depth-chart__legend-item--deep{
  color: var(--color-brand-light);
}
.sewer-sinkhole-depth-chart__legend-label{
  color: var(--color-fg-base);
  font-size: var(--fs-sm);
}
.sewer-sinkhole-depth-chart__legend-value{
  color: var(--color-fg-base);
  font-family: var(--font-en-sans);
  font-size: var(--fs-lg);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.sewer-sinkhole-depth-chart__note,
.sewer-sinkhole-depth-chart__source{
  color: rgba(32,34,40,.58);
  font-size: var(--fs-2xs);
  line-height: 1.8;
}
.sewer-sinkhole-depth-chart__source-link{
  color: var(--color-link);
}

/* ==================================================
 * sewer-sinkhole-depth-chart animation
 * ================================================== */
.sewer-sinkhole-depth-chart.is-chart-enhanced .sewer-sinkhole-depth-chart__donut-segment{
  stroke-dasharray: 0 100;
}
.sewer-sinkhole-depth-chart.is-chart-enhanced .sewer-sinkhole-depth-chart__summary{
  opacity: 0;
  transform: scale(.92);
}
.sewer-sinkhole-depth-chart.is-chart-enhanced.is-chart-visible .sewer-sinkhole-depth-chart__donut-segment--shallow{
  stroke-dasharray: 86 14;
  transition: stroke-dasharray 1200ms cubic-bezier(.22,1,.36,1);
}
.sewer-sinkhole-depth-chart.is-chart-enhanced.is-chart-visible .sewer-sinkhole-depth-chart__donut-segment--middle{
  stroke-dasharray: 12 88;
  transition: stroke-dasharray 900ms cubic-bezier(.22,1,.36,1) 520ms;
}
.sewer-sinkhole-depth-chart.is-chart-enhanced.is-chart-visible .sewer-sinkhole-depth-chart__donut-segment--deep{
  stroke-dasharray: 2 98;
  transition: stroke-dasharray 520ms cubic-bezier(.22,1,.36,1) 900ms;
}
.sewer-sinkhole-depth-chart.is-chart-enhanced.is-chart-visible .sewer-sinkhole-depth-chart__summary{
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 520ms ease 420ms,
    transform 760ms cubic-bezier(.22,1,.36,1) 340ms;
}

/* ==================================================
 * sewer-sinkhole-depth-chart responsive 1025px
 * ================================================== */
@media (min-width: 1025px){
  .sewer-sinkhole-depth-chart{
    grid-template-columns: minmax(32rem, 1.14fr) minmax(18rem, .86fr);
    align-items: center;
  }
  .sewer-sinkhole-depth-chart__intro{
    grid-column: 2;
  }
  .sewer-sinkhole-depth-chart__figure{
    grid-column: 1;
    grid-row: 1;
  }
  .sewer-sinkhole-depth-chart__source{
    grid-column: 1 / -1;
  }
}

/* ==================================================
 * sewerage data charts reduced motion
 * ================================================== */
@media (prefers-reduced-motion: reduce){
  .sewer-pipe-aging-chart.is-chart-enhanced .sewer-pipe-aging-chart__bar{
    transform: scaleY(1);
    transition: none;
  }
  .sewer-pipe-aging-chart.is-chart-enhanced .sewer-pipe-aging-chart__bar-value,
  .sewer-pipe-aging-chart.is-chart-enhanced .sewer-pipe-aging-chart__bar-distance{
    opacity: 1;
    transform: translate(-50%, 0);
    transition: none;
  }
  .sewer-pipe-aging-chart.is-chart-enhanced .sewer-pipe-aging-chart__bar-label{
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
  .sewer-inspection-result-chart.is-chart-enhanced .sewer-inspection-result-chart__donut-value{
    stroke-dasharray: 14 86;
    transition: none;
  }
  .sewer-sinkhole-depth-chart.is-chart-enhanced .sewer-sinkhole-depth-chart__donut-segment--shallow{
    stroke-dasharray: 86 14;
    transition: none;
  }
  .sewer-sinkhole-depth-chart.is-chart-enhanced .sewer-sinkhole-depth-chart__donut-segment--middle{
    stroke-dasharray: 12 88;
    transition: none;
  }
  .sewer-sinkhole-depth-chart.is-chart-enhanced .sewer-sinkhole-depth-chart__donut-segment--deep{
    stroke-dasharray: 2 98;
    transition: none;
  }
  .sewer-inspection-result-chart.is-chart-enhanced .sewer-inspection-result-chart__summary,
  .sewer-sinkhole-depth-chart.is-chart-enhanced .sewer-sinkhole-depth-chart__summary{
    opacity: 1;
    transform: scale(1);
    transition: none;
  }
}