.dc-autoplay-toggle {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.75);
  color: #333;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
}
.dc-autoplay-toggle:hover {
  background: #fff;
}
.dc-autoplay-toggle:focus {
  outline: 0;
  box-shadow: 0 0 0 3px #19f;
}
.dc-autoplay-toggle-text {
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
}
.dc-autoplay-toggle::before {
  content: "\275A\275A";
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
}
.dc-autoplay-toggle.is-paused::before {
  content: "\25B6";
  margin-left: 2px;
}
