@import '../../common/sass/variables';

.dropDownAnimation {
  position: fixed;
  z-index: $zIndex-drop-down;
  opacity: 0;
  transform: scaleY(0);
  transition: transform 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms, opacity 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  max-height: 100%;

  &.open {
    opacity: 1;
    transform: scaleY(1);
  }

}