html,
body {
    overflow-x: hidden !important;
}

html.vocto-vhos-freeze,
body.vocto-vhos-freeze {
    overflow: hidden !important;
    height: 100% !important;
    touch-action: none;
}

.vocto-vhos {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    background: var(--vocto-vhos-bg, #000);
    overflow: visible;
    position: relative;
}

.vocto-vhos-content-section {
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 100svh;
    background: var(--vocto-vhos-bg, #000);
    display: flex;
    flex-direction: column;
    gap: var(--vocto-vhos-gap, 0px);
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
    overflow: visible;
}

.vocto-vhos-image-block {
    position: relative;
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 100svh;
    height: 100svh;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
    overflow: hidden;
    background: var(--vocto-vhos-bg, #000);
}

.vocto-vhos-image {
    display: block !important;
    width: 100vw !important;
    height: 100svh !important;
    max-width: none !important;
    object-fit: var(--vocto-vhos-image-fit, cover);
    object-position: center var(--vocto-vhos-this-image-pos, 50%);
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.vocto-vhos-video-layer {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    width: 100vw;
    height: 100svh;
    background: #000;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    transition-property: transform;
    transition-timing-function: linear;
    will-change: transform;
}

.vocto-vhos-video-layer.vocto-vhos-video-up {
    transform: translate3d(0, -101%, 0);
}

.vocto-vhos-video {
    display: block !important;
    width: 100vw !important;
    height: 100svh !important;
    max-width: none !important;
    object-fit: cover;
    object-position: center center;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: #000;
    pointer-events: none !important;
    -webkit-user-select: none;
    user-select: none;
}

.vocto-vhos-video::-webkit-media-controls,
.vocto-vhos-video::-webkit-media-controls-enclosure,
.vocto-vhos-video::-webkit-media-controls-panel,
.vocto-vhos-video::-webkit-media-controls-play-button,
.vocto-vhos-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none !important;
    opacity: 0 !important;
}

.vocto-vhos-button-wrap {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10;
    padding-left: 22px;
    padding-right: 22px;
    text-align: center;
    line-height: normal;
}

.vocto-vhos-button-bottom .vocto-vhos-button-wrap {
    bottom: max(30px, env(safe-area-inset-bottom));
}

.vocto-vhos-button-center .vocto-vhos-button-wrap {
    top: 50%;
    transform: translateY(-50%);
}

.vocto-vhos-button-top .vocto-vhos-button-wrap {
    top: max(30px, env(safe-area-inset-top));
}

.vocto-vhos-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 370px;
    min-height: 54px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--vocto-vhos-button-bg, #fff) !important;
    color: var(--vocto-vhos-button-color, #000) !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none !important;
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
    -webkit-tap-highlight-color: transparent;
}

.vocto-vhos-desktop-disabled {
    display: none !important;
}

@media (min-width: 768px) {
    .vocto-vhos[data-mobile-only="true"] {
        display: none !important;
    }
}