.FranchiseFinder-form {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.FranchiseFinder-input {
  width: 50%;
  padding: 10px 15px;
  border: 1px solid var(--clr-blue);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.125rem;
}

.FranchiseFinder-result {
  margin-top: 20px;
}

.FranchiseFinder-resultCount {
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-blue);
}

.FranchiseFinder-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 15px 20px;
  background: #f4f9f9;
  transition: background 250ms ease-in-out;
}

.FranchiseFinder-item:nth-child(odd) {
  background: transparent;
}

.FranchiseFinder-item:hover {
  background: hsl(180, 29%, 87%);
}

.FranchiseFinder-noResult {
  margin-top: 30px;
  text-align: center;
  opacity: 0.7;
}

.FranchiseFinder-itemHeader {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width: 601px) {

.FranchiseFinder-itemHeader {
    flex-direction: row;
}
  }

.FranchiseFinder-headerData {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.FranchiseFinder-itemTitle {
  font-family: var(--font-secondary);
  font-size: 2rem;
  color: var(--clr-orange);
}

.FranchiseFinder-itemDistance {
  font-size: 0.875rem;
  color: var(--clr-blue);
  opacity: 0.8;
}

.FranchiseFinder-headerLinks {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}

@media screen and (min-width: 601px) {

.FranchiseFinder-headerLinks {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
}
  }

@media screen and (max-width: 600px) {

.FranchiseFinder-headerLinks .Button {
    margin-right: auto;
}
  }

.FranchiseFinder-headerLinks .Button + .Button {
  margin-top: 10px;
}

@media screen and (min-width: 601px) {

.FranchiseFinder-headerLinks .Button + .Button {
    margin-top: 0;
    margin-left: 10px;
}
  }

.FranchiseFinder-content {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
}

@media screen and (min-width: 601px) {

.FranchiseFinder-content {
    flex-direction: row;
}
  }

.FranchiseFinder-content-title {
  margin-bottom: 15px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--clr-blue);
}

.FranchiseFinder-contentImage {
  margin-bottom: 20px;
}

@media screen and (min-width: 601px) {

.FranchiseFinder-contentImage {
    max-width: 33%;
    margin-bottom: 0;
}
  }

.FranchiseFinder-contentData {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
}

@media screen and (min-width: 601px) {

.FranchiseFinder-contentData {
    flex-direction: row;
}
  }

@media screen and (min-width: 601px) {

.FranchiseFinder-contentImage ~ .FranchiseFinder-contentData {
    margin-left: 20px;
}
  }

.FranchiseFinder-contentData-content {
  width: 100%;
}

.FranchiseFinder-contentData-content:nth-child(1n + 3) {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    justify-content: flex-start;
    margin-top: 15px;
  }

@media screen and (min-width: 1026px) {

.FranchiseFinder-contentData-content {
    width: 50%;
}
  }

.FranchiseFinder-content-contactItem {
  display: flex;
  align-items: center;
}

.FranchiseFinder-content-contactItem + .FranchiseFinder-content-contactItem {
  margin-top: 10px;
}

.FranchiseFinder-content-contactItem-icon {
  min-width: 20px;
  max-width: 20px;
  margin-right: 10px;
  fill: var(--clr-blue);
}

.FranchiseFinder-contentData-content p {
  max-width: 90%;
}

.Franchise-Finder-suggestions {
  position: absolute;
  z-index: 1000;
  overflow-y: auto;
  width: 100%;
  max-width: 400px;
  max-height: 200px;
  margin: 5px 0 0;
  padding: 10px;
  border: 1px solid rgba(17, 67, 117, 0.8);
  border-radius: 3px;
  list-style: none;
  background-color: #ffffff;
}
