/*
 * Cross-browser play marks. Every visible triangle is drawn in CSS so
 * mobile browsers cannot substitute an emoji or an icon-font glyph.
 */
.sc-home-play,
.sc-home-work-play,
.sc-post-play {
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: 0 !important;
}

/* The latest-update video mark belongs in the exact center of its poster. */
.sc-home-update-media .sc-home-play {
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.sc-home-update-media img.is-unavailable {
  visibility: hidden;
}

.sc-home-play::before,
.sc-home-work-play::before,
.sc-post-play::before {
  box-sizing: border-box !important;
  display: block !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 0 0 3px !important;
  border-top: 8px solid transparent !important;
  border-right: 0 solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 12px solid #fff !important;
  background: transparent !important;
  content: "" !important;
}

.sc-css-play-icon {
  box-sizing: border-box !important;
  display: inline-block !important;
  flex: 0 0 auto;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  border-top: 5px solid transparent !important;
  border-right: 0 solid transparent !important;
  border-bottom: 5px solid transparent !important;
  border-left: 8px solid #fff !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  vertical-align: middle;
}

.sc-watch-video-wrap {
  position: relative;
}

.sc-watch-play-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(242, 88, 121, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.sc-watch-play-button::before {
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
  content: "";
}

.sc-watch-play-button[hidden] {
  display: none !important;
}

.sc-watch-play-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.92);
  outline-offset: 4px;
}

@media (max-width: 767.98px) {
  .sc-watch-play-button {
    width: 58px;
    height: 58px;
  }

  .sc-watch-play-button::before {
    margin-left: 4px;
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }
}
