model-viewer{
    position : absolute;
    width : 100%;
    height  :100%;
    background-color: #eeeeee;
}

#fullscreen-viewer{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display : none;
}

:host([data-js-focus-visible]:focus:not(.focus-visible)),
:host([data-js-focus-visible]) :focus:not(.focus-visible) {
  outline: none;
}

.Hotspot {
    background: #36A243;
    border-radius: 24px;
    border: 2px solid #fff;;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    cursor: pointer;
    height: 24px;
    position: relative;
    transition: opacity 0.3s;
    width: 24px;
    min-width:0px;
    min-height: 0px;
    font-size: 2px;
}

.Hotspot:not([data-visible]) {
    background: transparent;
    border: 2px solid #fff;
    box-shadow: none;
    pointer-events: none;
}

.Hotspot:focus {
    border: 2px solid #fff;
    outline: none;
}

.Hotspot>* {
    opacity: 1;
    transform: translateY(-50%);
}

.HotspotAnnotation {
    background: #fff;
    border: 1.6px solid #36A243;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    left: calc(100% + 10px);
    top: 50%;
    max-width: 300px;
    position: absolute;
    width: max-content;
    display: none;
}

.annotationText{
    padding: 1em 2em;
    color: rgba(0, 0, 0, 0.8);
    font-family: Montserrat, Roboto, sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-transform: none;
    text-align: left;
}

.Hotspot:not([data-visible])>* {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-50% + 4px));
    transition: transform 0.3s, opacity 0.3s;
}

.annotationTitle{
    font-size: 18px;
    text-transform: uppercase;
}

.line{
    width: 4.5em;
    height: 0px;
    border-bottom: 4px solid #36A243;
    margin-bottom: 30px;
}

#closeAnnotation
{
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    background: #36A243;
    border: 3px solid #2DA343;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

#closeAnnotation:hover
{
    background: white;
}

#closeAnnotation:hover *
{
    stroke: #4E4E4E;
}