.widget.c-video.c-video-template-1 .widget-element {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0;
    text-align: center;
    cursor: pointer;

    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 34px rgba(0,0,0,0.3);
}
.widget.c-video.c-video-template-1 .widget-video-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 0;
    text-align: center;
    width: 120px;
    height: 120px;
    cursor: pointer;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.widget.c-video.c-video-template-1 .widget-video-button-wrapper svg {
    display: inline-block;
    width: auto;
    height: auto;
    max-width: 100px;
    max-height: 100px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.widget.c-video.c-video-template-1 .widget-element:hover svg{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

@media all and (max-width: 500px) {
    .widget.c-video.c-video-template-1 .widget-video-button-wrapper {
        width: 70px;
        height: 70px;
    }
    .widget.c-video.c-video-template-1 .widget-video-button-wrapper svg {
        max-width: 70px;
        max-height: 70px
    }
}