.videoContainer {
    /*position: relative;*/
    cursor: pointer;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    /*transform: translate(-50%, -50%);*/
    width: 100%;
    height: 100%;
}

.videoContainer video {
    width: 100%;
    height: 100%;
}

.videoContainer .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    text-align: center;
}

.videoContainer.playing .icon {
    display: none;
}

.videoContainer.playing:hover .icon {
    display: block;
}

.videoContainer.playing .icon:after {
    content: '\f04c';
}

.videoContainer .icon:after {
    content: '\f04b';
    line-height: 60px;
    font-size: 30px;
    font-family: FontAwesome;
    color: rgba(0, 0, 0, 0.3);
}
