:host {
  position: relative;
  display: block;
}

.ux-video__play-button {
  background-color: rgba(255, 255, 255, 0.7);
  border: 0;
  border-radius: 40px;
  cursor: pointer;
  height: 80px;
  left: 50%;
  margin: auto;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
  width: 80px;
  z-index: 1;
}
@media only screen and (width <= 767px) {
  .ux-video__play-button {
    height: 60px;
    top: 47%;
    width: 60px;
  }
}
@media only screen and (width <= 567px) {
  .ux-video__play-button {
    height: 48px;
    top: 48%;
    width: 48px;
  }
}
.ux-video__play-button:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
.ux-video__play-button--inactive {
  opacity: 0;
  pointer-events: none;
}
.ux-video__play-button--controls-active {
  transition-delay: top 500ms;
}
@media only screen and (width <= 567px) {
  .ux-video__play-button--controls-active {
    top: 40%;
  }
}
.ux-video__play-icon {
  fill: #131313;
  font-size: 26px;
  left: calc(50% + 3px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (width <= 767px) {
  .ux-video__play-icon {
    font-size: 22px;
  }
}
@media only screen and (width <= 567px) {
  .ux-video__play-icon {
    font-size: 18px;
    left: calc(50% + 2px);
  }
}
.ux-video__play-icon[name=reset] {
  font-size: 24px;
  left: 50%;
  top: 51%;
}
@media only screen and (width >= 568px) {
  .ux-video__play-icon[name=reset] {
    font-size: 30px;
  }
}
@media only screen and (width >= 768px) {
  .ux-video__play-icon[name=reset] {
    font-size: 35px;
  }
}

::slotted(video) {
  display: block;
  max-width: 100%;
  width: 100%;
}
::slotted(video):focus {
  outline: none;
}
::slotted(video)::-webkit-media-controls-overlay-play-button {
  opacity: 0;
}