.video-card {
  display: block;
  width: 100%;
}

.function-play-toggle {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(7, 8, 11, 0.72);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  transition: opacity 0.25s, transform 0.25s, background 0.25s;
}

.function-play-toggle span {
  font-size: 22px;
  margin-left: 4px;
}

.function-play-toggle:hover,
.function-play-toggle:focus-visible {
  background: var(--pink);
  transform: translate(-50%, -50%) scale(1.07);
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.function-theater.playing .function-play-toggle {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 600px) {
  .function-play-toggle {
    width: 62px;
    height: 62px;
  }

  .function-now {
    bottom: 62px;
  }
}
