.htmlAnnotation {
pointer-events: all;
user-select: none;
position: absolute;
background-color: rgba(146, 245, 95, 0.467);
transition: opacity 0.5s;
&:hover {
cursor: pointer;
}
}
.loading-spinner {
display: flex;
justify-content: center;
align-items: center;
height: 90%;
width: 93%;
left: 10;
font-size: 20px;
font-weight: bold;
color: #0b0a0a;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}