/* Styles go here */


:root {
    --annotation-selected-color: #408bca;
    --annotation-hover-color: #9eecae;
    --annotation-normal-color: #40ca5c;
    --annotation-pointer-event: auto;
}


body{
	overflow-x: hidden;
}
        .meter { 
            top: -12px;
            left: 60px;
            display: inline-block;
            width: 400px;
            height: 20px;
            position: relative;
            background: #555;
            -moz-border-radius: 25px;
            -webkit-border-radius: 25px;
            border-radius: 25px;
            padding: 10px;
            -webkit-box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);
            -moz-box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);
            box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);
        }
        .meter > span {
            display: block;
            height: 100%;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
            -moz-border-radius-topright: 8px;
            -moz-border-radius-bottomright: 8px;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            -webkit-border-top-left-radius: 20px;
            -webkit-border-bottom-left-radius: 20px;
            -moz-border-radius-topleft: 20px;
            -moz-border-radius-bottomleft: 20px;
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            background-color: rgb(43,194,83);
            background-image: -webkit-gradient(
              linear,
              left bottom,
              left top,
              color-stop(0, rgb(43,194,83)),
              color-stop(1, rgb(84,240,84))
             );
            background-image: -moz-linear-gradient(
              center bottom,
              rgb(43,194,83) 37%,
              rgb(84,240,84) 69%
             );
            -webkit-box-shadow: 
              inset 0 2px 9px  rgba(255,255,255,0.3),
              inset 0 -2px 6px rgba(0,0,0,0.4);
            -moz-box-shadow: 
              inset 0 2px 9px  rgba(255,255,255,0.3),
              inset 0 -2px 6px rgba(0,0,0,0.4);
            box-shadow: 
              inset 0 2px 9px  rgba(255,255,255,0.3),
              inset 0 -2px 6px rgba(0,0,0,0.4);
            position: relative;
            overflow: hidden;
        }
        .meter > span:after, .animate > span > span {
            content: "";
            position: absolute;
            top: 0; left: 0; bottom: 0; right: 0;
            background-image: 
            -webkit-gradient(linear, 0 0, 100% 100%, 
                color-stop(.25, rgba(255, 255, 255, .2)), 
                color-stop(.25, transparent), color-stop(.5, transparent), 
                color-stop(.5, rgba(255, 255, 255, .2)), 
                color-stop(.75, rgba(255, 255, 255, .2)), 
                color-stop(.75, transparent), to(transparent)
            );
            background-image: 
                -moz-linear-gradient(
                -45deg, 
                rgba(255, 255, 255, .2) 25%, 
                transparent 25%, 
                transparent 50%, 
                rgba(255, 255, 255, .2) 50%, 
                rgba(255, 255, 255, .2) 75%, 
                transparent 75%, 
                transparent
            );
            z-index: 1;
            -webkit-background-size: 50px 50px;
            -moz-background-size: 50px 50px;
            -webkit-animation: move 2s linear infinite;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
            -moz-border-radius-topright: 8px;
            -moz-border-radius-bottomright: 8px;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            -webkit-border-top-left-radius: 20px;
            -webkit-border-bottom-left-radius: 20px;
            -moz-border-radius-topleft: 20px;
            -moz-border-radius-bottomleft: 20px;
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            overflow: hidden;
        }
        
        .animate > span:after {
            display: none;
        }
        
        @-webkit-keyframes move {
            0% {
               background-position: 0 0;
            }
            100% {
               background-position: 50px 50px;
            }
        }
        

.loader {
    position: relative;
    background: red;
    background: -webkit-radial-gradient(rgb(0, 0, 0), rgb(90, 90, 90));
    background: -o-radial-gradient(rgb(0, 0, 0), rgb(90, 90, 90));
    background: -moz-radial-gradient(rgb(0, 0, 0), rgb(90, 90, 90));
    background: radial-gradient(rgb(101, 101, 101), rgb(84, 84, 84));
    border: 5px solid #93ff9c;
    border-top: 5px solid #3ad253;
    border-bottom: 5px solid #3dd654;
    border-left: 5px solid #93ff9c;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    top: 5px;
    left: 5px;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;

    pointer-events: none;

}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-container{
    height: 100px;
    width: 100px;
    top: 25px;
    position: relative;
    display: inline-block;
    left: 0;
    border-radius: 50%;
    background: #5f5f5f;
    left: 50px;
    pointer-events: none;

}


#config_area
{
    position: fixed;
    width: 500px;
    height: 350px;
    z-index: 99;
    left: calc(50% - 250px);
    bottom: 50px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px 20px 0px 0px;
    box-shadow: 0px 0px 12px #ccc;
}

#config_area section
{
    margin: 15px;
}

#config_area section label
{
    font-family: sans-serif;
    font-size: 16px;
    margin-right: 10px;
}

#config_area ul
{
    width : 100%;
    height: 55px;
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-left: 30px;
}

#config_area ul section
{
    margin-top: 5px;
    margin-bottom: 5px;
}

#config_area li
{
    float: left;
}

.min-input
{
    width: 70px;
}

#btn_update_point
{
    width: 100px;
    height: 47px;
    margin-top: 5px;
}

h3
{
    font-family: sans-serif;
    font-weight: normal;
    margin: 0px;
    padding: 0px;
    font-size: 15px;
    margin-bottom: 8px;
}

#info_pos
{
    margin-top: 3px;
    width: 310px;
    height: 35px;
}

.UIAnnotation {
    pointer-events: var(--annotation-pointer-event);

    text-align: center;
    vertical-align: -25px;
    border-radius: 50%;
    border-color: var(--annotation-normal-color);
    border-style: solid;
    top: 0px;
    margin: 0 auto;
    z-index: 1;
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgb(248, 243, 240);

    -webkit-transition:  border-color 500ms linear, width 250ms ease-in, height 250ms ease-in;
    -ms-transition:  border-color 500ms linear, width 250ms ease-in, height 250ms ease-in;
    transition:  border-color 500ms linear, width 250ms ease-in, height 250ms ease-in;

}


.UIAnnotation:hover {
        width : 36px;
        height: 36px;
        z-index: 2;
        border-color: #9eecae; 
        border-color: var(--annotation-hover-color);
}


.UIAnnotationClass {
    top: -18%;

    position: relative;
pointer-events: none;
      -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.UIAnnotationSelected {
        width : 36px;
        height: 36px;
        z-index: 2;
        border-color: #40ca5c;
        border-color: var(--annotation-selected-color);
}
