﻿.modifiers
{

}
li {
    list-style: none;
}
.pop_container ul {
    border-top: solid 1px #ccc;
    color: #169fe6;
}
.pop_container li {
    border-bottom: solid 1px #ccc;
    font-size: 20px;
    min-height: 40px;
    cursor:pointer;
    /*垂直居中*/
    padding: 5px;
    margin: 0px auto;
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -moz-box;
    -moz-box-orient: horizontal;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -o-box;
    -o-box-orient: horizontal;
    -o-box-pack: center;
    -o-box-align: center;
    display: -ms-box;
    -ms-box-orient: horizontal;
    -ms-box-pack: center;
    -ms-box-align: center;
    display: box;
    box-orient: horizontal;
    box-pack: center;
    box-align: center;
}

.pop_container li:after
{
    content:">";
    position:absolute;
    right:20px;
    color:#ccc;
}
.center {
    padding:10px;
    margin: 0px auto;
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -moz-box;
    -moz-box-orient: horizontal;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -o-box;
    -o-box-orient: horizontal;
    -o-box-pack: center;
    -o-box-align: center;
    display: -ms-box;
    -ms-box-orient: horizontal;
    -ms-box-pack: center;
    -ms-box-align: center;
    display: box;
    box-orient: horizontal;
    box-pack: center;
    box-align: center;
}
.detailViewContainer {
    display: none;
    background-color: rebeccapurple;
    width: 100%;
    overflow: hidden;
}
.detailView {
    overflow-y: auto;
    width: 100%;
    top:30px;
    bottom:40px;
    position:absolute;
}
.addToCartDetailSubmitButton {
    height: 40px;
    position: absolute;
    bottom: 0px;
    text-align:center;
    color:white;
    background-color:dodgerblue;
    line-height:40px;
    width:100%;
    cursor:pointer;
    font-size:20px;
    font-weight:bold;
}
.detailViewQtyTD {
    text-align: center;
    vertical-align: middle;
    width:100px;
}
#detailTable td{
    padding-top:5px;
    padding-bottom:5px;
}
.optionTD {
    padding-left: 10px;
}
.buttonAdd {
    display: inline-block;
    width: 30px;
    height: 100%;
    background-color: deepskyblue;
    content: "+";
    color: white;
    float: left;
    padding-top:5px;
}
.buttonDesc {
    display: inline-block;
    width: 30px;
    height: 100%;
    background-color: darkred;
    content: "-";
    color: white;
    float: left;
    padding-top: 5px;
}
.detailViewQtyTD input[type=text] {
    width: 40px;
    height: 100%;
    display: inline-block;
    float: left;
    font-size:12px;
}
.detailViewQtyContainer {
    height: 30px;
    max-height:40px;
}
.cartListDiv {
    width: 100%;
    max-height: 180px;
    word-break: break-all;
    word-wrap: break-word;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 20px;
}
.cartListTitleTable 
{
    margin-top:5px;
}
.cartListTable 
{
    padding-left:5px;
}
.cartListTitleTable, .cartListTable {
    width: 100%;
}
#foodItemName {
    word-break: break-all;
    word-wrap: break-word;
}
.cartListTitleTable {
    border-bottom: solid 1px #ccc;
}
    .cartListTable tr {
        min-height: 30px;
        border-bottom: solid 1px #ccc;
    }
    .cartListTable td, .cartListTitleTable td{
        padding-top: 7px;
        padding-bottom: 7px;
    }
        .cartListTitleTable td:nth-child(1), .cartListTable td:nth-child(1) {
            width: 60%;
            padding-left: 5px;
        }
    .cartListTitleTable td:nth-child(2), .cartListTable td:nth-child(2) {
        width:20%;
    }
        .cartListTitleTable td:nth-child(3), .cartListTable td:nth-child(3) {
            width: 20%;
        }
        .cartListTitleTable td:nth-child(2), .cartListTitleTable td:nth-child(3) {
            text-align: left;
        }
        .cartListTable td:nth-child(2)
        {
            text-align:center;
        }
        .cartListTable td:nth-child(3)
        {
            text-align:right;
            padding-right:5px;
        }
        
        .hiddenDiv {
            display: none;
        }
.detailView checkBoxButton {
}
    .detailView .row {
        cursor:pointer;
        font-size: 18px;
        color: #5a4d4d;
        border-bottom: solid 1px #ccc;
    }
.detailView .priceDiv{
    color:#ccc;
    font-size:16px;
}
.memoFont {
    color: #ccc;
    font-size: 13px;
}
.clear {
    clear: both;
}
table {
    /*table-layout: fixed;*/
    word-wrap: break-word;
}


#pnlDiscountCode table {
    table-layout: auto;
}
div {
    word-wrap: break-word;
}

.detailView checkBoxButton[checked="checked"]:before, checkBoxButton[checked="true"]:before {
    color: dodgerblue;
    content: "✔";
    margin-right: 8px;
}
.detailView radioButton[checked="checked"]:before, radioButton[checked="true"]:before {
    color: dodgerblue;
    content: "✔";
    margin-right: 8px;
}
.detailView checkBoxButton:before
{
    content:"";
    margin-right:21px;
}

#pnlOrderTypeSelector a{
    cursor:pointer;
}
.store_navigation a{
    cursor:pointer;
}
.menu_nav a{
    cursor:pointer;
}

.overlay {
    display: none;
    position: fixed;
    content: '';
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}

    .overlay.visible {
        display: inline-block;
    }

.onesection div {
    color: #f6fbfe;
    padding-bottom:5px;
}

#labelAmount_checkout, #labelTip_checkout, #labelTax_checkout, #labelOrderTotal, .totals #labAmountSign {
    color: black;
}

/* Custom CSS by Jayo Victoriano */
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{
    float:left;
    padding-left: 15px;
    padding-right: 15px;
}

.col-md-12 {
    width: 100%;
  }
.col-md-11 {
    width: 91.66666667%;
  }
.col-md-10 {
    width: 83.33333333%;
  }
.col-md-9 {
    width: 75%;
  }
.col-md-8 {
    width: 66.66666667%;
  }
.col-md-7 {
    width: 58.33333333%;
  }
.col-md-6 {
    width: 50%;
  }
.col-md-5 {
    width: 41.66666667%;
  }
.col-md-4 {
    width: 33.33333333%;
  }
.col-md-3 {
    width: 25%;
  }
.col-md-2 {
    width: 16.66666667%;
  }
.col-md-1 {
    width: 8.33333333%;
  }