.store-locations-band {
    padding-top: 30px;
    background: #f4f6f7;
}

.store-locations {
    margin: 0;
    padding: 28px 30px;
    background: #fff;
    border: 1px solid #e3e8e1;
    border-radius: 6px;
}

.store-locations__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.store-locations__header h2 {
    margin: 0 0 5px;
    color: #21314d;
    font-size: 25px;
    line-height: 1.25;
}

.store-locations__header p,
.store-locations__count,
.store-location__address,
.store-location__contact {
    color: #68758a;
}

.store-locations__header p {
    margin: 0;
}

.store-locations__search {
    position: relative;
    flex: 0 1 390px;
    width: 100%;
}

.store-locations__search i {
    position: absolute;
    top: 50%;
    left: 15px;
    color: #259c14;
    transform: translateY(-50%);
}

.store-locations__search input {
    width: 100%;
    height: 46px;
    padding: 0 42px;
    border: 1px solid #cfd8cd;
    border-radius: 5px;
    background: #fff;
}

.store-locations__search input:focus {
    border-color: #259c14;
    box-shadow: 0 0 0 3px rgba(37, 156, 20, .12);
    outline: 0;
}

.store-locations__count {
    margin: 0 0 8px;
    font-size: 14px;
}

.store-location {
    display: grid;
    grid-template-columns: minmax(210px, 1.4fr) minmax(160px, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 92px;
    padding: 17px 4px;
    border-top: 1px solid #e7ebe5;
}

.store-location__name {
    margin: 0 0 4px;
    color: #253451;
    font-size: 17px;
    font-weight: 700;
}

.store-location__address,
.store-location__contact {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.store-location__today {
    margin: 0;
    color: #253451;
    font-size: 14px;
    font-weight: 600;
}

.store-location__today i {
    margin-right: 7px;
    color: #259c14;
}

.store-location details {
    margin-top: 6px;
    font-size: 13px;
}

.store-location summary {
    color: #337427;
    cursor: pointer;
}

.store-location__week {
    min-width: 210px;
    margin-top: 8px;
}

.store-location__week div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 2px 0;
}

.store-location__actions {
    display: flex;
    gap: 8px;
}

.store-location__button,
.store-locations__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 13px;
    border: 1px solid #259c14;
    border-radius: 5px;
    color: #258016;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
}

.store-location__button:hover,
.store-locations__more:hover {
    color: #fff;
    background: #259c14;
}

.store-locations__more {
    margin-top: 18px;
}

.store-locations__status {
    padding: 24px 0;
    color: #68758a;
}

@media (max-width: 767px) {
    .store-locations {
        padding: 22px 18px;
    }

    .store-locations__header {
        display: block;
    }

    .store-locations__search {
        margin-top: 16px;
    }

    .store-location {
        grid-template-columns: 1fr;
        gap: 11px;
        padding: 19px 0;
    }

    .store-location__actions {
        justify-content: flex-start;
    }
}
