#store-map {
    height: 100%;
    width: 100%;
}

.full-map #store-map {
    width: 100% !important;
}
.google-map-container{
    width: 100%;
    height: 600px;
}
.store-map-info-box {
    position: relative;
    padding: 16px;
    max-width: 400px;
    background: #fff;
    border-radius: 20px;
    font-size: 16px;
    line-height: 1.5;
    margin-top: -15px;
}
a.get-direction{
    text-decoration: none;
}
a.more-info-link{
    margin-left: 10px;
    text-decoration: none;
}
.business-details-container .location-listing-link{
    cursor: pointer;
}
/* Styles for the container section */
.business-details-container {
    margin: 0 auto;
    max-width: 1024px;
}

/* Styles for the header section */
.business-details-container .header {
    text-align: center;
    margin-bottom: 20px;
}

.business-details-container .header h1 {
    color: #3C1135;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    line-height: 1.25;
    margin-bottom: 16px;
    text-align: left;
}

.business-details-container .header p {
    font-size: 16px;
    margin: 10px 0 0;
}

.business-details-container .hours {
    border-top: 1px solid #EDEDED;
    margin-top: 32px;
    padding-top: 32px;
}


.business-details-container h2 {
    color: #3C1135;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 24px;
    font-weight: bold;
}

.business-details-container p {
    margin-bottom: 16px;
}

.business-details-container p:last-child {
    margin-bottom: 0;
}

.business-details-container a {
    background-image: url(../../images/chevron-right.svg);
    background-position: 100% 50%;
    background-repeat: no-repeat;
    color: #3C1135;
    display: block;
    text-decoration: none;
}

.business-details-container a:hover {
    text-decoration: underline;
}

.business-details-container a img.icon {
    display: inline-block;
    height: 20px;
    margin-right: 8px;
    width: 20px;
}

.business-details-container a span {
}

.business-details-container .timing-row {
    display: flex;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    gap: 30px;
    justify-content: space-between;
    line-height: 150%;
    max-width: 300px;
    padding-bottom: 12px;
}

.business-details-container .timing-row:last-child {
    padding-bottom: 0;
}

/**/

.store-map-column {
    order: 0;
}

@media (max-width: 1024px) {
    .store-map-column {
        order: -1;
    }
}

.store-locator {
}

.store-list-column {
    display: flex;
    flex-direction: column;
    height: 600px;
}

@media (max-width: 768px) {
    .store-list-column {
        height: 400px;
    }
}

.store-map-column {
    height: 600px;
}

@media (max-width: 768px) {
    .store-map-column {
        height: 400px;
    }
}

.store-locator input[type="text"] {
    font-size: 16px;
    line-height: 1;
    padding: 12px 20px;
}

.store-locator input[type="text"]:focus {
    border-color: #000;
}

.store-locator input[type="text"]::placeholder,
.store-locator input[type="text"]::-webkit-input-placeholder,
.store-locator input[type="text"]::-moz-placeholder,
.store-locator input[type="text"]:-ms-input-placeholder,
.store-locator input[type="text"]::-ms-input-placeholder {
    color: #000000;
    opacity: 0.7;
}

#store-list {
    background: none;
    border-radius: 0;
    flex: 1;
    padding: 0;
}

#store-list::-webkit-scrollbar {
    border-radius: 3px;
    width: 6px; /* Width of the scrollbar */
}

/* Track (the background of the scrollbar) */
#store-list::-webkit-scrollbar-track {
    background: #ccc; /* Color of the scrollbar track */
    border-radius: 3px;
}

/* Handle (the scrollbar thumb) */
#store-list::-webkit-scrollbar-thumb {
    background-color: #333; /* Color of the scrollbar thumb */
    border-radius: 3px;    /* Rounded edges of the thumb */
}

/* On hover */
#store-list::-webkit-scrollbar-thumb:hover {
    background-color: #333; /* Darker color when hovering */
}

#store-list .store-item {
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    margin-bottom: 24px;
    padding: 0;
}

#store-list .store-item:last-child {
    margin-bottom: 0;
}

#store-list .store-item h3 {
    cursor: pointer;
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 12px;
}

#store-list .store-item p {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 12px;
}

#store-list .store-item p:last-child {
    margin-bottom: 0;
}

#store-list .store-item .info-item {
    background-position: 0 2px;
    background-repeat: no-repeat;
    padding-left: 24px;
    position: relative;
}

#store-list .store-item .info-item svg {
    left: 0;
    position: absolute;
    top: 1px;
}

.location-page-layout {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LOCATION: STICKY SIDEBAR */

.location-sticky-sidebar-container {
    position: relative;
}

.location-sticky-sidebar-container {
    max-width: 300px;
    position: relative;
    width: 100%;
}

.location-sticky-sidebar {
    background-color: #f9fafb;
    width: 100%;
}

.location-sticky-sidebar.bar-fixed {
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    position: fixed;
    top: 90px;
}

.location-sticky-sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.location-sticky-sidebar ul li a {
    align-items: center;
    color: #333;
    display: flex;
    font-weight: normal;
    padding: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-sticky-sidebar ul li.active a, .location-sticky-sidebar ul li:hover a {
    background-color: #ddd;
}

.location-sticky-sidebar ul li a img {
    height: auto;
    width: 20px;
}

.location-sticky-sidebar ul li a span {
    line-height: 1;
}

/**/

.anchor-content-section {
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .location-sticky-sidebar-container {
        display: none;
    }

    .location-sticky-sidebar {
        width: 100%;
    }
    
    .location-sticky-sidebar.bar-fixed {
        position: static;
        max-height: none;
    }
}
/* Style for the location-reviews block */
.location-reviews-block {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Style for the block labels like 'Aggregate Rating', 'Review Count', etc. */
.location-reviews-block strong {
    font-weight: bold;
    color: #333;
    margin-right: 5px;
}

/* Style for the rating values */
.location-reviews-block .rating-value {
    color: #4CAF50; /* Green for ratings */
    font-weight: bold;
    font-size: 20px;
}

/* Style for the review count */
.location-reviews-block .review-count {
    color: #FF9800; /* Orange for emphasis */
    font-weight: bold;
}

/* Style for the worst rating */
.location-reviews-block .worst-rating {
    color: #d32f2f; /* Red for worst rating */
    font-size: 14px;
}

/* Add some spacing between rows */
.location-reviews-block p {
    margin: 10px 0;
}

/* style for the services items */
.location-services .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.location-services .service-item {
    position: relative;
    height: 100px;
    overflow: hidden;
}
.location-services .service-item a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background-color: #cecece;
}
.location-services .service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.location-services .service-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
}
/*Location Hours Block Style*/
.location-hours .location-hours-block {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
}

.location-hours .location-hours-list {
    list-style: none;
    padding: 0;
}

.location-hours .location-hours-list li {
    margin: 10px 0;
}

.location-hours .day-name {
    font-weight: bold;
}

.location-hours .hours {
    color: #333;
}