.legend {
    margin-bottom: 1rem;
    font-size: 1rem;
    position: relative;
    padding-bottom: .25rem;
    padding-top: .25rem;
}

.fieldset {
    border-bottom-left-radius: .25rem;
    border-top-left-radius: .25rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    border-left: 1px solid var(--color-orange-a50);
    border-bottom: 1px solid var(--color-orange-a50);
    overflow: auto;
    width: 100%;
}

.legend:before {
    content: "";
    position: absolute;
    left: -.875rem;
    top: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(
	90deg,
	var(--color-orange-a50) 0%,
	rgba(0, 0, 0, 0) 80%,
	rgba(0, 0, 0, 0) 100%
	);
}

.legend:after {
    content: "";
    position: absolute;
    left: -1rem;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(
	90deg,
	var(--color-orange-a50) 0%,
	rgba(0, 0, 0, 0) 80%,
	rgba(0, 0, 0, 0) 100%
	);
}
.fieldsetContent {
    overflow-y: auto;
    overflow-x: hidden;
}