.topContainer {
  width: 90rem;
  /* border: 1px solid rgb(209, 34, 34); */
  margin-left: -5rem;
  background-color: white;
  margin-bottom: -5rem;
}

.container {
  display: flex;
  flex-direction: row;
  height: 600px;
  width: 100%;
}

.left_container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.right_container {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #e3e7e7;
}

.heading {
  text-align: center;
  font-weight: 700;
  margin-top: 1.5rem;
}

.sub_div {
  display: flex;
  flex-direction: row;
  padding: 2rem;
  gap: 9rem;
}

.sub_heading {
  line-height: 1.5rem;
}

.sub_heading > h2 {
  font-size: 18px;
  margin-left: 3.1rem;
  margin-top: 2rem;
  margin-bottom: -15px;
  font-weight: 700;
}

#input {
  border: 1px solid rgb(219, 201, 201);
  padding: 15px;
}

.location select {
  border: 0.2px solid #dddddd;
  width: 100%;
  display: block;
  padding: 15px 30px 15px 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/images/arrow-black-down.svg");
  background-repeat: no-repeat;
  background-position: right 15px center;
  outline: none;
  box-shadow: none;
}
.textarea {
  width: 20rem;
  height: 2.5rem;
}
.addresses-list {
}
.address-item {
  padding: 10px;
  background: #f0f0f0;
}

.address-details {
  padding: 10px;
  display: flex;
  flex-direction: column;
  line-height: 0.7rem;
}
.address-details p {
  line-height: normal;
  padding: 5px 0;
}
.address-details p strong {
  width: 80px;
  flex-shrink: 0;
}
.address-details p span {
  flex-grow: 1;
}

.address-details > button {
  background-color: #c00000;
  color: #ffffff;
  padding: 10px 15px;
  align-self: self-start;
  border-radius: 0.375rem;
  border: none;
  transition: 0.4s all linear;
}
.address-details > button:hover {
  background: #000000;
}
.address-details strong {
  font-weight: 600;
}

