body{
    overflow: hidden;
}
#loading{
  border: 8px solid #f3f3f300;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  border-top: 8px solid #f4511e;
  border-bottom: 8px solid #f4511e;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  position: absolute;
  top: calc(45% - 40px);
  left: calc(50% - 40px);
  z-index: 999;
}
@-webkit-keyframes spin {
  0% {
      -webkit-transform: rotate(0deg);
  }

  100% {
      -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}
#map{
    height: calc(100% - 0px);
}
#map .xcenterMarker{
  position:absolute;
  /*url of the marker*/
  background: url(/images/marker.png) no-repeat;
  background-size: contain;
  /*center the marker*/
  top:50%;left:50%;
  z-index:1;
  /*fix offset when needed*/
  margin-left:-5%;
  margin-top:-5%;
  /*size of the image*/
  height:10vw;
  width:10vw;
  cursor:pointer;
}
.btn.btn-success{
    color: #fff;
    background-color: #f4511e;
    border-color: #f4511e;
}
.btnBoreholeInfo {
    line-height: 0.4;
    white-space: normal;
    margin: 5px;
}
table#detailDiemkhoan td span {
  padding: 5px 8px;
  font-size: 14px;
}
footer{
  position: initial;
}