@keyframes loadingSpin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*
	p {
		font-size: 1.4em;

		//	Tablet
	    .minWidth(768px, {
	    	font-size: 1.6em;
	    });

	    //	Desktop
	    .minWidth(1280px, {
	    	font-size: 1.8em;
	    });
	}
*/
.EditorWidget .c-video:after {
  content: 'Video';
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 1.4rem;
  background: #9B9B9B;
  color: white;
  display: block;
  padding: 0.5rem 1rem;
}
.widget--video {
  text-align: center;
}
.c-video__link {
  display: block;
  position: relative;
  margin-bottom: 1.5rem;
}
.c-video__link:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222222;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}
.c-video__link:hover:after {
  opacity: 1;
}
.c-video__link.is-playing:before,
.c-video__link.is-playing:after {
  display: none;
  opacity: 0;
}
.c-video__link.is-loading:before {
  opacity: 1;
  background-color: transparent;
  transition: opacity 0.2s ease;
}
.c-video__link.is-fading .c-video__iframe {
  position: absolute;
  top: 0;
  left: 0;
}
.c-video__img {
  display: block;
  width: 100%;
  height: auto;
}
.c-video__link .i-videoplay {
  position: absolute;
  opacity: 0.5;
  top: 50%;
  left: 50%;
  font-size: 6rem;
  fill: white;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  pointer-events: none;
}
.c-video__link:hover .i-videoplay,
.c-video__link:focus .i-videoplay,
.c-video__link:active .i-videoplay {
  opacity: 1;
}
.c-video__link.is-playing .i-videoplay {
  display: none;
}
