.vbox-overlay *,
.vbox-overlay ::before,
.vbox-overlay ::after {
    backface-visibility: hidden;
    box-sizing: border-box;
}

.vbox-overlay {
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: auto;
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 9999;
    opacity: 0;
    overflow: hidden auto;
}

.vbox-preloader {
    position: fixed;
    width: 32px;
    height: 32px;
    left: 50%;
    top: 50%;
    margin-left: -16px;
    margin-top: -16px;
    background-image: url("preload-circle.png");
    text-indent: -100px;
    overflow: hidden;
    animation: 1.4s steps(18) 0s infinite normal none running playload;
}

@-webkit-keyframes playload {
    0% {
        background-position: 0px center;
    }
    100% {
        background-position: -576px center;
    }
}

@keyframes playload {
    0% {
        background-position: 0px center;
    }
    100% {
        background-position: -576px center;
    }
}

.vbox-close {
    cursor: pointer;
    position: fixed;
    top: -1px;
    right: 0px;
    width: 46px;
    height: 40px;
    padding: 10px 20px 10px 0px;
    display: block;
    background: url("close.gif") 10px center no-repeat rgb(22, 22, 23);
    color: rgb(255, 255, 255);
    text-indent: -100px;
    overflow: hidden;
}

.vbox-next,
.vbox-prev {
    box-sizing: content-box;
    cursor: pointer;
    position: fixed;
    top: 50%;
    color: rgb(255, 255, 255);
    width: 30px;
    height: 170px;
    margin-top: -85px;
    text-indent: -100px;
    border: solid transparent;
    overflow: hidden;
}

.vbox-prev {
    left: 0px;
    border-width: 0px 30px 0px 10px;
    background: url("prev.gif") center center no-repeat;
}

.vbox-next {
    right: 0px;
    border-width: 0px 10px 0px 30px;
    background: url("next.gif") center center no-repeat;
}

.vbox-title {
    width: 100%;
    height: 40px;
    float: left;
    text-align: center;
    line-height: 28px;
    font-size: 12px;
    color: rgb(255, 255, 255);
    padding: 6px 40px;
    overflow: hidden;
    background: rgb(22, 22, 23);
    position: fixed;
    display: none;
    top: -1px;
    left: 0px;
}

.vbox-num {
    cursor: pointer;
    position: fixed;
    top: -1px;
    left: 0px;
    height: 40px;
    color: rgb(255, 255, 255);
    overflow: hidden;
    line-height: 28px;
    font-size: 12px;
    padding: 6px 10px;
    background: rgb(22, 22, 23);
    display: none;
}

.vbox-inline {
    width: 420px;
    height: 315px;
    padding: 10px;
    background: rgb(255, 255, 255);
    text-align: left;
    margin: 0px auto;
    overflow: auto;
}

.venoframe {
    border: none;
    width: 960px;
    height: 720px;
}

@media (max-width: 992px) {
    .venoframe {
        width: 640px;
        height: 480px;
    }
}

@media (max-width: 767px) {
    .venoframe {
        width: 420px;
        height: 315px;
    }
}

@media (max-width: 460px) {
    .vbox-inline {
        width: 100%;
    }
    .venoframe {
        width: 100%;
        height: 260px;
    }
}

.vbox-open {
    overflow: hidden;
}

.vbox-container {
    position: relative;
    background: rgb(0, 0, 0);
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 15px;
}

.vbox-content {
    text-align: center;
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.vbox-container img {
    max-width: 100%;
    height: auto;
}