.three-d-tour__container {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.three-d-tour__container iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    overflow: hidden;
}

.three-d-tour__shield {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    transition: opacity 0.25s ease;
}

.three-d-tour__container--active .three-d-tour__shield {
    opacity: 0;
    pointer-events: none;
}

.three-d-tour__shield-hint {
    max-width: 280px;
    padding: 12px 18px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    border-radius: 8px;
    pointer-events: none;
}

/* На десктопе плашку не показываем */
@media (min-width: 1025px) {
    .three-d-tour__shield {
        display: none;
    }
}
