.gizmo-collapsible {
  -moz-transition: max-height 0.8s cubic-bezier(0, 1, 0.2, 1), visibility 0s step-end 0.8s;
  -o-transition: max-height 0.8s cubic-bezier(0, 1, 0.2, 1), visibility 0s step-end 0.8s;
  -webkit-transition: max-height 0.8s cubic-bezier(0, 1, 0.2, 1), visibility 0s step-end;
  -webkit-transition-delay: 0s, 0.8s;
  transition: max-height 0.8s cubic-bezier(0, 1, 0.2, 1), visibility 0s step-end 0.8s;
  overflow: hidden;
  max-height: 0;
  visibility: hidden;
}
.gizmo-collapsible.open {
  -moz-transition: max-height 1.6s ease-in, visibility 0s step-end;
  -o-transition: max-height 1.6s ease-in, visibility 0s step-end;
  -webkit-transition: max-height 1.6s ease-in, visibility 0s step-end;
  transition: max-height 1.6s ease-in, visibility 0s step-end;
  max-height: 9999px;
  visibility: visible;
}

.gizmo-collapsible-with-header > *:last-child {
  visibility: hidden;
  overflow: hidden;
  max-height: 0;
  -moz-transition: max-height 0.8s cubic-bezier(0, 1, 0.2, 1), visibility 0s step-end 0.8s;
  -o-transition: max-height 0.8s cubic-bezier(0, 1, 0.2, 1), visibility 0s step-end 0.8s;
  -webkit-transition: max-height 0.8s cubic-bezier(0, 1, 0.2, 1), visibility 0s step-end;
  -webkit-transition-delay: 0s, 0.8s;
  transition: max-height 0.8s cubic-bezier(0, 1, 0.2, 1), visibility 0s step-end 0.8s;
}
.gizmo-collapsible-with-header.open > *:last-child {
  visibility: visible;
  max-height: 9999px;
  -moz-transition: max-height 1.6s ease-in, visibility 0s step-end;
  -o-transition: max-height 1.6s ease-in, visibility 0s step-end;
  -webkit-transition: max-height 1.6s ease-in, visibility 0s step-end;
  transition: max-height 1.6s ease-in, visibility 0s step-end;
}
@media all and (min-width: 881px) {
  .gizmo-collapsible-with-header.open-in-large > .toggle {
    display: none;
  }
  .gizmo-collapsible-with-header.open-in-large > *:last-child {
    visibility: visible;
    max-height: 9999px;
    -moz-transition: max-height 1.6s ease-in, visibility 0s step-end;
    -o-transition: max-height 1.6s ease-in, visibility 0s step-end;
    -webkit-transition: max-height 1.6s ease-in, visibility 0s step-end;
    transition: max-height 1.6s ease-in, visibility 0s step-end;
  }
}
@media all and (min-width: 569px) {
  .gizmo-collapsible-with-header.only-in-small > .toggle {
    display: none;
  }
  .gizmo-collapsible-with-header.only-in-small > *:last-child {
    visibility: visible;
    max-height: 9999px;
    -moz-transition: max-height 1.6s ease-in, visibility 0s step-end;
    -o-transition: max-height 1.6s ease-in, visibility 0s step-end;
    -webkit-transition: max-height 1.6s ease-in, visibility 0s step-end;
    transition: max-height 1.6s ease-in, visibility 0s step-end;
  }
}
.gizmo-collapsible-with-header.show-teaser.open > *:last-child {
  max-height: 9999px;
}
.gizmo-collapsible-with-header.show-teaser > *:last-child {
  visibility: visible;
  max-height: 288px;
}
.gizmo-collapsible-with-header .show-plus {
  height: 58px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-position: 98% center;
  background-repeat: no-repeat;
  background-size: 18px;
  background-image: url("//kbstatic1-a.akamaihd.net/322/Images/Web_itempage_plus.svg");
}
.gizmo-collapsible-with-header.open .show-plus {
  background-image: url("//kbstatic1-a.akamaihd.net/322/Images/Web_itempage_minus.svg");
}

.gizmo-collapsible-arrow {
  position: relative;
  padding: 10px 10px 20px;
}
.gizmo-collapsible-arrow .hide {
  visibility: hidden;
}
.gizmo-collapsible-arrow .inner-wrap {
  margin: 0;
  overflow: hidden;
  max-height: 0;
  -moz-transition: max-height 1.6s;
  -o-transition: max-height 1.6s;
  -webkit-transition: max-height 1.6s;
  transition: max-height 1.6s;
}
.gizmo-collapsible-arrow.open .inner-wrap {
  max-height: 9999px;
}
.gizmo-collapsible-arrow.open .gizmo-collapsible-arrow-button:before {
  bottom: -3px;
  right: 0;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  /* Firefox */
  -o-transform: rotate(180deg);
  /* Opera */
  transform: rotate(180deg);
}
.gizmo-collapsible-arrow .gizmo-collapsible-arrow-button {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border-bottom: 2px solid #d8d8d8;
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -20px;
  background-color: inherit;
}
.gizmo-collapsible-arrow .gizmo-collapsible-arrow-button:before {
  content: '';
  position: absolute;
  background-image: url("//kbstatic1-a.akamaihd.net/322/Images/Show_All_Arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  bottom: -1px;
  right: -1px;
  height: 40px;
  width: 40px;
  -moz-transition: -moz-transform 0.5s ease-in;
  -o-transition: -o-transform 0.5s ease-in;
  -webkit-transition: -webkit-transform 0.5s ease-in;
  transition: transform 0.5s ease-in;
}
.gizmo-collapsible-arrow .gizmo-collapsible-arrow-button:focus, .gizmo-collapsible-arrow .gizmo-collapsible-arrow-button:hover {
  background-color: #ededed;
}

.test-override-collapsible-arrow-height.inner-wrap {
  max-height: 90px;
}
