.dealers-section {
  // padding-bottom: 20px;
  overflow: hidden;
}

h3 {
  font-family: var(--font-body-family);
  position: relative;
}

h3 .svg-wrapper {
  right: 0;
    position: absolute;
    height: 25px;
}

.card p, h3 {
  padding: 2px;
  margin: 0px;
}

.card p {
  color: var(--dark-paragraphs);
  margin: .25em 0;
}


#content-container {
  display: flex;
  justify-content: space-evenly;
  overflow: hidden;
}

.dealers-right {
  overflow: hidden;
  // height: 100%;
  width: 100%;
  flex: 50%;
}

.dealers-left {
  display: flex;
  flex: 50%;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  overflow-x: hidden;
  max-height: 600px;
  // padding-right: 50px;
  // margin: 0 2em;

  .store-locator-title {
    margin-bottom: 0;
    margin-top: 6.5rem;
  }
  .store-locator-description, .search-results p {
    margin-top: 0;
    color: var(--dark-paragraphs);
  }

  .header-container {
    margin: 0 2em;
  }

}

.card-list {
  overflow: auto;
  width: 100%;
  // max-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 0 2em 2em;
}

#store-locator button {
  width: 100%;
  word-wrap: break-word;
}

.actual-card {
  line-height: 15px;
  width: 100%;
  background-color: #fff;
  border-radius: 12px;
  // box-shadow: transparent 0 0 0 3px,rgba(18, 18, 18, .1) 0 6px 20px;
  // box-sizing: border-box;
  color: #121212;
  cursor: pointer;
  display: inline-block;
  font-size: 1.2rem;
  margin: 5px 0;
  outline: none;
  padding: 1.5rem;
  text-align: left;
  // transition: box-shadow .2s,-webkit-box-shadow .2s;
  border: 0;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;

  &[data-store-selected=true] {
    border: 1px solid rgba(63, 104, 224, 1)
  }
}

@media screen and (max-width: 480px) {
  .dealers-section {
    // padding-bottom: 20px;
    overflow: auto;
  }
  
  #content-container {
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }



  .dealers-left {
    padding-right: 0px;
    // padding-bottom: 20px;
  }

}

@media screen and (min-width: 480px) and (max-width: 768px) {
  .dealers-section {
    // padding-bottom: 20px;
    overflow: auto;
  }

  #content-container {
    display: block;
    overflow: auto;
    display: flex;
    flex-direction: column;
  }


  .dealers-left {
    padding-right: 0px;
    // padding-bottom: 20px;
  }
}

.search-field {
  border-radius: 32px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 14px;
  border-width: 1px;
  border: 1px solid rgba(224, 224, 224, 1);
  font-size: 1.6rem;
  background:white;
  display: flex;
  margin: 1.5em 0;
}

.search-field input {
  padding-left: 1em;
  width: 100%;
}

.not-found-search {
  padding: 0;
}

.text-input-search, .text-input-search:focus, .text-input-search:focus-visible {
  border: none;
  outline: none;
  text-decoration: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
}


.mapFrame-container iframe{
  border: 0;
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
}

.mapFrame-container {
height: 100%;
width: 100%;
}

@media screen and (max-width: 768px) {
  .mobile-hidden {
    display: none;
  }

  .dealers-right {
    overflow: unset;
  }

  
  .mapFrame-container iframe {
    height: 460px;
  }
}


/* USE WHEN NEEDED
@media screen and (min-width: 768px) and (max-width: 1024px) {
  
}


@media screen and (min-width: 1024px) and (max-width: 1280px) {
  
}
*/

