body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
      'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
      sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
      monospace;
  }
:root {
  --containerheight:90vh;
}

.App {
  text-align: center;
  height: 100%;
  width: 100%;
}

.ImageUploader {
  text-align: center;
  min-height: 50%;
}

.app-label{
  width: 100%;
  height: 10%;
  overflow: auto;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: white;
  pointer-events: none;
}

.map-container-outdiv{
  position: relative;
  height: var(--containerheight);
  float: left;
  width: 75%;
  transition:all .5s linear;
}

.map-container-outdiv-full{
  position: relative;
  height: var(--containerheight);
  float: left;
  width: 100%;
  transition:all .5s linear;
}

.map-container{
  position:absolute;
  height: 100%;
  width: 100%;}

@media (max-width: 600px) {
  .map-container-outdiv{
    position: relative;
    height: 50vh;
    width: 100%;}
}

.map-container-outdiv .serach-spinner {
  position:absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
}

.map-container-outdiv .serach-result-msg {
  position:absolute;
  left: 35%;
  top: 5%;
  z-index: 5;
  min-width: 30%;
  max-width: 50%;
  background-color: white;
  opacity: 70%;
}

.map-container-outdiv .serach-result-msg p {
  font-weight: bold;
}

.map-container-outdiv .serach-result-msg .error-msg {
  font-weight: bold;
  color: rgb(241, 23, 23);
}

.clicked-coord-label{
  bottom: 2px;
  position: absolute;
  z-index: 9;
  background: white;
  border-radius: 5px;
  right: 0px;
  width: max-content;
}

.clicked-coord-label p {
  margin: 10px;
  right: 0px;
  width:fit-content;
}

.sidenav {
  background-color:lightblue;
  float: right;
  width: 25%; /* Set the width of the sidebar */
  overflow-x: hidden; /* Disable horizontal scroll */
  overflow-y:scroll;
  height: var(--containerheight);
  right: 0;  /*stay at the right*/
  bottom: 0;
  position: relative;
}

.closebtn {
  position:absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  cursor: pointer;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #111;
  color: white;
  border: none;
  z-index: 10;
  position:absolute;
  float: right;
  right: 8px;
  top: 4px;
}

.search-container-new {
  display: flex;
  flex-direction: row;
  flex-wrap:nowrap;
  align-items: center;
  max-width: 100%;
  min-width: 75%;
  z-index: 10;
  justify-content: center;
  order: 1;
}

@media (max-width: 600px) {
  .sidenav {
    background-color:lightblue;
    float: none;
    height: 40vh;
    width: 100%; /* Set the width of the sidebar */
    /*position: fixed; /* Fixed Sidebar (stay in place on scroll) */
    /*z-index: 1; /* Stay on top */
    /*top:inherit;*/ /* Stay at the top */
    /* top: auto; */
    overflow-x: hidden; /* Disable horizontal scroll */
    overflow-y:auto;
    padding-top: 2px;
  }
}

@media (max-width: 300px) {
  .search-container-new {
    display: flex;
    flex-direction: row;
    flex-wrap:nowrap;
    align-items: center;
    max-width: 100%;
    min-width: 90%;
    z-index: 10;
    justify-content: center;
    order: 3;
  }
}

.sidenav .search-container {
  /* float: right; */
  top: 0;
  display: block;
}

.search-container-homepage {
  display: flex;
  flex-direction: row;
  flex-wrap:nowrap;
  align-items: center;
  height: 80px;
  width: 60%;
  padding-left: 20%;
  position: relative;
  z-index: 1;
  transform: scale(1.15);
  -moz-transform: scale(1.15); /* for Firefox, default 1*/
  zoom:115%; 
}

.search-category {
  padding-right: 5px;
  max-height: 50px;
  width: 30%;
}

.search-category-maxwidth {
  padding-right: 5px;
  max-height: 50px;
  max-width: 90%;
  min-width: 30%;
}

