/* Decorative background plants – shared with epa-home, permits, complaints-application */
.epa-page-with-plants {
    position: relative;
    overflow: hidden;
}
.decorative-plant {
    position: absolute;
    z-index: 0;
    color: var(--epa-green);
    opacity: 0.2;
    pointer-events: none;
}
.decorative-plant.plant-top-right {
    top: -80px;
    right: -60px;
    width: 420px;
    height: 420px;
    transform: rotate(15deg);
}
.decorative-plant.plant-bottom-left {
    bottom: -80px;
    left: -60px;
    width: 400px;
    height: 400px;
    transform: rotate(-25deg) scaleX(-1);
}
.decorative-plant.plant-bottom-right {
    bottom: -60px;
    right: -80px;
    width: 380px;
    height: 380px;
    transform: rotate(20deg) scaleX(-1);
    opacity: 0.18;
}
.decorative-plant.plant-left-mid {
    left: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(-10deg);
    width: 280px;
    height: 280px;
    opacity: 0.15;
}
.decorative-plant.plant-right-mid {
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(10deg) scaleX(-1);
    width: 280px;
    height: 280px;
    opacity: 0.15;
}
.decorative-plant svg {
    width: 100%;
    height: 100%;
    display: block;
}
