﻿video-player {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

button {
    
}



    button.active {
        
        
    }

    button.pause {
       
        
    }






.playvideo.active {
    transition: all 0.2s;
    opacity: 0.75;
    display: inline-block;
    width: 4px;
    height: 1em;
    border-right: calc(0.5em - 2px) solid white;
    border-left: calc(0.5em - 2px) solid white;
    border-top: 0;
    border-bottom: 0;
    background-color: transparent;
    cursor: pointer;
    width: 0;
    height: 0;
    border-right: 0;
    border-left: 1em solid white;
    border-top: 0.5em solid transparent;
    border-bottom: 0.5em solid transparent;
}

.playvideo.pause {
  
    transition: all 0.2s;
    opacity: 0.75;
    display: inline-block;
    width: 0px;
    padding-right: 0px;
    height: 1em;
    border-right: calc(0.5em - 2px) solid white;
    border-left: calc(0.5em - 2px) solid white;
    border-top: 0;
    border-bottom: 0;
    background-color: transparent;
    cursor: pointer;
}