@import '../sidePanel.styl';


.sidePanel-dropUp {
    position: absolute;
    z-index: 999;
    top: inherit;
    right: inherit;
    bottom: inherit;
    width: 200px;
    max-height: 300px;
}

.sidePanel-dropUp .sidePanel-content {
    border-bottom: 0;
    overflow: scroll;
    max-height: 300px;
    width: 300px;
    height: auto;
    bottom: 30px;
}

.sidePanel-dropUp.sidePanel-background-enter .sidePanel-content > div {
    transform: scale(0);
    transform-origin: 0% 100%;
}
.sidePanel-dropUp.sidePanel-background-enter.sidePanel-background-enter-active .sidePanel-content > div {
    transform: scale(1);
    transform-origin: 0% 100%;
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.42, 0, 0, 1.02);
}
.sidePanel-dropUp.sidePanel-background-leave {
    opacity: 1;
}
.sidePanel-dropUp.sidePanel-background-leave.sidePanel-background-leave-active {
    opacity: 0;
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: ease-in-out;
}
