.dd-zoom-hint {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    color: black;
    font-size: 1.875rem;
    font-weight: 500;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.dd-zoom-hint.dd-visible {
    opacity: 1;
}

@media screen and (max-width: 767.98px) {
	.dd-zoom-hint {
		font-size: 1.5rem;
	}
}