/* Video Modal Styles */
.videoWrapper {
    padding: 50px 0;
    text-align: center;
}

#video-player > .container,
#videoEmbed,
.videoWrapper,
.modal-body {
    width: 100%;
    height: 100%;
}

.modal-backdrop.in {
    z-index: -1;
    opacity: 0.8;
}

#video-player button {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    color: #fff;
    background: none;
    border: none;
}
/* Video Link/Thumbnail Styles */
.video-link > div {
    position: relative;
}

    .video-link > div:after {
        content: ' ';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../../images/th-TH/play.png') center no-repeat;
        background-size: 25% auto;
        -webkit-transform: scale3d(0.8,0.8,1);
        transform: scale3d(0.8,0.8,1);
        -webkit-transition: all ease-out .5s;
        transition: all ease-out .5s;
    }

    .video-link > div:before {
        content: ' ';
        visibility: hidden;
        background: url('../../images/th-TH/play-hover.png') center no-repeat;
    }

.video-link:hover > div:before {
    visibility: visible;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.2);
    -webkit-transition: all ease-out .5s;
    transition: all ease-out .5s;
}

.video-link:hover > div:after {
    background: url('../../images/th-TH/play-hover.png') center no-repeat;
    background-size: 25% auto;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
}
