.monarch-multistep-section,
.app-multistep-section {
  margin-bottom: 1rem;
}

.monarch-multistep-section:not(.borderless),
.app-multistep-section:not(.borderless) {
  border: 1px solid #ced4da;
  border-radius: 5px;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

details.monarch-multistep-section[open],
details.app-multistep-section[open] {
  padding-bottom: 0.75rem;
}

details.monarch-multistep-section > summary,
details.app-multistep-section > summary {
  list-style-type: '';
  position: relative;
  font-size: 1.2em;
  font-weight: bold;
  user-select: none;
}

details.monarch-multistep-section[open] > summary,
details.app-multistep-section[open] > summary {
  list-style-type: '';
  padding-right: 1.5em;
}

details.monarch-multistep-section > summary::before,
details.app-multistep-section > summary::before {
  content: '';
  top: 50%;
  right: 0;
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: black;
  transform: translate(0, -50%) scale(1) rotate(0deg);
  transition: all 0.25s;
  clip-path: polygon(
    6.25% 62.5%,
    50% 18.75%,
    93.75% 62.5%,
    87.5% 68.75%,
    50% 31.25%,
    12.5% 68.75%
  );
}

details.monarch-multistep-section[open] > summary::before,
details.app-multistep-section[open] > summary::before {
  transform: translate(0, -50%) scale(1) rotate(-180deg);
}
