/*===================================
 *              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;
}
.bbwdAllSelfStart{
	justify-self: start;
	align-self: start;
}
.bbwdAllSelfEnd{
	justify-self: end;
	align-self: end;
}
.bbwdAllSelfCenter{
	justify-self: center;
	align-self: center;
}
.bbwdGrow1{
	flex-grow: 1;
}
.bbwdGrow3{
	flex-grow: 3;
}
.bbwdGap5{
	gap: 5px;
}
.bbwdGap10{
	gap: 10px;
}
.bbwdGap20{
	gap: 20px;
}
.bbwdGap50{
	gap: 50px;
}
.bbwdGap100{
	gap: 100px;
}

.bbwdPad5px{
	padding:  5px;
}
.bbwdPad10px{
	padding:  10px;
}
.bbwdPad20px{
	padding:  20px;
}
.bbwdPad40px{
	padding:  40px;
}

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

.bbwdFlexGrow1{
	flex-grow: 1;
}
/**** end flex styles ****/
 
/****** Custom Classes ******/
.bbwdTempArea{
	padding: 20px;
	text-align: center;
    background: rgba(270, 210, 210) !important;
    border: 1px solid rgba(270, 10, 10, 1) !important;
}
/* .bbwdTempArea h2, .bbwdTempArea h3, .bbwdTempArea h4, .bbwdTempArea h5, .bbwdTempArea h6, .bbwdTempArea p, .bbwdTempArea span, .bbwdTempArea i{
	color: white !important;
} */
.bbwd180{
	transform: rotate(180deg);
}
.bbwdTxtStrt{
	text-align: start;
}
.bbwdTxtEnd{
	text-align: end;
}
.bbwdTxtCntr{
	text-align: center;
}
.bbwdAutoMarg{
	margin: auto;
}
.bbwdMTop120{
	margin-top: 120px;
}
.bbwdMTop60{
	margin-top: 60px;
}
.bbwdMTop20{
	margin-top: 20px;
}
.bbwdMBot10{
	margin-bottom: 10px;
}
.bbwdMBot20{
	margin-bottom: 20px;
}
.bbwdMBot30{
	margin-bottom: 30px;
}
.bbwdMBot40{
	margin-bottom: 40px;
}
.bbwdMBot50{
	margin-bottom: 50px;
}
.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%;
}
.bbwdWidthMaxCon{
	width: max-content;
}

.bbwdRelPosition{
	position: relative;
}

.bbwdCloseBtn{
	display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 100px;
    padding: 0;
    width: 20px;
    height: 20px;
    border: none;
}
/** end custom classes  **/

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

/*===================================
 *          Tablet
 * ================================*/
@media only screen and (max-width: 1024px) {
	.bbwdTab100W{
		width: 100% !important;
	}
}

/*===================================
 *          mobile
 * ================================*/
@media only screen and (max-width: 767px) {
	.bbwdMobCol{
		flex-flow: column !important;
	}
}


/* .bbwdMobCol */


/**** Style Overides ****/
.bbwdHideMe{
	display: none !important;
}
.bbwdNoSpace{
	padding: 0 !important;
	margin: 0 !important;
}
.bbwdOverHide{
	overflow: hidden;
}
.bbwdOverVis{
	overflow: visible;
}
.bbwdOverXScl{
	overflow-x: scroll;
}
.bbwdOverYScl{
	overflow-x: scroll;
}
.bbwdNoBorder{
	border: none !important;
}
.bbwdHovPointer:hover{
	cursor: pointer !important;
}