@import '../sidePanel.styl';


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

.sidePanel-dropDown .sidePanel-content {
    border-top: 0;
    overflow: scroll;
    max-height: 300px;
    width: 300px;
    height: auto;
}


.sidePanel-dropDown.sidePanel-background-enter {
    opacity: 0;
    transform: scaleY(0);
}
.sidePanel-dropDown.sidePanel-background-enter.sidePanel-background-enter-active {
    opacity: 1;
    transform: scaleY(1);
    transition-property: transform, opacity;
    transition-duration: 1000ms;
    transition-timing-function: ease-in-out;
}
.sidePanel-dropDown.sidePanel-background-leave {
    opacity: 1;
    transform: scaleY(1);
}
.sidePanel-dropDown.sidePanel-background-leave.sidePanel-background-leave-active {
    opacity: 0;
    transform: scaleY(0) ;
    transition-property: transform, opacity;
    transition-duration: 1000ms;
    transition-timing-function: ease-in-out;
}
