.cgVideoWrapper{
    
    padding: 0;
    margin: 0;
    position: relative;
    line-height: 0;
    z-index: 1;
}
.cgVideoWrapper video{
    cursor: pointer;
    z-index: 3;
}
.cgVideoWrapper .cgVideoOverlay{
    background-color: rgba(0,0,0,0.1);
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    z-index: 4;
}

.cgVideoWrapper .cgVideoOverlay A{
    line-height: 100px;
    width: 250px;
    height: 100px;
    background-color: rgba(30,30,30,0.9);
    font-size: 20px;
    /* Center vertically and horizontally */
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -125px; /* apply negative top and left margins to truly center the element */
    text-transform: uppercase;
    border-radius: 10px;
    border: 1px solid #555;
    font-weight: 400 !important;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    color: #FFF !important;
}

.cgVideoWrapper .cgVideoOverlay A:hover{
    background-color: rgba(0,0,0,0.8);
}

.cgVideoWrapper .cgVideoOverlay A I{
    font-size: 200%;
    position: relative;
    top: 5px;
}

.cgVideoWrapper .cgVideoOverlay span{
    line-height: 40px;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.5);
    box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    font-size: 20px;
    color: white;
    border-radius: 10px;
    /* Center vertically and horizontally */
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -65px 0 0 100px; /* apply negative top and left margins to truly center the element */
    cursor: pointer;

}

.cgVideoWrapper .cgVideoOverlay span:hover{
    background-color: rgba(255,255,255,0.7);
}