* {
  padding: 0;
  margin: 0;
  box-sizing: border-box !important;
}

body {
  /* background-color: #309E79; */
  font-family: "Roboto", sans-serif;
  /* background-image: url(assets/src/02.jpg); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: rgb(66, 66, 66);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #35d7a4;
  top: 0;
  left: 0;
  opacity: 0.9;
}
.app-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  /* margin: 2rem; */
}

.info-btn {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: red; */
  position: relative;
  flex-direction: column;
}

.find-btn {
  background-color: white;
  /* border: 2px solid transparent; */
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  color: #049348;
  font-weight: bold;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.find-btn:hover {
  background-color: #049348;
  /* border: 2px solid white; */
  color: white;
  cursor: pointer;
}

#map {
  /* margin-top: 2rem; */
  height: 100%;
  width: 70%;
  /* border: 5px solid #35D7A4; */
  /* border-radius: 10px; */
}

.map-info {
  padding: 2rem;
  position: fixed;
  top: 0;
  right: -200%;
  /* right: 0; */
  /* background: #309E79;; */
  background-color: white;
  height: 100vh;
  width: 30%;
  transition: all 0.5s;
  box-shadow: 0px 3px 29px 0px rgba(158, 158, 158, 1);
}

.close-modal {
  display: block;
  display: flex;
  justify-content: end;
  color: #46b38d;
}

.close-modal span {
  font-size: 2rem;
}

.close-modal span:hover {
  cursor: pointer;
  color: rgb(66, 66, 66);
}

.search-field {
  margin: 3rem 0rem;
}

.search-field small {
  display: block;
  margin-top: 0.5rem;
  color: #35d7a4;
}
.search {
  position: relative;
}

.search input {
  width: 100%;
  height: 3rem;
  border: none;
  /* border: 2px solid #35D7A4; */
  background-color: #f9f9f9;
  border-radius: 5px;
  padding: 0rem 1rem;
  /* box-shadow: -1px 3px 33px 0px rgba(158,158,158,1); */
}

.search input:focus {
  /* outline-style: dashed; */
  outline-color: #35d7a4;
}
.search-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 3rem;
  width: 5rem;
  border: none;
  background-color: #35d7a4;
  border-radius: 0 5px 5px 0px;
  color: white;
}

.search-btn:hover {
  background-color: rgb(66, 66, 66);
  cursor: pointer;
}

#all-markers-info {
  width: 100%;
  height: 65%;
  margin-top: 1rem;
  /* padding: 0.5rem 1rem; */
  list-style-type: none;
  overflow-y: auto;
}

#all-markers-info::-webkit-scrollbar {
  width: 10px;
}

#all-markers-info::-webkit-scrollbar-track {
  background: rgb(227, 227, 227);
  border-radius: 3px;
}

#all-markers-info::-webkit-scrollbar-thumb {
  background-color: #35d7a4;
  border-radius: 3px;
}

.single-marker-info {
  width: 100%;
  padding: 1rem 1rem 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 5px;
  border-left: 5px solid #35d7a4;
  background-color: white;
  box-shadow: 0px 0px 13px 0px rgba(235, 235, 235, 0.75);
  transition: all 0.2s;
}

.single-marker-info:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}

.single-marker-info p {
  margin: 0.3rem 0;
}

.single-marker-info p:first-child {
  color: #2cb589;
  font-weight: bold;
}

.active-single-marker {
  background-color: #f0f0f0;
}
.user-info {
  display: none;
  font-size: 1.3rem;
  /* border-bottom: 1px solid #35D7A4; */
  width: 100%;
  padding-bottom: 1rem;
  color: rgb(66, 66, 66);
}

.user-info p {
  font-size: 1.2rem;
}

.user-not-found {
  color: #e3a003;
  padding: 1rem;
  text-align: center;
  border-radius: 5px;
  border-left: 5px solid #ffb400;
  background-color: white;
  box-shadow: 0px 0px 13px 0px rgba(235, 235, 235, 0.75);
}

.user-name {
  color: #2cb589;
}

/* RESPONSE */
@media (max-width: 790px) {
  body {
    background-image: none;
  }
  .info-btn {
    width: 95%;
    height: 6rem;
    position: fixed;
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    left: 0;
    right: 0;
    margin: 1rem auto;
    border-radius: 10px;
    background: white;
    box-shadow: 2px 3px 16px 0px rgba(176, 176, 176, 1);
    z-index: 2;
    padding: 0 1.5rem;
  }

  .info-btn img {
    height: 60%;
  }
  .find-btn {
    margin-top: 0 !important;
    margin-left: 1.5rem;
    padding: 0.5rem 0.8rem;
    background: #049348;
    color: white;
  }
  .overlay {
    /* z-index: 1; */
    display: none;
  }

  .search-field {
    margin: 2rem 0rem;
  }
  #map {
    width: 100%;
  }

  .map-info {
    width: 100%;
    z-index: 3;
  }
}

@media (min-width: 791px) and (max-width: 1030px) {
  .info-btn {
    width: 40%;
  }

  #map {
    width: 60%;
  }

  .map-info {
    width: 40%;
  }
}

/* GOOGLE MAP InfO WINDOW */
.gm-style .gm-style-iw-c {
  width: 250px !important;
}

.window-user-picture {
  width: 100%;
  height: 3rem;
  /* background: pink; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.window-user-picture img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  object-fit: cover;
}
