input #searchInput {
  width: 100%;
  color: rgb(36, 35, 42);
  font-size: 16px;
  line-height: 20px;
  min-height: 28px;
  border-radius: 4px;
  padding: 8px 16px;
  border: 2px solid transparent;
  box-shadow: rgb(0 0 0 / 12%) 0px 1px 3px, rgb(0 0 0 / 24%) 0px 1px 2px;
  background: rgb(251, 251, 251);
  transition: all 0.1s ease 0s;
  :focus {
    border: 2px solid rgb(124, 138, 255);
  }
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

#stateSelect {
  min-height: 28px;
  border-radius: 4px;
  padding: 8px 16px;
  border: 2px solid transparent;
  box-shadow: rgb(0 0 0 / 12%) 0px 1px 3px, rgb(0 0 0 / 24%) 0px 1px 2px;
  background: rgb(251, 251, 251);
	:focus {
    border: 2px solid rgb(124, 138, 255);
  }
}

.locations-main-content {
  width: 70%;
  float: right;
}

.locations-main-content ul {
  list-style: none;
}

#locations-list {
  margin-left: -40px;
}

#location-group {
  margin-left: -40px;
}

.store-location {
  margin-bottom: 20px;
  border-bottom: 1px #eaeaea solid;
}

.store-location h6 {
  margin-bottom: -10px;
}

.locations-sidebar {
  width: 20%;
  float: left;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: block;
}

.locations-sidebar select {
  display: none;
}

.locations-sidebar ul {
  list-style: none;
}

.locations-sidebar li {
  margin-bottom: 5px;
}

.locations-sidebar li a {
  border-bottom: 1px gray solid;
}

.location-info-list {
  line-height: 30px;
  padding-top: 30px;
  padding-bottom: 15px;
}

.location-info-list li {
	margin-left: -40px;
}

.bb-product-message span {
  font-weight: BOLD;
  background-color: #c3ecf5;
  border-bottom: 2px solid #d567d7;
  border-radius: 4px;
  padding-left: 3px;
  padding-right: 3px;
}

.back-to-top {
    display: block;
    background-color: transparent;
    border: none;
    color: #0073aa; /* WordPress blue color */
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
}
.back-to-top:hover {
    color: #005177; /* Darker blue on hover */
}

.state-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom-width: 1px;
  border-color: black;
  padding-bottom: 0.75rem; /* 12px */
}


.all-locations {
	display:none;
}



@media screen and (max-width: 768px) {
  .locations-main-content,
  .locations-sidebar {
    width: 100%;
    float: none;
	margin-top: 15px;
  }
  .locations-sidebar select {
    display: block;
  }
  .locations-sidebar ul {
    display: none;
  }
	
	.all-locations {
	display: block;
	margin-top: 10px;
	font-weight: bold;
	text-decoration: underline;
}
	
	.back-to-top {
		display: none;
	}
}
