﻿.productvideo img {
    width: 100% !important;
    transition: all 0.6s ease-in !important;
}

.video-button:hover .productvideo img {
opacity: 0.6 !important;
transform: scale3d(1.1,1.1,1) !important;
}
.video-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    color: #000000;
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    padding-left: 0px;
    transform: translate(-50%, -50%);
}
.video-button .play-button {
    font-size: 30px;
    width: 40%;
    height: 40%;
    background-image: url("/images/play.png") !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
   
}
.video-button:hover .play-button {

    background-image: url("/images/play-hover.png") !important;
   
}


.video-button:hover {
    background: #FF3A46;
    transition: all .3s ease-in-out;
}
