.cinch-collapsible {
  &__header {
    position: relative;
    cursor: pointer;
    text-align: center;

    transition: box-shadow 0.25s ease-in;
    z-index: 1;

    &:hover {
      box-shadow: 0px 0px 8px -2px rgba(33, 35, 42, 0.3);
    }
  }

  &__panel {
    position: relative;
    overflow: hidden;
    height: 0;
    background: #f6f6f6;
    text-align: center;

    &-content {
      position: relative;
      margin: 0.8rem;
    }
  }
}
