.bwddb-btn-left {
	justify-content: left;
}

.bwddb-btn-right {
	justify-content: right;
}

.bwddb-border-style-solid {
	border-style: solid !important;
}

.bwddb-border-style-dashed {
	border-style: dashed !important;
}

.bwddb-border-style-dotted {
	border-style: dotted !important;
}

.bwddb-border-style-double {
	border-style: double !important;
}

.bwddb-btn-sec-button {
	background: #f04336;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	letter-spacing: 1.5px;
	margin-bottom: 0;
	padding: 16px 30px;
	text-align: center;
	text-transform: capitalize;
	transition: all .3s ease 0s;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.bwddb-second-but {
	margin-left: 10px;
	background: #0a303a;
}

.bwddb-btn-sec-button::before {
	content: "";
	position: absolute;
	transition-duration: 800ms;
	width: 200%;
	height: 200%;
	top: 110%;
	left: 50%;
	background: #0a303a;
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: -1;
}

.bwddb-second-but::before {
	background: #f04336;
}

.bwddb-btn-sec-button:hover:before {
	top: -40%;
}

.bwddb-btn-sec-button:hover {
	color: #fff;
}