/**
 * Default clearfix implementation.
 *
 * @usage
 *    .box {
 *      @include clearfix;
 *    }
 */
/**
 * Casts a string into a number.
 *
 * @param {string} $value
 *    Tje string to cast to a number.
 * @return {$number}
 *    The value as number.
 */
/**
 * Split a string into a list of strings.
 *
 * @param {string} $string
 *    Tje string to be split.
 * @param {string} $delimiter
 *    The boundary string.
 * @return {list} $result
 *    The result list.
 */
.group-header {
  margin-top: 0.75rem;
  z-index: 501;
  position: relative;
}
.group-header--notitle.group-header {
  margin-top: 0;
}
@media (min-width: 767px) {
  .group-header {
    margin-top: 1.75rem;
    position: sticky;
    top: calc(135px + var(--gin-toolbar-height, 0px) + var(--gin-toolbar-secondary-height, 0px));
  }
  .group-header--notitle.group-header {
    margin-top: 0;
  }
  .header-small .group-header {
    top: calc(70px + var(--gin-toolbar-height, 0px) + var(--gin-toolbar-secondary-height, 0px));
  }
}
#___storybook_wrapper > .group-header {
  margin-top: 2.5rem;
  top: 0;
}
.group-header__grouptitle {
  position: relative;
  z-index: 2;
}
.group-header__menu {
  background: #EDEFF8;
  opacity: 1;
  position: relative;
  -webkit-transition: opacity 300ms ease;
  -o-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  display: none;
}
@media (min-width: 767px) {
  .group-header__menu {
    display: block;
  }
}
.group-header--menu-open .group-header__menu {
  display: block;
}
.group-header--menu-open .group-title__toggle i {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.group-header__creationals {
  position: relative;
  top: -2.5rem;
}
.group-header__creationals .container {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 767px) {
  .group-header__creationals {
    position: absolute;
    right: 0.5rem;
    top: auto;
    bottom: 2.5rem;
    width: auto;
    z-index: 501;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .groupheader-sticky .group-header__creationals {
    bottom: -1.9rem;
    background: #fff;
  }
  .groupheader-sticky .group-header__creationals:before {
    content: "";
    display: block;
    position: absolute;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
    width: 2rem;
    left: -2rem;
    top: 0;
    height: 100%;
  }
  .groupheader-sticky .group-header__creationals .dropbutton-wrapper {
    margin-bottom: 0;
    max-height: 1.8rem;
  }
  .groupheader-sticky .group-header__creationals .dropbutton-wrapper li[class*=icon-]::before {
    top: 0.4rem;
  }
  .groupheader-sticky .group-header--notitle .group-header__creationals {
    bottom: -2.2rem;
    background: transparent;
  }
  .groupheader-sticky .group-header--notitle .group-header__creationals:before {
    background: transparent;
  }
}
.group-header__creationals .contextual {
  display: none;
}
.group-header__creationals .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}