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

#location-search {
    max-width: 600px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 50px;
    box-shadow: none;
    display: flex;
    border: 1px solid #000;
}

#address-input {
    padding: 10px 15px;
    width: 80%;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    font-size: 16px;
}

#search-button {
    padding: 10px 15px;
    width: 20%;
    border: none;
    border: none;
    border-radius: 50px;
    background-color: #ABCA38;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#search-button:hover {
    background-color: #333;
}

#laz-store-locator {
    margin: 50px auto;
    position: relative;
    padding-top: 50px;
}

#location-list {
    background-color: #fff;
    padding: 20px;
    border-radius: 0;
    box-shadow: none;
    overflow: auto;
    height: 500px;
}

#location-list .location {
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
}

#location-list .location:first-child {
    border-top: 1px solid #000;
    padding-top: 20px;
}

#location-list .location:last-child {
    border-bottom: none;
}

#location-list .location h3 {
    padding: 0;
    margin: 0;
    margin-block-start: 0;
    line-height: 0;
}

.location h3 a {
    color: #ABCA38;
    font-family: Montserrat;
    font-size: 20px;
    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;
}

#location-list .location p a {
    color: #000;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24.8px;
}

#location-list .location p {
    margin: 5px 0;
    color: #000;
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 24.8px;
}

#map {
    flex: 2;
    height: 500px;
    border-radius: 5px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}


#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;
}

#single-location-map, #laz-all-stores-map {
    height: 100%;
}

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

    100% {
        transform: rotate(360deg);
    }
}