.vc-offset-gallery-wrapper {
    display: grid;
    position: relative;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    height: 100%;
    gap: 2rem;
    min-height: 50vh;
}

.draggable-content {
    /* border: 1px solid white; */
    transform-origin: center center;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: relative;
}

.draggable-content.youtube {
    border: 1px solid white;
}

.vc-offset-gallery-instructions {
    position: fixed;
    z-index: 99998;
    background: rgba(0,0,0,0.75);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.vc-offset-gallery-instructions p {
    font-family: "VCR OSD Mono", Sans-serif;
    font-size: 1.5rem;
}

@media only screen and (max-width: 768px) {
    .vc-offset-gallery-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .vc-offset {
        display: none;
    }

    .draggable-content {
        transform: translateX(0) translateY(0) !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
    }

    .draggable-content iframe.horizontal {
        min-height: 200px;
    }

    .draggable-content iframe.vertical {
        min-height: 603px;
    }
}

.vc-youtube-thumbnail-wrapper {
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vc-youtube-thumbnail-wrapper:hover {
    cursor: pointer;
}
.vc-youtube-play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.5);
}

.vc-youtube-video-name-wrapper {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-family: "VCR OSD Mono", Sans-serif;
    font-size: 1rem;
}

.vc-offset-gallery-preloader.active-preloader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: black;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    font-family: 'VCR OSD Mono';
    font-size: 1.5rem;
    letter-spacing: .2em;
}