.mainSec {
  height: auto;
}

.map-container a {
  min-width: auto !important;
}
@media (min-width: 992px) {
  .map-container {
    display: flex;
  }
}

#map {
  width: 100%;
  height: 495px;
}

.list-section {
  background-color: white;
  max-height: 495px;
  width: 100%;
  min-height: 495px;
  overflow-y: scroll;
  position: relative;
  /* Handle */
}
@media (min-width: 992px) {
  .list-section {
    max-width: 325px;
  }
}
.list-section::-webkit-scrollbar {
  width: 10px;
  background: #ccc;
}
.list-section::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(255, 142, 67, 0.9) 0%, rgba(255, 160, 96, 0.9) 48%, rgba(255, 181, 131, 0.9) 100%);
  background-size: 200%;
  animation: gradient 5s ease-in-out infinite;
}
.list-section i {
  color: rgb(255, 142, 67);
}
.list-section h5, .list-section p {
  color: black;
}
.list-section .filter {
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  background: white;
  padding: 1.5rem 1rem;
}
.list-section .filter div:nth-child(1) {
  margin-right: 1.5rem;
  min-width: 80px;
}
.list-section .filter button {
  font-weight: bold;
  min-width: 80px;
  background: transparent;
  border: 0;
  font-size: 1rem;
}
.list-section .filter input[type=text] {
  min-width: 80px !important;
  width: 100%;
  border: 0;
  background: #E5E5E5;
  border-radius: 5px;
}
.list-section .filter .dropdown-item {
  cursor: pointer;
  border: 0;
}
.list-section .filter .dropdown-item:active {
  background-color: rgb(255, 142, 67);
}
.list-section .filter .dropdown-menu {
  border: 0;
}
.list-section .filter-options {
  position: absolute;
  background: white;
  z-index: 10;
  min-width: 269px;
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  margin-top: 1rem;
}
.list-section .filter-options ul {
  overflow: auto;
  padding: 1rem;
  margin-bottom: 0;
}
.list-section .filter-options > div {
  padding: 1rem;
  padding-top: 0;
}
.list-section .filter-options ul li {
  background-color: rgba(255, 142, 67, 0.5);
  color: black;
  border-radius: 15px;
  display: table;
  padding: 0.1rem 0.5rem;
  margin-right: 0.5rem;
  float: left;
  font-size: 1rem;
  cursor: pointer;
}
.list-section .filter-options .active {
  background-color: #ff8e43;
  color: white;
  position: relative;
  padding-left: 2rem;
}
.list-section .filter-options .active:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.list-section .list-container {
  display: inline-block;
  text-align: left;
  padding: 1.5rem 1rem;
  padding-top: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .list-section .list-container {
    display: block;
  }
}
.list-section .list-container > div {
  display: flex;
  padding: 0.5rem;
  align-items: center;
  margin: 0 auto;
  margin-top: 1.5rem;
  border-radius: 5px;
  max-width: 325px;
  min-width: 269px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .list-section .list-container > div {
    width: 100%;
  }
}
.list-section .list-container > div .command-btn {
  position: absolute;
  z-index: 2;
  background: transparent !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.list-section .list-container > div:hover {
  transition: all 0.3s;
  background-color: rgba(255, 181, 131, 0.1);
}
.list-section .list-container > div:focus, .list-section .list-container > div:active {
  background-color: rgba(255, 181, 131, 0.1);
}
.list-section .list-container > div .outer {
  border-radius: 50%;
  overflow: hidden;
  min-width: 80px;
  display: table;
}
.list-section .list-container > div > div:nth-child(2) {
  margin: 0 0.5rem;
}
.list-section .list-container > div > div:nth-child(3) {
  margin-left: auto;
}
.list-section .list-container > div h4, .list-section .list-container > div p {
  margin: 0;
  font-size: 1rem;
}
.list-section .list-container > div a {
  background: linear-gradient(90deg, rgba(255, 142, 67, 0.9) 0%, rgba(255, 160, 96, 0.9) 48%, rgba(255, 181, 131, 0.9) 100%) !important;
  width: 30px;
  height: 30px;
  display: flex;
  border-radius: 5px !important;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.list-section .list-container > div a i {
  color: white;
}

.box-shadow {
  box-shadow: rgba(57, 70, 78, 0.15) 0px 0px 1px 0px, rgba(57, 70, 78, 0.25) 0px 5px 25px 0px !important;
}

#clearButton {
  background-color: #f1f1f1;
  border-radius: 15px;
}

.list-detail-container {
  min-width: 269px;
  position: absolute;
  z-index: 11;
  left: 0;
  padding: 1.5rem 1rem;
  background: white;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 0;
}
@media (min-width: 992px) {
  .list-detail-container {
    max-width: 325px;
  }
}
.list-detail-container .detail-item > div:nth-child(1) {
  display: flex;
  justify-content: space-between;
  border: 1px solid;
  padding: 0.5rem 0;
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}
.list-detail-container .detail-item > div:nth-child(1) button, .list-detail-container .detail-item > div:nth-child(1) a {
  border: 0;
  background: 0;
  font-weight: bold;
  font-size: 1rem;
  padding: 1px 6px;
}
.list-detail-container .detail-item .partner-contact-info ul {
  padding: 0;
}
.list-detail-container .detail-item .partner-contact-info ul li {
  font-size: 1rem;
}
.list-detail-container .detail-item .partner-business-hours ul {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  text-align: left;
  margin-bottom: 0;
}
.list-detail-container .detail-item .partner-business-hours ul li:nth-child(1) {
  flex: 1;
  font-weight: bold;
}
@media (min-width: 992px) {
  .list-detail-container .detail-item > .content h4 {
    font-size: 1.25rem;
  }
}
.list-detail-container .detail-item > .content p {
  font-size: 1rem;
}
.list-detail-container .detail-item > .content span {
  font-size: 1rem;
}

.containImg {
  max-width: 80px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px;
}/*# sourceMappingURL=location.css.map */