.gvt360-module {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--gvt360-radius, 0);
    background: #111;
}

.gvt360-full-bleed {
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
}

.gvt360-viewer,
.gvt360-message {
    width: 100%;
    height: var(--gvt360-height, 700px);
}

.gvt360-viewer {
    background: #111;
}

.gvt360-hint {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    max-width: calc(100% - 140px);
    padding: 7px 13px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, .58);
    font: 500 13px/1.25 Arial, sans-serif;
    text-align: center;
    pointer-events: none;
    opacity: .88;
    transition: opacity .35s ease;
}

.gvt360-module:hover .gvt360-hint,
.gvt360-module:focus-within .gvt360-hint {
    opacity: 0;
}

.gvt360-message,
.gvt360-error {
    display: grid;
    place-items: center;
    box-sizing: border-box;
    padding: 24px;
    color: #fff;
    background: #202020;
    text-align: center;
}

.gvt360-viewer .pnlm-load-box {
    color: #fff;
    background-color: rgba(0, 0, 0, .65);
}

@media (max-width: 1024px) {
    .gvt360-viewer,
    .gvt360-message {
        height: var(--gvt360-height-tablet, 560px);
    }
}

@media (max-width: 767px) {
    .gvt360-viewer,
    .gvt360-message {
        height: var(--gvt360-height-mobile, 430px);
    }
    .gvt360-hint {
        bottom: 12px;
        max-width: calc(100% - 90px);
        font-size: 12px;
    }
}

