@import '../../style/themes/index';

.collapsible {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition-timing-function: cubic-bezier(0, 0, 0.42, 1);
  transition-duration: 100ms;
  transition-property: max-height;
  will-change: max-height;

  &-is-fully-closed {
    display: none;
  }
}
