.text-left {
	margin-right: auto;
}

.text-right {
	margin-left: auto;
}

.bwd-popUpBody {
	transform: translate(-50%, -50%);
	padding: 10px;
	position: fixed;
	top: 50%;
	left: 50%;
	background-color: #121212;
	max-width: 900px;
	width: 95vw;
	max-height: 500px;
	height: 95vh;
	z-index: 9999;
	border-radius: 5px;
	cursor: pointer;
	margin-top: 25px;
}

.bwd-popUpBody.bwd-style1 {
	transform-origin: top;
	animation: popUpBodyAnimateZoom .4s ease-in-out 1;
}

.bwd-popUpBody.bwd-style2 {
	transform-origin: right;
	animation: popUpBodyAnimateZoom .4s ease-in-out 1;
}

.bwd-popUpBody.bwd-style3 {
	transform-origin: bottom;
	animation: popUpBodyAnimateZoom .4s ease-in-out 1;
}

.bwd-popUpBody.bwd-style4 {
	transform-origin: left;
	animation: popUpBodyAnimateZoom .4s ease-in-out 1;
}

.bwd-popUpBody.bwd-style5 {
	transform-origin: top;
	animation: popUpBodyAnimateY .4s ease-in-out 1;
}

.bwd-popUpBody.bwd-style6 {
	transform-origin: right;
	animation: popUpBodyAnimateY .4s ease-in-out 1;
}

.bwd-popUpBody.bwd-style7 {
	transform-origin: bottom;
	animation: popUpBodyAnimateY .4s ease-in-out 1;
}

.bwd-popUpBody.bwd-style8 {
	transform-origin: left;
	animation: popUpBodyAnimateY .4s ease-in-out 1;
}

.bwd-popUpBody.bwd-style9 {
	transform-origin: top;
	animation: popUpBodyAnimateX .4s ease-in-out 1;
}

.bwd-popUpBody.bwd-style10 {
	transform-origin: right;
	animation: popUpBodyAnimateX .4s ease-in-out 1;
}

.bwd-popUpBody.bwd-style11 {
	transform-origin: bottom;
	animation: popUpBodyAnimateX .4s ease-in-out 1;
}

.bwd-popUpBody.bwd-style12 {
	transform-origin: left;
	animation: popUpBodyAnimateX .4s ease-in-out 1;
}

.bwd-popUpBody iframe {
	border-radius: 5px;
	overflow: hidden;
}

.bwd-popup-before {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(34, 34, 34, .7);
	z-index: 999;
}

.bwd-video-wrapper {
	width: 100%;
	height: 100%;
}

.bwd-popup-cross-btn {
	font-size: 22px;
	color: #dddcdc;
	transition: .3s;
	bottom: calc(100% + 8px);
	right: 10px;
	position: absolute;
	line-height: 1;
}

.bwd-popup-cross-btn:hover {
	color: #fff;
}

video {
	height: 100%;
	width: 100%;
}

.bwdvp-btn {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 100px;
	width: 100px;
	border-radius: 50%;
	transition: all .5s ease .1s;
	font-size: 35px;
}

.bwdvp-btn i {
	display: inline-block;
}

.bwdvp-btn-1 {
	background: transparent;
	transition: .5s;
	border: 2px solid #f00;
	box-shadow: 0 10px 15px rgba(255, 0, 0, .37);
}

.bwdvp-btn-1:hover {
	background: #fff;
	animation: bwdvp-btn1-bounce .7s ease-in-out 0s 1;
}

.bwdvp-btn-1 i {
	color: #fff;
	transition: .5s;
	z-index: 2;
}

.bwdvp-btn-1:hover i {
	color: #f00;
}

.bwdvp-btn-1.bwdvp-btn::before {
	content: "";
	position: absolute;
	z-index: -1;
	background: #f00;
	border-radius: inherit;
	transition: .5s;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.bwdvp-btn-1:hover::before {
	transform: rotateY(90deg);
}

.bwdvp-btn-2 {
	color: rgba(244, 6, 246, .36);
	background: #fff;
}

.bwdvp-btn-2 i {
	color: rgba(246, 6, 246, .6);
}

.bwdvp-btn-2.bwdvp-btn::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: -1;
	background: rgba(244, 6, 246, .36);
	border-radius: inherit;
	transform: scale(1.5);
	animation: btn-pulse-1 2s linear 0s infinite alternate;
}

.bwdvp-btn-2::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: -1;
	background: rgba(244, 6, 246, .36);
	border-radius: inherit;
	transform: scale(1.5);
	animation: btn-pulse-2 2s linear 0s infinite alternate;
}