.m-centralVideo {
	position: relative;
	text-align: center;
}

.m-centralVideo__control {

	position: absolute;

	margin: 0;

	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.m-centralVideo__gif {
	display: none;
}

.m-centralVideo__control.-paused .m-centralVideo__gif {

	display: block;
	position: absolute;

	margin: 0;

	top: 50%;
	left: 50%;

	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);

	width: 72px;
	height: 72px;

	border-radius: 50%;

	font-size: 22px;
	font-style: normal;

	line-height: 72px;

	text-align: center;

	background-color: rgba(0, 0, 0, 0.8);
	color: #FFFFFF;

	cursor: default;

	-webkit-touch-callout: none; /* iOS Safari */
	  -webkit-user-select: none; /* Safari */
	     -moz-user-select: none; /* Firefox */
	      -ms-user-select: none; /* Internet Explorer/Edge */
	          user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome and Opera */
}