.search-category-and-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 30%;
}

.search-category-and-button-maxwidth {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 30%;
}

.search-box-input {
  height: 40px;
  box-sizing: border-box;
  width: 90%;
}

.search-box-input-maxwidth {
  height: 40px;
  box-sizing: border-box;
  width: 95%;
  margin-bottom: 2px;
  /* margin-left: 6px; */
}

.search-box-and-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 80%;
}

.search-box-and-button-maxwidth {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 95%;
}

.search-box-button {
  /* padding-left: 10px; */
  background-color: transparent;
  display: inline-flex;
  border: 0px;
  padding-left: 4px;
}

.search-box-button a {
  padding-left: 3px;
  font-size: medium;
  white-space: nowrap;
  font-family: inherit;
  color: green;
}

@media (max-width: 600px) {
  .search-container-homepage {
    display: flex;
    flex-direction: column;
    flex-wrap:nowrap;
    align-items:flex-start;
    height: 80px;
    width: 90%;
    padding-left: 5%;
    z-index: 10;
    transform: scale(1.15);
    -moz-transform: scale(1.15); /* for Firefox, default 1*/
    zoom:115%; 
  }

  .search-category {
    padding-right: 5px;
    box-sizing: border-box;
    max-height: 50px;
    width: 30%;
    margin-bottom: 2px;
    margin-left: 6px;
  }
  
  .search-category-maxwidth {
    /* padding-right: 5px; */
    box-sizing: border-box;
    max-height: 50px;
    width: 95%;
    margin-bottom: 2px;
    margin-left: 6px;
  }

  .search-box-input {
    height: 40px;
    box-sizing: border-box;
    min-width: 30%;
    max-width: 90%;
    margin-bottom: 2px;
    /* margin-left: 6px; */
  }

  .search-box-input-maxwidth {
    height: 40px;
    box-sizing: border-box;
    width: 95%;
    margin-bottom: 2px;
    /* margin-left: 6px; */
  }

  .search-category-and-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 90%;
    min-width: 30%;
  }

  .search-category-and-button-maxwidth {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 95%;
  }

  .search-box-and-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 90%;
    min-width: 30%;
  }
  
  .search-box-and-button-maxwidth {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 95%;
  }
}

.sidenav .contractors {
  display: grid;
  border-style: double;
  border:forestgreen;
  background-color: lightblue;
}

.sidenav .contractors .registered-contractor-container {
  background-color: rgba(195, 253, 181, 0.8);
  text-align: center;
  padding: 15px 0;
  margin-top: 3px;
  font-size: 19px;
  border-width: 3px;
  border-style: double;
  border-color:forestgreen;
  cursor: pointer;
}

.sidenav .contractors .company-container {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 15px 0;
  margin-top: 3px;
  font-size: 19px;
  border-width: 3px;
  border-style: double;
  border-color:forestgreen;
  cursor: pointer;
}

.sidenav .contractors .item1 {
  grid-row-start: 1;
  grid-row-end: auto;
  grid-column-start: 1;
  grid-column-end: 2;
}

.contract_profile_p {
  padding-top: 6px;
  padding-bottom: 6px;
  margin: 0px;
}


.footer-container {
  position: fixed;
  bottom: 0;
  background-color: rgb(231, 231, 231);
  width: 100%;
  height: 31px;
  vertical-align:middle;
}

.footer-link {
  position: relative;
  float: right;
  margin-right: 10px;
  margin-top: 3px;
  vertical-align: middle;
  border-bottom: #000000 0.125em solid;
  cursor: pointer;
}

.register-data-privacy {
  position: relative;
  vertical-align: middle;
  border-bottom: #000000 0.125em solid;
  cursor: pointer;
}

.data-privacy-accept {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.top-right-cornor {
  float: right;
  right: 5px;
  position: absolute;
  top: 5px;
  cursor: pointer;
}

/*# sourceMappingURL=main.9e892423.css.map*/