body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "roboto", sans-serif;
    overflow: hidden;
}

.full-screen {
    width: 100vw;
    height: 100vh;
    position: absolute;
    overflow: hidden;
}

.info-layer-thumbnail {
    pointer-events: all;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(35px);
    height: 3rem;
    width: 3rem;
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    left: -1.5rem;
    top: -1.5rem;
    border: 5px solid white;
}

.violet {
    fill: #6b66d0;
}

.selected.violet {
    background-color: #6b66d0;
    border: 5px solid #6b66d0;
}

.red {
    fill: #fd7575;
}

.selected.red {
    background-color: #fd7575;
    border: 5px solid #fd7575;
}

.selected {
    backdrop-filter: none;
    fill: white;
}

.new-node-mark {
    background-color: black;
    color: white;
    position: absolute;
    translate: 1.5rem -1rem;
    width: 1.3rem;
    text-align: center;
    border-radius: 100%;
    border: 2px solid black;
    font-weight: bold;
}

/* The slider itself */
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    position: absolute;
    z-index: 11;
    bottom: 0;
}

/* Mouse-over effects */
.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #04AA6D; /* Green background */
    cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #04AA6D; /* Green background */
    cursor: pointer; /* Cursor on hover */
}

#viewer-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.hidden {
    display: none !important;
}

.black-icon {
    fill: #1C4B31;
}

.info-layer-node-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-layer-node {
    background-color: white;
    border-radius: 100%;
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.info-layer-node:hover {
    opacity: 0.5;
}

.info-layer-draft-node {
    background-color: white;
    border-radius: 100%;
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    user-select: none; 
}
.info-layer-draft-node:hover {
    opacity: 0.5;
}

.info-layer-node-container .label-container {
    background-color: white;
    border-radius: 14px;
    padding: 8px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-layer-node-container .label-container label {
    color: black;
    font-weight: 500;
    text-align: center;
    font-size: 13px;
    vertical-align: middle;
    max-lines: 1;
}

.marker-cluster {
    color: #1c4b31;
    background: #F5F8FFB4;
    border: 3px solid #fff;
    font-weight: 600;
    border-radius: 50%;
    align-items: center;
    width: 2rem;
    height: 2rem;
    justify-content: center;
    display: flex;
;
}

.level-main-container {
    top: 0;
    right: 0;
    width: 12rem;
    padding: 1rem;
    position: fixed;
    z-index: 999;
}

.level-main-container > div {
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 1rem 0;
    margin: 0.5rem;
    box-shadow: #dddddd 1px 4px 20px 1px;
}

.level-list-menu {
    background-color: white;
    flex-direction: column;
}

.level-list-menu > div {
    margin: 0.5rem;
    width: 100%;
    text-align: center;
}

.small {
    height: 1rem;
    width: 1rem;
}

.medium {
    height: 3rem;
    width: 3rem;
}

.big {
    height: 5rem;
    width: 5rem;
}

/* Compass */
.compass-widget {
    position: absolute;
    top: 54px;
    right: 12px;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 9999;
}

.compass-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: all;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* GeoTracker */
@keyframes user-pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    70% {
        opacity: 0;
        transform: scale(3);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
.user-marker-pulse::before {
    animation: user-pulse 2s infinite;
    content: '';
    position: absolute;
}
.user-marker-pulse,
.user-marker-pulse::before {
    background-color: #1da1f2;
    border-radius: 50%;
    height: 15px;
    width: 15px;
}
.user-marker-pulse::after {
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 3px #00000059;
    box-sizing: border-box;
    content: '';
    height: 19px;
    position: absolute;
    width: 19px;
    transform: translate(-2px, -2px);
}
