@value (
  sizeFluid
) from '../../styles/variables/_size.css';

@value (
  borderWidthNone,
  borderWidthPrimary
) from '../../styles/variables/_border.css';
@value (
  colorBorderPrimary
) from '../../styles/variables/_color.css';

.wrapper {
  composes: borderPrimary from '../../styles/border.module.css';
  display: flex;
  flex-flow: column;
  width: sizeFluid;
  overflow: auto;
}

.accordionWrapper {
  border-top: borderWidthNone;
  border-left: borderWidthNone;
  border-right: borderWidthNone;
}

.accordionWrapper:last-child {
  border-bottom: borderWidthNone;
}
