:root {
  --color-primary: #b92d2d;
  --color-secondary: #005aff;
  --color-tertiary: #00f;
  --border-radius: 10px;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #555;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}
#map,
html,
body {
  margin: 0;
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  padding: 13px 0px 13px 10px;
}

body {
  height: 97%;
  background-color: #fffcf3;
  background-image: url("/assets/images/bg-pattern.png");
}

.shadow {
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.13);
}

#panel {
  width: 18vw;
  font-family: Arial, sans-serif;
  font-size: 80%;
  float: right;
  margin: 0 10px 10px 10px;
}

.color-palette-wrapper {
  padding: 5px 10px;
  background: #d7d7d7;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: flex-start;
  column-gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

#color-palette {
  clear: both;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 1rem;
  align-items: center;
}

#color-palette span {
  border-radius: 50px;
  width: 20px;
  height: 20px;
}

.color-button {
  width: 14px;
  height: 14px;
  font-size: 0;
  margin: 2px;
  float: left;
  cursor: pointer;
}

#delete-button {
  margin-top: 5px;
  border: none;
  width: 100%;
}

.del-search,
#delete-button {
  font-weight: 500;
  padding: 10px 20px;
  background: var(--color-primary);
  color: white;
  cursor: pointer;
}

.del-search:hover,
#delete-button:hover {
  color: var(--color-primary);
  background: white;
}

.info-wrapper {
  background: #d7d7d7;
  padding: 0px 10px 10px 10px;
  border-radius: 10px;
  margin-top: 15px;
  font-size: 0.8vw;
}

.info-wrapper div {
  margin-bottom: 10px;
  text-align: center;
}

.proje {
  position: absolute;

  z-index: -1;

  top: -2.8%;
  left: 29.4%;
  display: none;
}

#map {
  opacity: 1;
  border-radius: var(--border-radius);
}

.map-wrapper {
  position: fixed;
  top: 27px;
  width: 78vw;
  height: 91%;
}

#note {
  margin: 5px 0px 5px 0px;
  text-align: justify;
}

/*Google Controls Custom CSS*/
.gm-style-mtc button {
  background: var(--color-secondary) !important;
  color: white !important;
  margin: 2px !important;
}

.del-search {
  margin-top: 19px;
  left: 37% !important;
  width: 40px;
  border-radius: var(--border-radius) !important;
  padding: 10px 12px 8px 17px;
  background-color: var(--color-secondary);
}

button {
  border-radius: var(--border-radius) !important;
}

#pac-input {
  margin-top: 17px !important;
  padding: 8px 12px !important;
  margin-left: 12px;
  text-overflow: ellipsis;
  width: 300px;
  left: 42% !important;
  border-radius: var(--border-radius) !important;
}

.gmnoprint div button {
  padding: 10px 15px !important;
}

@media screen and (min-width: 1600px) {
  .map-wrapper {
    width: 81vw;
  }
  #panel {
    width: 16vw;
  }
  .info-wrapper {
    font-size: 100%;
  }
}
