/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.bmgr-flex-container{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	/* gap:20px; */
}
.bmgr-flex-container-100{
    width:100%;
    min-height:100%;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	/* gap:20px; */
}
.bmgr-flex-box2{
	/* intended for 2-col layout */
	flex-basis:350px;
	flex-grow:1;
	flex-wrap: wrap;
	padding:5px;
}
.bmgr-flex-box4{
	/* intended for 4-col layout */
	display:flex;
	gap:0px; 
	flex-basis:220px;
	flex-grow:1;
	flex-wrap: wrap;
	padding:5px;
}
.bmgr-flex-min-br-full{
	/* intended for 8-col layout */
	display:flex;
	gap:0px; 
	flex-basis:5%;
	flex-grow:1;
	flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
	.bmgr-flex-min-br-full{
		flex-basis:100%;
	}
}
.bmgr-border-sq-grey{
    border: 1px solid darkgrey;
}
.scheduler-day{
    justify-content:center;
}