﻿/* Add your custom styles here */

body, head {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.hotspot {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    border: none;
    background-color: #b9b9de;
    box-sizing: border-box;
    text-align: center;

}

.hotspot[slot="hotspot-actionOne"] {
    --min-hotspot-opacity: 0;
    background-color: red;
}

.hotspot[slot="hotspot-actionTwo"]:not([data-visible]) {
    background-color: blue;
    border: 3px solid blue;
}

.hotspot[slot="hotspot-actionThree"]:not([data-visible]) {
    background-color: green;
    border: 3px solid green;
}

.annotation {
    background-color: #888888;
    position: absolute;
    transform: translate(10px, 10px);
    border-radius: 10px;
    padding: 10px;
}

/* This keeps child nodes hidden while the element loads */
:not(:defined) > * {
    display: none;
}

.hidden {
    display: none;
}
