@charset 'UTF-8';

.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-bar .twzipcode-div {
    display: flex;
    gap: 10px;
}

.search-bar select,
.search-bar input,
.search-bar button {
    padding: 10px;
    font-size: 14px;
    max-width: 150px;
    flex: 1;
    border: 1px #0066B5 solid;
    border-radius: 5px;
    color: #0066B5;
    height: 45px;
}

.search-bar .btn {
    background-color: #0066B5;
    color: #fff;
}

.search-bar .btn:hover {
    background-color: #004c87;
    color: #fff;
}

.store-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #E7E7E7;
    gap: 100px;
}

@media (max-width: 991px) {
    .store-item {
        gap: 30px;
    }
}

.store-item .store-info {
    flex: 1;
}

@media (max-width: 767px) {
    .store-item .store-info {
        flex-direction: column;
    }
}

.store-item .store-info div {
    color: #5F5F5F;
}

.store-item .store-info .store-div {
    flex: 3;
}

@media (max-width: 767px) {
    .store-item .store-info .store-div {
        flex: 3;
    }
}

.store-item .store-info .store-name {
    color: #0066B5;
    flex: 0 0 200px;
    font-size: 18px;
}

@media (max-width: 991px) {
    .store-item .store-info .store-name {
        flex: 0 0 170px;
    }
}

@media (max-width: 767px) {
    .store-item .store-info .store-name {
        flex: 1;
    }
}

.store-item .store-info .store-add {
    flex: 1;
}

.store-item .store-info .store-tel {
    flex: auto;
}

.store-map {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: end;
}

.store-map a {
    display: flex;
    align-items: center;
    justify-content: end;
    text-decoration: none;
    color: #736868;
}

.store-map i {
    font-size: 24px;
    color: #DE3333;
    margin-right: 8px;
}