﻿/*** v 內容 ***/
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

    .header span {
        font-size: 25px;
        font-weight: bold;
    }

.form-title {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
}

.zone_select, .store_select {
    margin-bottom: 10px;
    position: relative;
}

.zone_select {
    width: 100%;
}

.store_select {
    width: 100%;
}

.phone_input {
    /*width: calc(100% - 74px);*/
    width: 100%;
}

.search_action_btn {
    width: 100%;
    margin-top: 30px;
    padding: 7px 0px 7px 3px;
    text-align: center;
    cursor: pointer;
    border-radius: 15px;
    border: 1px solid #58d5f1;
    background: linear-gradient(to bottom, #80e6fd, #07b3d9);
    box-shadow: 0px 1px 4px #008dabad;
    color: #003b48;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
}

.search_result_section{
    margin-top: 30px;
}

.store_info_name {
    font-weight: bold;
}

.no_data_text{
    color: #ff0000;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
}
/*** v 單據 ***/
.txn_item {
    list-style: none;
    background-color: #f7f7f7;
    border: 1px solid #e7e7e7;
    box-shadow: 1px 1px 0px 0px #d9d9d9;
    padding: 10px 5px;
    margin-top: 15px;
}

.txn_item_info {
    width: 100%;
}
    .txn_item_info td {
        padding-bottom: 5px;
    }

    .txn_item_info tr td:nth-child(1){
        width: 80px;
        font-weight: bold;
    }
    .txn_item_info tr td:nth-child(2) {
        text-align: right;
    }


.cart_info_more_btn {
    border: none;
    outline: none;
    width: 100%;
    background-color: #8d8d8d;
    border-top: 1px solid #e7e7e7;
    color: #ffffff;
    text-align: center;
    letter-spacing: 3px;
    padding: 5px 0 5px 3px;
    font-size: 16px;
    font-weight: bold;
}

.cart_info_more_btn > span:nth-child(1) {
    display: inline;
}

.cart_info_more_btn > span:nth-child(2) {
    display: none;
}

.cart_info_more_btn.clk_active > span:nth-child(1) {
    display: none;
}

.cart_info_more_btn.clk_active > span:nth-child(2) {
    display: inline;
}

/*** v 訂單內容 ***/
.cart_list {
    overflow-y: hidden;
    height: 0px;
    background-color: #e9e9e9;
}

    .cart_list.clk_active {
        height: 100%;
        transition: height .5s ease-in-out;
        margin-bottom: 5px;
    }

.cart_item {
    list-style: none;
    padding: 8px 5px 8px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

    .cart_item + .cart_item {
        border-top: 1px dashed #908e8e;
    }

.cart_item_img {
    width: 80px;
    height: 100%;
    object-fit: contain;
    vertical-align: middle;
    margin: 0 auto;
    display: none;
}

.cart_item_info {
    flex: 1;
    padding: 0 10px 0 5px;
}

.cart_item_info_foodnm {
    margin-bottom: 5px;
}

.cart_item_order_qty {
    width: 60px;
    text-align: right;
    /*padding-right: 15px;*/
    padding-right: 5px;
}

.cart_item_amt_price {
    /*width: 90px;*/
    width: 80px;
}

    .cart_item_amt_price::before {
        content: '=';
        display: inline-block;
        margin: 0px;
        /*padding-right: 15px;*/
        padding-right: 5px;
    }


@media (max-width: 767px) {
}

@media (min-width: 768px) {
   
}

@media (min-width: 900px) {
}

@media (min-width: 1200px) {
}

@media (min-width: 1500px) {
}
