﻿/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}
ul, ol {
    list-style: none;
}
a {
    color: #333;
}

@font-face {
    font-family: 'SansMateo2-Bold';
    src: url('Webfonts/SansMateo2-Bold.woff') format('woff');
}

@font-face {
    font-family: 'SansMateo2-SemiBold';
    src: url('Webfonts/SansMateo2-SemiBold.woff') format('woff');
}

@font-face {
    font-family: 'SansMateo2-Medium';
    src: url('Webfonts/SansMateo2-Medium.woff') format('woff');
}
@font-face {
    font-family: 'akaDora';
    src: url('Webfonts/akaDora.ttf') format('truetype');
}
/*layout*/
html {
}

body {
    /*   background: url('imgs/bg.jpg') no-repeat;
    background-size: cover;*/
    background: url('imgs/background-texture.jpg');
    font-family: 'SansMateo2-Bold';
}

.bg-img {
    background: transparent url(imgs/Header.png) no-repeat center top;
    width: 100%;
    height: 74vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.body-content {
    /*background: url(imgs/Main.png) no-repeat top;
    background-size: cover;*/
    background: linear-gradient(transparent,#f6f0dc 250px);
    box-shadow: 2px 2px 20px #666;
    max-width: 716px;
    opacity: 1;
    position: relative;
    min-height: 100vh;
    padding: 0 32px;
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logorighttxt {
    font-size: 22px;
    max-width: 240px;
    width: 100%;
    text-shadow: 3px 3px 2px #000;
    color: #fff;
    text-align: center;
}

.cart-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 4px;
}

    .cart-wrap > * {
        display: block;
        margin: 0 3.5px;
    }

.menu-wrap {
    display: flex;
    flex-direction: row;
    margin-bottom: 8px;
    padding: 0 15px;min-height:44px;
}

    .menu-wrap .navbar-header {
        width: 150px;
    }

    .menu-wrap .navbar-collapse {
        max-width: 501px;
        background-size: cover;
        height: 40px;
        width: 100%;
        background: url('imgs/Menu-divider.png') no-repeat;
        padding: 0 0 0 36px;
    }

.navbar-nav > li > a {
    padding: 9px 12px;
    color: #333;
}
    .navbar-nav .sub-menu{
        margin:0 24px;
    }

    .navbar-nav > li > a:hover, .navbar-nav > li > a:visited, .navbar-nav > li > a:focus {
        background-color: transparent;
        text-decoration: underline;
    }

.select-wrap {
    text-align: center;
    position: relative;
}

.selectitile {
    font-size: 12px;
    position: absolute;
    top: -12px;
    left: 25px;
}

.selectoption {
    list-style: none;
    padding: 0;
    width: 138px;
    text-align: center;
    border-radius: 6px;
    background-color: white;
    border: 1px solid #333;
    color: black;
    height: 28px;
    margin-top: 6px;
    font-size: 14px;
}

    .selectoption option:disabled {
        font-size: 16px;
        color: #990000;
    }

.selectbottom {
    display: flex;
    justify-content: space-around;
    font-size: 16px;
}

    .selectbottom i {
        font-size: 12px;
    }

.content, footer {
    padding: 0 15px;
}

.go {
    position: absolute;
    right: -36px;
    top: 7px;
    border-radius: 4px;
    border: 1px solid #333;
    font-size: 16px;
}

.cart {
    color: #333;
}
/*homepage*/
.title {
    background: url(imgs/Title-Box.png) no-repeat;
    max-width: 621px;
    height: 77px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    font-size: 30px;
    padding-right: 3vw;
}
    .title.productname {
        font-size: 1.3vw;
        line-height: 1.2;
        align-items: flex-start;
        padding-left: 12px;
    }

    .title a {
        text-decoration: underline;
        color: #333;
        font-size: 12px;
    }

.home-products {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    flex-wrap: wrap;
}

    .home-products > .item {
        width: 32%;
        margin: 0 0 2%;
    }

    .home-products:after {
        content: "";
        width: 32%;
    }

.border {
    border: 3px solid #bfbfbf;
    border-radius: 14px;
    overflow: hidden;
}

.item-img {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    height: 200px;
    margin-bottom: 8px;
    position: relative;
}

    .item-img > img {
        margin: auto;max-height:100%;
    }
.item-img2 > img {
    min-width: 240px;
}
        .item-img > img + a {
            display: none;
        }

    .item-img:hover a {
        display: flex;
        background: rgba(255,255,255,0.7);
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

.item-content {
    padding: 4px 0;
    text-align: center;
}

.item-name {
    font-size: 12px;
    /*transform: scale(0.95);*/
    height: 33px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-price {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

    .item-price div:first-child {
        font-size: 18px;
    }

    .item-price div:last-child {
        font-size: 24px;
    }

.item-button {
    display: flex;
    justify-content: space-around;
    width: 86%;
    margin: auto;
    border-top: 2px solid #ccc;
    padding-top: 5px;
}

    .item-button a {
        border: 1px solid #ccc;
        border-radius: 4px;
        color: #333;
        padding: 2px;
        width: 48%;
        font-size: 12px;cursor:pointer;
    }

.home-ad {
    font-size: 11px;
    margin: 0 0 10px;
    font-family: 'SansMateo2-SemiBold';
}

.hm-bg1 {
    background: url(imgs/Info-Area-1.png) no-repeat;
    width: 66%;
    /*height: 20vw;*/ height: 26rem;
}

.hm-bg2 {
    background: url('imgs/Info-Area-2.png') no-repeat;
    /* height: 20vw;*/ height: 26rem;
    width: 31%;
}

.hm-bg3 {
    background: url('imgs/Info-Area-3.png') no-repeat;
    height: 16rem;
    width: 48.5%;
    text-align: center;
    padding: 9px;
}

.hm-bg4 {
    background: url(imgs/Info-Area-4.png) no-repeat;
    height: 16rem;
    width: 48.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 14px;
}
    .hm-bg4:hover{
        text-decoration:none;
    }

    .t1 {
        color: #ce4444;
        font-size: 16px;
    }

.btn-wrap2 {
    display: flex;
    justify-content: space-around;
    width: 85%;
    margin: auto;
}

    .btn-wrap2 a {
        color: #ce4444;
        font-size: 16px;
        font-style: italic;
        text-decoration: underline;
    }

.t3 {
    text-shadow: 3px 3px 5px #000;
    color: #ce4444;
    font-size: 30px;
    font-style: italic;
}

.t4 {
    align-self: self-end;
}

    .t4 a {
        color: #ce4444;
        font-size: 16px;
        font-style: italic;
        text-decoration: underline;
    }

.t5 {
    font-size: 24px;
    margin: 12px 0 4px;
}

.t6 {
    font-size: 14px;
    font-family: 'SansMateo2-Medium';
}

    .t6 li {
        margin: 5px 0;
    }

    .t6 a {
        color: #333;
    }

.footerdiv {
    display: flex;
    justify-content: center;
}

    .footerdiv a {
        margin: 1px 10px;
        color: #333;
    }

/*heritage*/
.paget1 {
    font-size: 18px;
    text-align: center;
}

.text {
    font-family: 'SansMateo2-Medium';
    font-size: 16px;
}

.h-t1 {
    font-style: italic;
    font-size: 16px;
    text-align: center;
}

.h-t2 {
    font-family: 'SansMateo2-Medium';
    font-size: 14px;
}

.support-t1 {
    font-size: 18px;
    font-family: 'SansMateo2-Medium';
    padding-left: 12px;
}

.support-vd > div {
    width: 48.5%;
    float: left;
}

    .support-vd > div:last-child {
        float: right;
    }


/*shoppingcart*/
.shoppingcart-list {
    width: 100%;
    border: solid 1px #666;
    /*max-width: 900px;*/
    margin: auto;
}

    .shoppingcart-list thead td {
        background-color: #6B696B;
        color: #fff;
        font-weight: bold;
        white-space: nowrap;
        padding: 5px 7px;
    }

    .shoppingcart-list tbody td {
        border-left: solid 1px #666;
        border-bottom: solid 1px #666;
    }

    .shoppingcart-list tbody tr td:first-child {
        border-left: none;
    }

    .shoppingcart-list tbody tr:nth-child(2n+1) td {
        background-color: #E1E0E0;
    }

    .shoppingcart-list tbody tr td {
        padding: 0 5px;
    }

        .shoppingcart-list tbody tr td .quantity {
            width: 80px;
            border: 1px solid #ccc;
            text-align: center;
            margin-top: 5px;
        }

        .shoppingcart-list tbody tr td img {
            max-height: 60px;
        }

        .shoppingcart-list tbody tr td.productimg {
            width: 86px;
            text-align: center;
        }

        .shoppingcart-list tbody tr td.centertd {
            text-align: center;
        }

        .shoppingcart-list tbody tr td.righttd {
            text-align: right;
        }

.shoppingtotal {
    width: 100%;
    display: flex;
    margin: 20px 0 10px;
    flex-direction: column;
    align-items: flex-end;
}

    .shoppingtotal label {
        display: inline-block;
        text-align: right;
        font-weight: bold;
        padding-right: 5px;
    }

        .shoppingtotal label a {
            font-weight: normal;
            color: #6c0101;
        }

.shippingmethod {
    border-top: solid 1px #ccc;
    margin-top: 20px;
    float: right;
}

.shoppingcart-action {
    text-align: right;
}

.continue-shopping {
    width: 115px;
    height: 25px;
    background: url(imgs/continue-shopping.jpg) no-repeat left top;
    border: none;
    cursor: pointer;
}

.checkout {
    width: 135px;
    height: 28px;
    background: url('imgs/check_out.gif') no-repeat left top;
    border: none;
    cursor: pointer;
}

.updatecart {
    width: 90px;
    height: 25px;
    background: url('imgs/update_order.gif') no-repeat left top;
    border: none;
    cursor: pointer;
}

.contactbox {
    background: #d3d2d2;
    height: 160px;
    overflow: hidden;
}

/*product detail*/
.top1 {
    display: flex;
    flex-direction: row;
    justify-content:center;
    /*justify-content:space-between;*/
}

.flex1 {
    flex: 1;
}
.flex {
    display: flex;
    align-items: center;
}

.flex3 {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.flex4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rateit-w-h {
    width: 110px;
    height: 22px;
}

.h-16p {
    height: 22px;
}
.rateit.rateit1 {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
#lab {
    font-size: 18px;
    font-family: "SansMateo2-Medium";
    font-style: italic;
}
.p-price {
    font-size: 30px;
    /*justify-content: flex-end;*/
    display: flex;
    align-items: center;
}

.selecttxt {
    font-size: 16px;
}

.p-select {
    border: 3px solid #7d7d7d;
    border-radius: 18px;
    text-align: center;
    padding: 5px 0;
}

.item-select-1 {
    font-size: 16px;
    font-weight: bold;
}

.item-select-2 {
    font-size: 12px;
}

.selecttable {
    width: 86%;
    margin: auto;
}

.icons img {
    width: 20px;
}

.item-head {
    font-size: 18px;
    font-weight: bold;
}

.item-select .selectoption {
    background: #fff;
    border: 1px solid #333;
}

.item-select .selectoption {
    width: 145px;
}

    .item-select .selectoption.width74 {
        width: 74px;
    }

.divOptions1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.optionsul, .optionsul li {
    padding: 0;
    margin: 0;
    font-size: 14px;width:100%;
}


        .optionsul li a, .dropoptions {
            text-decoration: none;
            display: block;
            border: solid 1px #ccc;
            padding: 5px;
            margin-top: 5px;border-radius:4px;
        }

.optionarea {
    max-width: 300px;
    width: 100%;
}

    .optionarea .optionsul li a {
    }

    .optionarea .dropoptions {
        width: 100%;
    }

.optionsul li a:hover {
    background-color: #eee;
    cursor: pointer;
    color: #000;
}

.dropoptions {
    border: solid 1px #ccc;
    border-radius: 0;
}

.optionsul li.curli a, .selectedul {
    border: solid 1px rgb(56,74,86);
    font-weight: bold;
    box-shadow: 0px 0px 4px rgb(56,74,86);
}
.item-review {
    display: flex;
    align-items: center;
    margin: 6px 0px;
    position: relative;
}
.qty-count, .qty-button {
    border: 3px solid #bfbfbf;
    border-radius: 8px;
    overflow: hidden;
    padding: 2px 12.5px;
    text-align: center;
    background-color: transparent;font-size:24px;
}
.qty-count{
    padding:2px 0;width:52px;
}
.rigthwrap {
    max-width: 218px;
    width: 100%;
}
.flex5{
    display:flex;margin-top:10px;justify-content:space-between;
}
.btn-calc {
    border: 3px solid #ccc;
    padding: 2px 7px;
    border-radius: 6px;
    font-size: 13px;
    align-self: center;
}
.btn-book {
    font-size: 14px;
    font-style: italic;
    display: flex;
    align-items: center;
}
    .btn-book > div {
        font-size: 12px;
        width: 54px;
    }
.p-content {
    margin-top: 12px;
}

.description *{
    font-family: 'SansMateo2-Medium' !important;
}
.description ul {
    list-style: disc;
    padding-left: 16px;
}

.book {
    background: url(/Content/imgs/Cookbook-withouttxt.png) no-repeat;
    background-size: contain;
    width: 100%;
    height: 556px;
    position: relative;
}

.bookwrap {
    display: flex;
    width: 120%;
}
    .bookwrap > div {
        display: flex;
        flex-direction: column;
        text-align: left;
        font-size: 12px;
        transform: scale(0.85);
        line-height: 19px;
        font-family: 'akaDora';
        word-spacing: -3px;
    }
       
        .bookwrap > div:nth-child(1) {
            padding: 92px 0px 0 35px;
            margin-right: -28px;
        }
        .bookwrap > div:nth-child(2) {
            padding: 92px 0px 0 11px;
            margin-right: -8px;
        }
        .bookwrap > div:nth-child(3) {
            padding: 10px 0px 0 0px;
            margin-right: -13px;
        }
        .bookwrap > div:nth-child(4) {
            padding-top: 10px;
        }
.recipe{
    cursor:pointer;
}
.recipe:hover {
   text-decoration:underline;
}
.layerme {
    background: url('imgs/RecipePopupBackground.png') no-repeat;
}
.searchbar input {
    font-size: 13px !important;
    border: 1px solid #333;
}
i.bi-plus:before {
    content: "\F63B";
}
.collapsed i.bi-plus:before {
    content: "\f64d";
}
.mw-90, .w-90 {
    width: 60px;
    margin: 0 6px;
}
.footsecure {
    width: 100%;
    flex-direction: column;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.freeshipping {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    min-width: 60px !important;
}

.ProductDescriptionTable td {
    padding: 3px;
}

.ProductDescriptionTable tbody tr:nth-child(2n) {
    background: #fff;
}

.ProductDescriptionTable tbody tr:nth-child(2n+1) {
    background: #eee;
}

.btn-recipe {
    width: 160px;
    height: 40px;
    position: absolute;
    bottom: 216px;
    right: 104px;
}
.m-btn-recipe {
    text-align: center;
    font-weight: bold;
    text-decoration: underline;margin-top:12px;
}
.layui-layer-iframe{
    max-width:602px !important;
}

.itemshort {
    display:none;
    position: absolute;
    background: rgba(255,255,255,0.9);
    font-size: 11px;
    font-weight: normal !important;
    line-height: 14px;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: clip;
    height: 100%;
    flex-flow: column;
    justify-content: center;
}
.cateitems:hover .itemshort {
    display: flex;
}
.itemshort li {
   display:block;
}
    .itemshort li:before {
        content: "•";
        display:inline;
    }

    .itemshort ul{
        padding-left:0;
    }
.calculateshipping {
    width: 123px;
    height: 25px;
    margin-bottom: 5px;
    cursor: pointer;
    border: none;
    outline: none;
    background: url(/content/imgs/calculate-shipping.jpg) no-repeat left 0px;
    text-indent: -999999em;
}

    .calculateshipping:hover {
        background-position: 0 -25px;
    }