.panels {
  overflow: hidden;
  display: flex;
  cursor: pointer;
  width: 100%;
}

.panel {
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.1);
  color: white;
  text-align: center;
  align-items: center;
  /* Safari transitionend event.propertyName === flex */
  /* Chrome + FF transitionend event.propertyName === flex-grow */
  transition: font-size 0.7s cubic-bezier(0.61, -0.19, 0.7, -0.11),
    flex 0.7s cubic-bezier(0.61, -0.19, 0.7, -0.11), background 0.2s;
  background-size: cover;
  background-position: center;
  display: flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Flex Children */
.panel > * {
  margin: 0;
  width: 100%;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  flex: 1 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.panel > *:first-child {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.panel.open-active > *:first-child {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.panel > *:last-child {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.panel.open-active > *:last-child {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.panel.open {
  flex: 5 1;
}


/*# sourceMappingURL=sanchez.cms.react-fullpage-accordion.1ef5ffb1.chunk.css.map*/