/**
 * The following styles get applied both on the front of your site and in the editor.
 *
 * Replace them with your own styles or remove the file completely.
 */

.wp-block-basejump-pane-sticky {
	flex:1;
}

.wp-block-basejump-pane-sticky-inner {
	background-color: gray;
	position: sticky;
	display: flex;
	flex-direction: column;
}

.wp-block-basejump-pane-sticky.pane-sticky-top .wp-block-basejump-pane-sticky-inner{
	justify-content: flex-start;
	top:0;
}

.wp-block-basejump-pane-sticky.pane-sticky-middle .wp-block-basejump-pane-sticky-inner {
	top:0;
	min-height: 100vh;
	align-self: center;
	justify-content: center;
}

.wp-block-basejump-pane-sticky.pane-sticky-bottom .wp-block-basejump-pane-sticky-inner {
	top:0;
	min-height: 100vh;
	justify-content: flex-end;
}