:root {
  --color-primary: #2C2E35;
  --color-primary-inverted: #fff;
  --background-color-base: #fff;
  --background-color-base-inverted: #2C2E35;
  --color-base: #2C2E35;
}

.play-button {
  width: 90px;
  height: 90px;
  background-color: var(--background-color-base);
  color: var(--color-primary);
  border-radius: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  padding: 0;
  display: flex;
  position: relative;
}
.play-button:before {
  content: "";
  -webkit-mask-image: url("/themes/custom/zensource_front_end/images/play.svg");
          mask-image: url("/themes/custom/zensource_front_end/images/play.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-base);
  width: 50%;
  height: 50%;
  transition: 0.25s ease;
}
.is-tabbing .play-button:focus {
  background-color: var(--background-color-base-inverted);
  color: var(--color-primary-inverted);
}
.is-tabbing .play-button:focus:before {
  background-color: var(--background-color-base);
}
@media (hover: hover) {
  .play-button:hover {
    background-color: var(--background-color-base-inverted);
    color: var(--color-primary-inverted);
  }
  .play-button:hover:before {
    background-color: var(--background-color-base);
  }
}
/*# sourceMappingURL=image-video.css.map */
