/* stylelint-disable declaration-block-no-duplicate-properties, declaration-no-important */

.oneAction {
  display: flex;
  min-height: calc(100vh - 56px);
  min-height: -webkit-fill-available;
  min-height: stretch;
  flex-direction: column;
  justify-content: space-between;
}

.oneAction > .transition-wrapper {
  height: auto !important;
  min-height: 0 !important;
  flex-grow: 2; /* this component will try to fill out most of the space automatically */
}

.oneAction > .transition-wrapper .page-wrapper {
  min-height: 0 !important;
}

/* stylelint-enable */

.switchButton {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -4px; /* half padding between two inputs */
}

.kirk-button.switchButton:hover,
.kirk-button.switchButton:active,
.kirk-button.switchButton:focus {
  background-color: #FFF;
}

.inputFade-enter,
.inputFade-exit {
  opacity: .01;
}

.inputFade-enter-active,
.inputFade-exit-active {
  opacity: 1;
  transition: opacity 500ms cubic-bezier(.455, .03, .515, .955);
}

.switchRotate-enter,
.switchRotate-exit {
  transform: rotate(0deg);
}

.switchRotate-enter-active,
.switchRotate-exit-active {
  transform: rotate(180deg);
  transition: transform 300ms cubic-bezier(.455, .03, .515, .955);
}

/** We don't want hover on item action in search form for now
because it's broken due to 2 item actions displayed in column */

a.no-hover .kirk-item--clickable:hover {
  background: transparent;
}


/*# sourceMappingURL=search-form-381170e03570d981ee4b.map*/