@import url("./colors.css");
body {
  padding: 0px;
  margin: 0px;
  font-family: sans-serif;
  overflow-x: hidden;
  width: 100vw;
}
.upperspace {
  margin-top: 100px;
}
.textinput {
  width: auto;
  padding: 10px;
  font-size: 18px;
}
.wrapper {
  margin: 0 auto;
  max-width: 1200px;
  width: calc(100% - 20px);
  padding-left: 10px;
  padding-right: 10px;
}
.btn {
  height: 40px;
  width: auto;
  flex: 1;
  margin-top: 30px;
  background-color: var(--blue);
  outline: none;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}
.btn-primary {
  height: 40px;
  width: auto;
  flex: 1;
  margin-top: 30px;
  background-color: var(--green);
  outline: none;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

.btn-none {
  flex: 1;
  height: 40px;
  width: auto;
  background-color: transparent;
  outline: none;
  border: none;
  text-decoration: underline;
  color: var(--black);
  cursor: pointer;
}
.break {
  flex: 0 0 100%;
}
.hcontainner {
  display: flex;
  gap: 20px;
}
.vcontainner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.takespace {
  flex-basis: 100%;
  height: 0;
}
.alignCenter {
  align-items: center;
}
.radius-7 {
  border-radius: 7px;
}
#map {
  margin-top: 20px;
  display: none;
  height: 400px; /* The height is 400 pixels */
  width: 100%; /* The width is the width of the web page */
  border-radius: 10px;
  outline: none;
}
