html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", Sans-Serif;
}

.mapplic-block, #map-m{
    height: 100vh;
    width: 100%;
}

.preloader{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity .4s ease, 
              visibility .4s ease, 
              transform 1s ease;
}

.preloader.is-hidden{
  opacity: 0;
  visibility: hidden;
}

.preloader.is-hidden .preloader__line{
    transform: scale(.8);
}

.preloader__line{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-left: 20px;
  padding-right: 20px;
  transition: transform 1s ease;
}

.preloader__label{
  font-size: 20px;
  line-height: 1.2;
  font-style: italic;
}

.preloader__percent{
  font-size: 80px;
  font-style: italic;
}

.preloader__fill{
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #dadada;
}

.preloader__bar{
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    right: 0;
  display: block;
  width: 0;
  height: 2px;
  background-color: #000;
}

@media screen and (max-width: 767px){
    .preloader__label{
        font-size: 14px;
    }
    
    .preloader__percent{
        font-size: 54px;
    }
}