.twve-video-wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #000;
	line-height: 0;
}
.twve-video {
	display: block;
	width: 100%;
	height: auto;
	background: #000;
}
.twve-play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	width: 72px;
	height: 72px;
	margin: 0;
	padding: 0;
	transform: translate(-50%, -50%);
	border: 0;
	border-radius: 50%;
	background: #0095F4;
	box-shadow: none;
	cursor: pointer;
	transition: transform .18s ease, opacity .18s ease;
}
.twve-play:hover,
.twve-play:focus {
	transform: translate(-50%, -50%) scale(1.06);
	outline: 2px solid #fff;
	outline-offset: 3px;
}
.twve-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	transform: translate(-42%, -50%);
	border-top: 13px solid transparent;
	border-bottom: 13px solid transparent;
	border-left: 20px solid #fff;
}
.twve-video-wrap.is-playing .twve-play {
	opacity: 0;
	pointer-events: none;
}
@media (max-width: 600px) {
	.twve-play {
		width: 58px;
		height: 58px;
	}
	.twve-play-icon {
		border-top-width: 10px;
		border-bottom-width: 10px;
		border-left-width: 16px;
	}
}
