body {
    padding: 0px;
    margin: 0px;
    font-family: 'Segoe UI';
}
textarea{
    font-family: 'Segoe UI';
    font-size: 16px;
}
#map-area{
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 1200px;
    width:  1200px;
    background-color: rgb(230, 230, 230);
    margin: auto;
    position: relative;
}
#sidebar{
    position: fixed;
    height:  100%;
    width:  250px;
    left: 0px;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 500;
    text-align: center;
}
#canvas{
    position: absolute;
    height: 100%;
    width: 100%;
}
#console{
    width: 95%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 200px;
    overflow: auto;
    font-size: 13px;
    background-color: rgba(240, 240, 240, 0.7);
}
.sidebar-button{
    height: 30px;
    margin-bottom: 5px;
    width: 100px;
    background-color: white;
    border: 1px solid rgb(200, 200, 200);
}
#map-filename-input{
    height: 30px;
    width: 85%;
    padding-left: 5px;
    border: 0px;
    background-color: rgb(220, 220, 220);
    margin-bottom: 10px;
}
.animate2s{
    -webkit-transition: all 0.2s linear;
       -moz-transition: all 0.2s linear;
         -o-transition: all 0.2s linear;
            transition: all 0.2s linear;
}
#get-data-box{
    position: fixed;
    margin: auto;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 500px;
    width: 500px;
    background-color: white;
    z-index: 1000;
    text-align: center;
    border: 1px solid rgb(230, 230, 230);
}
#pathdata-tbox, #atmdata-tbox{
    width: 95%;
    height:150px;
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 10px;
    border: 0px;
    background-color: rgb(230, 230, 230);
    overflow: auto;
}
#pathdata-tbox:focus, #atmdata-tbox:focus{
    background-color: rgb(220, 220, 220);
}
.gdl{
    width: 95%;
    margin: auto;
    margin-top: 20px;
    font-weight: bold;
}
.hidden{
    display: none;
}
.pin-pointer{
    position: absolute;
    height: 10px;
    width: 10px;
    background-color: white;
    border-radius: 7px;
    z-index: 100;
    -webkit-transition: all 0.1s linear;
       -moz-transition: all 0.1s linear;
         -o-transition: all 0.1s linear;
            transition: all 0.1s linear;
}
.go-pt{
    border: 2px solid seagreen;
}
.dead-pt{
    border: 2px solid rgb(100, 100, 100);
}