body, input, button {
    font-family: inherit;
}

#location-search {
    margin-top: 20px; 
    margin-right: auto; 
    margin-bottom: 0; 
    margin-left: auto; 
    box-shadow: none;
	display: flex;
    gap: 5em;
    justify-content: flex-start; 
    align-items: flex-end; 
}

.brand-description {
    color: #90A676;
    line-height: 25px;
    letter-spacing: -0.3px; 
}

.main-heading{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 20px; 
    margin-bottom: 0; 
    margin-right: auto; 
    margin-left: auto; 
}

#category-filter{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: auto; 
    justify-content: center;
}
#category-submit{
    height: 40px; 
    padding: 0px 10px; 
}

.main-heading h2{
    text-transform: none;
    margin-bottom: 5px; 
}


.dropdown-container select, #category-dropdown {
    color: #666; 
    border: 1px solid #AFAB97; 
}

.dropdown-container{
    width: 20%; 
}
   

#search-button {
    padding: 10px 20px;
    border: none;
    border: none;
    border-radius: 3px;
    color: #fff;
    background-color: #AFAB97; 
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex; 
    justify-content: center;
}

#search-button:hover {
    background-color: #90a676;
}

#laz-store-locator {

    margin: 50px auto;
    display: flex;
    gap: 20px;
	position: relative;
}

#location-list {
    flex: 1;
    display: flex;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: auto;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
}

#location-list::-webkit-scrollbar {
    width: 12px; 
  }
  
  #location-list::-webkit-scrollbar-thumb {
    background-color: #AFAB97; 
    border-radius: 6px;
  }
  
  #location-list::-webkit-scrollbar-track {
    background-color: white; 
    border-radius: 6px; 
  }

#location-list .location {
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.insta-icon, .web-icon {
    display: inline-block; 
    color: #90A676; 
    width: 24px; 
    height: 25px;
    cursor: pointer;
  }

  .icon-links{
    display: flex;
    align-items: center; 
    flex-direction: row; 
    gap: 10px; 
  }

  .icon-links a{
    display: flex; 
    align-items: center; 
  }


.listing-contact-btn {
    background-color: transparent;
    font-family: "Times New Roman", Sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 24px;
    color: #90A676;
    border-style: solid;
    border-width: 1px;
    border-color: #90A676;
    padding: 8px 16px;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.listing-contact-btn:hover {
    background-color: #90A676;
    color: #fff !important;
    text-decoration: none;
}

.content-right p{
    color:  #90A676; 
}
.brand-address{
    font-style: italic; 
    font-weight: 600; 
}

.brand-description{
    text-transform: none !important;
}

.brand-img img {
    max-width: 300px !important;
    max-height: 300px; 
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}




.brand-content{
    background-color: #fff !important; 
}
.brand-category{
    text-transform: capitalize;
}
  .insta-icon svg path, .web-icon svg path {
    fill: currentColor; 
    width: 100%;
    height: 100%; 
  }

.location h3 a {
    color: #ABCA38;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px; /* 125% */
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.location h3 a:hover {
    text-decoration: underline;
}


#loading-container {
    display: none;
	width: 100%;
	height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.7); 
    z-index: 1000;
}

.spinner {
    width: 50px;
    height: 50px;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.spinner:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #000 transparent #000 transparent;
  animation: spinner 1.2s linear infinite;
}

.no-stores-notice a{
    font-style: italic;
    text-decoration: underline !important; 
}

#single-location-map{
height: 550px;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 991px){
    #location-search{
        display: flex;
        gap: 10px;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
    }
    #search-button{
        margin-top: 10px; 
    }
    .dropdown-container{
        width: 100%; 
    }
    .brand-content{
        flex-direction: column !important; 
    }
    .brand-content .content-right{
        padding-top: 0 !important; 
        margin-top:-10px; 
    }
}