﻿.content.store {
    .brand-list {
        ul {
            display: inline-grid;
            padding: 25px 0px;
            grid-template-columns: repeat(8, 100px);
            grid-gap: 10px;
            justify-content: center;

            li {
                cursor: pointer;

                img {
                    width: 100%;
                    height: 100%;
                }
            }
        }
    }

    .store {
        display: flex;
        flex-direction: row;
        margin-top: 80px;
        width: 1300px;

        .store-list {
            width: 650px;
            overflow: hidden;
        }

        .search-filter {
            display: flex;

            a {
                width: 50%;
                padding: 10px 14px;
                font-size: 18px;
                font-weight: 600;
                border-top: 1px solid #d3d3d3;
                border-left: 1px solid #d3d3d3;
                border-right: 1px solid #d3d3d3;
                border-bottom: 1px solid #d3d3d3;
                text-align: center;
                cursor: pointer;

                &:last-child {
                    margin-left: -1px;
                }

                &.on {
                    background: #cd261f;
                    color: #fff;
                    border: none;
                }

                &:hover:not(.on) {
                    background: #f3f3f3;
                }
            }
        }

        .search-area {
            padding: 25px 0px 25px 25px;
            display: flex;
            flex-direction: row;

            .area {
                display: flex;
                margin-right: 20px;
                width: 100%;
                flex-direction: row;

                select {
                    border: 1px solid #d3d3d3;
                    border-radius: 50px;
                    height: 50px;
                    display: inline-block;
                    font-size: 18px;
                    padding-left: 12px;
                    flex: 1 1;
                    margin-right: 10px;

                    &:last-child {
                        margin: 0px;
                    }
                }
            }

            .name {
                display: none;
                width: 100%;
                margin-right: 20px;

                .txt-search {
                    border: 1px solid #d3d3d3;
                    border-radius: 50px;
                    height: 50px;
                    font-size: 18px;
                    padding-left: 12px;
                    width: 100%;
                }
            }

            .btn-search {
                background: url('/content/images/store/img_search.png');
                width: 50px;
                height: 50px;
                display: inline-block;
                flex: none;
                cursor: pointer;
            }
        }

        .store-desc {
            display: flex;
            flex-direction: row;
            border-top: 1px solid #d3d3d3;
            border-bottom: 1px solid #d3d3d3;
            padding: 10px 0px;

            > div {
                display: flex;
                flex-direction: row;
                align-items: center;
                margin-right: 10px;

                img {
                    width: 30px;
                    height: 30px;
                }

                p {
                    margin-left: 5px;
                }
            }
        }

        #store-list {
            height: 600px;
            overflow-y: auto;
            border-bottom: 1px solid #d3d3d3;

            ul {
                display: flex;
                flex-direction: column;

                > li {
                    display: flex;
                    flex-direction: row;
                    padding: 10px 25px 10px 15px;
                    border-bottom: 1px solid #d3d3d3;
                    align-items: center;
                    height: 120px;

                    &.no-data {
                        align-self: center;
                    }

                    &:last-child {
                        border: none;
                    }

                    .info {
                        .store-name {
                            font-size: 24px;
                            font-weight: 600;
                        }

                        .store-tel {
                            font-size: 18px;
                            margin-top: 5px;
                            margin-bottom: 8px;
                        }

                        .store-address {
                            font-size: 18px;
                            margin-top: 5px;
                            margin-bottom: 8px;
                            line-height: 21px;
                        }
                    }

                    > .service {
                        display: flex;
                        flex-direction: row;
                        align-items: center;
                        margin-left: auto;

                        > li {
                            width: 50px;
                            height: 50px;
                            font-size: 14px;
                            margin-right: 5px;
                            border: none;

                            &:last-child {
                                margin-right: 0px;
                            }

                            &.park {
                                background: url(/content/images/store/img_park.png) 50% 50% no-repeat;

                                &.on {
                                    background: url(/content/images/store/img_park_on.png) 50% 50% no-repeat;
                                }
                            }

                            &.delivery {
                                background: url(/content/images/store/img_delivery.png) 50% 50% no-repeat;

                                &.on {
                                    background: url(/content/images/store/img_delivery_on.png) 50% 50% no-repeat;
                                }
                            }

                            &.pack {
                                background: url(/content/images/store/img_pack.png) 50% 50% no-repeat;

                                &.on {
                                    background: url(/content/images/store/img_pack_on.png) 50% 50% no-repeat;
                                }
                            }

                            &.reservce {
                                background: url(/content/images/store/img_reserve.png) 50% 50% no-repeat;

                                &.on {
                                    background: url(/content/images/store/img_reserve_on.png) 50% 50% no-repeat;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .map {
    }
}

.popup.store {
    overflow: hidden;

    .popup-footer {
        justify-content: center;
    }

    .store {
        border-top: 1px solid #d3d3d3;
        display: flex;
        flex-direction: row;

        .store-list {
            overflow: hidden;
            width: 100%;
        }

        .search-area {
            padding: 15px;
            display: flex;
            flex-direction: row;

            .name {
                width: 100%;
                margin-right: 20px;

                .txt-search {
                    border: 1px solid #d3d3d3;
                    border-radius: 50px;
                    height: 50px;
                    font-size: 18px;
                    padding-left: 12px;
                    width: 100%;
                }
            }

            .btn-search {
                background: url('/content/images/store/img_search.png');
                width: 50px;
                height: 50px;
                display: inline-block;
                flex: none;
                cursor: pointer;
            }
        }

        #store-list {
            height: 410px;
            overflow-y: auto;
            border-top: 1px solid #d3d3d3;

            ul {
                display: flex;
                flex-direction: column;

                > li {
                    display: flex;
                    flex-direction: row;
                    padding: 10px 25px 10px 15px;
                    border-bottom: 1px solid #d3d3d3;
                    align-items: center;
                    height: 120px;

                    &:not(.no-data):not(.selected):hover {
                        background: #f3f3f3;
                        cursor: pointer;
                    }

                    &:not(.no-data):not(:hover).selected {
                        background: rgb(255 206 204 / 50%);
                    }

                    &.no-data {
                        align-self: center;
                    }

                    &:last-child {
                        border: none;
                    }

                    .info {
                        .store-name {
                            font-size: 24px;
                            font-weight: 600;
                        }

                        .store-tel {
                            font-size: 18px;
                            margin-top: 5px;
                            margin-bottom: 8px;
                        }

                        .store-address {
                            font-size: 18px;
                            margin-top: 5px;
                            margin-bottom: 8px;
                            line-height: 21px;
                        }
                    }
                }
            }
        }
    }

    .btn-ok {
        background-color: #d8262f;
        border-radius: 25px;
        width: 100px;
        font-size: 18px;
        font-weight: 600;
        padding: 10px 30px;
        color: #fff;
        display: inline-block;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
    }
}
