.hidden {
  display: none;
}

.map, #new-map {
  height: 200px;
  width: 200px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 10px;
}

.form-grid label {
  text-align: right;
}

.card {
  padding: 1rem;
  margin: 1rem;
  border-radius: 1rem;
  background-color: #9b9193;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
}

.card hr {
  border: 1px solid white;
}

button, input[type=submit] {
  background-color: initial;
  background-image: linear-gradient(#8614f8 0, #760be0 100%);
  border-radius: 5px;
  border-style: none;
  box-shadow: rgba(245, 244, 247, 0.25) 0 1px 1px inset;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  height: 30px;
  line-height: 30px;
  outline: 0;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: bottom;
  padding: 0 10px;
  margin: 3px;
}

button:hover, input[type=submit] {
  opacity: 0.7;
}

@media screen and (max-width: 1000px) {
  .button {
    font-size: 14px;
    height: 55px;
    line-height: 55px;
    width: 150px;
  }
}
input[type=text] {
  display: block;
  margin: 0;
  padding: 5px;
  width: 100%;
  font-size: 16px;
  border-radius: 0.4rem;
}

.thumb {
  border: 3px solid red;
}

#flex {
  display: flex;
  flex-wrap: wrap;
}

#flex > * {
  margin: 10px;
}
