.tour-arrow-container {
    position: absolute;
    pointer-events: none;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: none;
}

.tour-breakpoint-detectors {
    position: absolute;
}

.tour-arrow-container.visible {
    opacity: 1;
}

.tour-arrow {
    position: absolute;
    pointer-events: none;
    transition: clip-path 0.3s ease-in-out;
}

.tour-arrow.curved {
    clip-path: polygon(0% 0%, 50% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
}

.tour-arrow.straight {
    clip-path: polygon(0% 0%, 1% 0%, 1% 100%, 0% 100%);
}

.tour-arrow-container.visible .tour-arrow.curved {
    clip-path: polygon(0% 0%, 50% 0%, 50% 50%, 100% 50%, 100% 100%, 0% 100%);
}

.tour-arrow-container.visible .tour-arrow.straight {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.tour-arrow-breakpoint-detector {
    position: absolute;
    z-index: -1000;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    display: none;
}
