@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: url(/fonts/OpenSans-Bold.ttf?f5331cb6372b6c0d8baf2dd7e200498c) format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  src: url(/fonts/OpenSans-SemiBold.ttf?e1c83f9474e0cc1d84a13c6d1ddf3ca5) format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: normal;
  src: url(/fonts/OpenSans-Regular.ttf?d7d5d4588a9f50c99264bc12e4892a7c) format("truetype");
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans";
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

#map {
  width: 100%;
  height: 100vh;
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: -1;
}

#logo {
  width: 200px;
  margin: 15px;
}

.map-control {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 2px rgba(33, 33, 33, 0.4);
  font-family: "Roboto", "sans-serif";
  margin: 10px;
  /* Hide the control initially, to prevent it from appearing
     before the map loads. */
  display: none;
}

.selector-control {
  font-size: 14px;
  line-height: 30px;
  padding-left: 5px;
  padding-right: 5px;
}

#searchPonto {
  position: fixed;
  bottom: 15px;
  right: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

#searchPonto .wrapper {
  width: 400px;
  position: relative;
}

#searchPonto input {
  width: 100%;
  border: 0;
  border-radius: 3px;
  background-color: white;
  padding: 10px;
  padding-right: 20px;
  opacity: 0.8;
  transition: 0.2s;
  outline: none;
}

#searchPonto input:focus {
  opacity: 1;
}

#searchPonto .search-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 16px;
  height: 16px;
  background-image: url(/images/search.svg?369f545946fb1685141ec74d1848325c);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
}

