// Canvas for putting and handling image
// ==================================================

.viewer-canvas {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  overflow: hidden;

  > img {
    width: auto;
    height: auto;
    max-width: 90% !important;
    margin: 15px auto;
  }

  > video {
    width: 100%;
    margin-top: 25px;
    z-index: 9991;
    cursor: pointer;
  }
}

.video-tip {
    position: absolute;
    width: 80px;
    height: 30px;
    line-height: 30px;
    background-color: #fff;
    color: #000;
    left: 50%;
    margin-left: -40px;
    top: 90px;
    font-size: 14px;
    text-align: center;
    border-radius: 19px;
    opacity: 0.8;
    cursor: default;
    display: none;
}
