/*===================================
 *              Global
 * 
 * 
 * ================================*/

.bpTest{
	min-width: 150px;
	min-height: 150px;
	background: red;
}
html, body{
	scroll-behavior: smooth;
}
/****** flex styles ******/
.bbwdFlex{
	display: flex;
}
.bbwdCol{
	flex-flow: column;
}
.bbwdRow{
	flex-flow: row wrap;
}
.bbwdRowNW{
	flex-flow: row nowrap;
}
.bbwdCenterFull{
	justify-content: center;
	align-items: center;
}
.bbwdJcntAstart{
	justify-content: center;
	align-items: start;
}
.bbwdAcntJstart{
	justify-content: start;
	align-items: center;
}
.bbwdCenterBttm{
	justify-content: center;
	align-items: end;
}
.bbwdCenterTp{
	justify-content: center;
	align-items: start;
}
.bbwdCenterStch{
	justify-content: center;
	align-items: stretch;
}
.bbwdSpcBtnStch{
	justify-content: space-between;
	align-items: stretch;
}
.bbwdSpcBtnCtr{
	justify-content: space-between;
	align-items: center;
}
.bbwdSpcArdStch{
	justify-content: space-around;
	align-items: stretch;
}
.bbwdJEnd{
	justify-content: end;
}
.bbwdAllSelfEnd{
	justify-self: end;
	align-self: end;
}
.bbwdGrow3{
	flex-grow: 3;
}
.bbwdGap10{
	gap: 10px;
}
.bbwdGap20{
	gap: 20px;
}
.bbwdGap50{
	gap: 50px;
}
.bbwdGap100{
	gap: 100px;
}

.bbwdPad20px{
	padding:  20px;
}
.bbwdPad40px{
	padding:  40px;
}

.bbwdSelfEnd{
	align-self: end;
}
.bbwdASelfCent{
	align-self: center;
}

.bbwdFlexGrow1{
	flex-grow: 1;
}
/**** end flex styles ****/
 
/****** Custom Classes ******/
.bbwd180{
	transform: rotate(180deg);
}
.bbwdTxtCntr{
	text-align: center;
}
.bbwdAutoMarg{
	margin: auto;
}
.bbwdMTop120{
	margin-top: 120px;
}
.bbwdMTop60{
	margin-top: 60px;
}
.bbwdMTop20{
	margin-top: 20px;
}
.bbwdMBot60{
	margin-bottom: 60px;
}
.bbwdMBot0{
	margin-bottom: 0px;
}
.bbwdMBot120{
	margin-bottom: 120px;
}
.bbwdPnoPad p{
	padding: 0;
	margin: 0;
}
.bbwdMinH100{
	min-height: 100px;
}
.bbwdWidth25{
	width: 25%;
}
.bbwdWidth30{
	width: 30%;
}
.bbwdWidth33{
	width: 33%;
}
.bbwdWidth45{
	width: 45%;
}
.bbwdWidth50{
	width: 50%;
}
.bbwdWidth75{
	width: 75%;
}
.bbwdWidth100{
	width: 100%;
}
/** end custom classes  **/

/****** Site Wide ******/


/**** Style Overides ****/
.bbwdHideMe{
	display: none;
}
.bbwdNoSpace{
	padding: 0 !important;
	margin: 0 !important;
}
.bbwdNoBorder{
	border: none !important;
}
.bbwdHovPointer:hover{
	cursor: pointer !important;
}