/* set position to relative, so that the panel is able to slide in and out */
.panel.slide {
    /*position: relative !important;*/
    display:none;
}

.panel.slide.current {
    display:block;
}

/* set maximum width of a panel */
.panel-md {
    max-width: 800px;
}

/* fix in order to see modal when panel is in full screen mode */
.modal {
    z-index:1082;
}

.modal-backdrop {
    z-index:1081;
}

/* fix for opening modal when panel is expanded. the spinner is not getting this height otherwise */
/* TODO: should fix for other heights as well like height-xs etc. */
.panel-expand .modal .height-sm {
    height:300px !important;
}
