@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

/* reset style */
html,body{font-family: "Titillium Web", sans-serif;}
a{text-decoration:none; transition: all 0.25s linear;}
/* ***** */

/*  generic classes */
.animated{transition: all 0.25s linear;}
/* ***** */


header{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height: 60px;
  background-color: #212121;
  margin: 0;
  padding: 0;
  z-index:1000;
}
header > #title {
  font-weight: 700;
  font-style:normal;
  font-size: 2rem;
  text-transform: uppercase;
  color:#fff;
  text-align: center;
  letter-spacing: 3px;
}
header > #title > span{cursor: pointer;}
/* #logo{
  width:40px;
  height: 40px;
  padding:5px;
  margin: 10px;
  background-image: url('../img/logo.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
} */
main{
  position:relative;
  margin: 60px 0 0;
  padding:20px;
  min-height: calc(100vh - 120px);
  z-index:1;
}

#map{position: relative; width: 100%; height: 500px;}

.tdhop{position:relative;width:100%; height:70vh;}

#draw-canvas{width:100%; height:100%;background-color: #212121;z-index:100;}

.canvas-toolbar{
  position:absolute;
  height:auto;
  width:auto;
  background-color: rgba(0,0,0,.3);
  padding:10px;
  z-index:1000;
}

#toolbar{top:5px;left:5px;}
#toolbar a{
  display: block;
  width:40px;
  color:#000;
  background-color: #fff;
  text-align: center;
  border-radius: 5px;
  opacity: 0.8;
  margin-bottom: 3px;
}
#toolbar a:hover{opacity:1;}
#toolbar a span{font-size: 25px;}

#tdh-layers{top:5px; right:5px; color:#fff;}
#wrapPoiList{zoom:0.8;}
#poiList{
  position:relative;
  width:100%;
  height:auto;
  max-height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
}
#poiList::-webkit-scrollbar { width: 5px;}
#poiList::-webkit-scrollbar-track { background: #f1f1f1; }
#poiList::-webkit-scrollbar-thumb { background: #888; }
#poiList::-webkit-scrollbar-thumb:hover { background: #555; }
.layersLabel{cursor:pointer;}

#meshPanel{
  width:450px; 
  color:#000;
  padding:20px;
  height:auto;
  max-height:80vh;
  overflow: auto;
}

footer{
  position:relative;
  width:100%;
  height:60px;
  background-color: #212121;
  color:#fff;
  text-align: center;
  z-index:1;
}
footer a{color:#fff;text-decoration:underline;}
footer a:hover{color:#9b0404;}


/* media query */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
}