/*
product youtube
*/

.box-video{
    position: relative;
    max-width:1210px;
    margin:0 auto 20px auto;
    cursor: pointer;
    overflow: hidden;
}

.box-video .bg-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
}

.box-video .video-container{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow:hidden;
}

.box-video .video-container iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.box-video .bt-play {
    position: absolute;
    top:50%;
    left:50%;
    margin:-50px 0 0 -43px;
    display: inline-block;
	background:url(../img/play_button.png)left top no-repeat;
	background-size:100%;
    width: 87px;
    height: 101px;
    text-indent: -999em;
    cursor: pointer;
    z-index:2;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.box-video:hover .bt-play {
    transform: scale(1.1);
}

.box-video.open .bg-video{
    visibility: hidden;
    opacity: 0;

    -webkit-transition: all .6s .8s;
    transition: all .6s .8s;
}
.box-video.open .video-container{
    opacity: 1;
    -webkit-transition: all .6s .8s;
    transition: all .6s .8s;
}