/****** global classes ******/
.bbwdHideMe{
	display: none;
}
.bbwdHoverPointer{
	cursor: pointer;
}
/****** flex styles ******/
.bbwdFlex{
	display: flex;
}
.bbwdCol{
	flex-flow: column;
}
.bbwdRow{
	flex-flow: row wrap;
}
.bbwdCenterFull{
	justify-content: center;
	align-items: center;
}
.bbwdJcntAstart{
	justify-content: center;
	align-items: start;
}
.bbwdAcntJstart{
	justify-content: start;
	align-items: center;
}
.bbwdAcntJsbtwn{
	justify-content: space-between;
	align-items: center;
}
.bbwdAcntJend{
	justify-content: end;
	align-items: center;
}
.bbwdAcntJstretch{
	justify-content: start;
	align-items: stretch;
}

.bbwdGap20{
	gap: 20px;
}
.bbwdGap10{
	gap: 0px;
}
.tAlignEnd{
	text-align: end;
}

.bbwdMinW80{
	min-width: 80%;
}
.bbwdMinW100{
	min-width: 100%;
}
.bbwdWidthFit{
	width: fit-content;
}
.bbwdWidth50{
	width: 50%;
}
.bbwdWidth100{
	width: 100%;
}
.bbwdMargB0{
	margin-bottom: 0;
}
.bbwdMarg0{
	margin: 0;
}

.bbwdAplWhiteBackground{
	background: white;
}
.bbwdAplMargTop50{
	margin-top: 50px;
}
.bbwdAplBorderR10{
	border-radius: 10px;
}
.bbwdAplPad10p30{
	padding: 10px 30px;
}
.bbwdDMcapit{
	text-transform: capitalize;
}