.video-icon-container {
    height: 80px;
    width: 80px;
    display: block;
    content: ' ';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 1001; /* 1 more than the video */
}
.video-icon-background {
    height: inherit;
    width: inherit;
    display: block;
    position: absolute;
    background-color: black;
    opacity: 0.65;
    border-radius: 50%;
}
.video-icon {
    position: absolute;
    top: 3px;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 38px;
    background-color: white;
}
.play-video-icon-image {
    left: 6px;
    -webkit-mask: url('/images/triangle-play.svg') no-repeat center;
    mask: url('/images/triangle-play.svg') no-repeat center;
}
.pause-video-icon-image {
    left: 0;
    -webkit-mask: url('/images/pause.svg') no-repeat center;
    mask: url('/images/pause.svg') no-repeat center;
}
