[data-booth]:not([data-booth=""]) {
    cursor: pointer;
}


#booth-plan-container {
    position: relative;
}
#booth-marker {
    position: absolute;
    border: 3px solid rgba(255, 0, 0, 0.75);
    animation-fill-mode: both;
    animation-name: blink;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    border-radius: 50%;
}

@keyframes blink {
    20%, 100% {
        opacity: 0;
        transform: scale(2);
    }
    0% {
        opacity: 0;
        transform: scale(.75);
    }
    10% {
        opacity: 1;
    }
}
