 /* menu shortcode */
#cafepress-menu-container .cafepress-menu-tab {
    margin: 0 auto;
    justify-content: center;
    overflow: hidden;
    display: flex;
}
  
/* Style the buttons inside the tab */
#cafepress-menu-container .cafepress-menu-tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid #ddd;
}
  
/* Change background color of buttons on hover */
#cafepress-menu-container .cafepress-menu-tab button:hover {
    background-color: #1653e0;
    color: #fff;
}
  
/* Create an active/current tablink class */
#cafepress-menu-container .cafepress-menu-tab button.active {
    background-color: #0446de;
    color: #fff;
}
  
/* Style the tab content */
#cafepress-menu-container .cafepress-menu-tabcontent {
    display: none;
    border-top: none;
}

#cafepress-menu-container .cafepress-menu-tabcontent.first {
    display: block;
}

#cafepress-menu-container .cafepress-menu-section {
    display: flex;
    flex-wrap: wrap;
}

#cafepress-menu-container .cafepress-menu-section .menu-items-inner-container {
    width: 50%;
    padding: 20px 0;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#cafepress-menu-container .cafepress-menu-section .menu-items-img-holder{
    object-fit: cover;
    padding-left: 20px;
    justify-content:left;
}

#cafepress-menu-container .cafepress-menu-section .menu-items-img-holder img{
    width: 150px;
    border: 1px solid #ccc;
}

#cafepress-menu-container .cafepress-menu-section .menu-items-content {
    padding: 10px 20px;
    width:100%;
}

#cafepress-menu-container .cafepress-menu-section .menu-items-inner-container .menu-items-upper-content,
#cafepress-menu-container .cafepress-menu-section .menu-items-inner-container .menu-items-bottom-content {
    justify-content: space-between;
    display: flex;
}

#cafepress-menu-container .cafepress-menu-section .menu-items-inner-container .menu-items-upper-content {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #0446de;
}

#cafepress-menu-container .cafepress-menu-section .menu-items-title{
    font-size:20px;
}

#cafepress-menu-container .cafepress-menu-section .menu-items-price{
    font-weight:600;
    font-size:20px;
    color: #0446de;
}

#cafepress-menu-container .cafepress-menu-section .menu-items-price del {
    font-size: 95%;
    color: #999
}

#cafepress-menu-container .cafepress-menu-section .cafepress-menu-add-cart-button {
    padding: 10px 20px;
    background-color: #0446de;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 167ms cubic-bezier(.33, 0, 0, 1);
    margin: 10px 0;
}

/* bottom mini cart */
#cafepress-bmc-container {
    position: relative;
}

#cafepress-bmc-container .cafepress-bmc-cart-button {
    user-select: none;
    z-index: 2147483000;
    position: fixed;
    bottom: 70px;
    right: 50px;
    transition: transform 167ms cubic-bezier(.33, 0, 0, 1);
    transform-origin: center center;
}

#cafepress-bmc-container .cafepress-bmc-cart-button .launcher-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: #0446de;
    transform: translate(-50%, -50%);
    transition: opacity .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 14%;
    border-radius: 50%;
    cursor: pointer;
}

#cafepress-bmc-container .cafepress-bmc-cart-button .launcher-default-open-icon {
    opacity: 1;
}

#cafepress-bmc-container .cafepress-bmc-cart-button .launcher-default-open-icon span {
    background-image: url(food-and-drink-icon.png);
    width: 32px;
    height: 32px;

}

#cafepress-bmc-container .cafepress-bmc-cart-button .launcher-minimize-icon {
    opacity: 0;
}

#cafepress-bmc-container .cafepress-bmc-cart-button .items-count {
    min-width: 24px;
    height: 24px;
    font-size: 12px;
    position: absolute;
    top: -33px;
    left: -33px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #cf2e2e;
    border-radius: 100%;
    color: #fff;
    z-index: 2147483100;
    font-weight: 600;
    line-height: 10px;
    box-sizing: border-box;
    padding: 2px;
}


#cafepress-bmc-container .cafepress-bmc-content {
    display: none;
    background-color: #fff;
    max-width: 400px;
    z-index: 2147483000;
    position: fixed;
    bottom: 110px;
    right: 20px;
    height: min(704px, 100% - 104px);
    min-height: 80px;
    width: 100%;
    max-height: 704px;
    box-shadow: rgba(0, 0, 0, .16) 0 5px 40px;
    border-radius: 16px;
    overflow: hidden;
}

#cafepress-bmc-container .cafepress-bmc-header-heading {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px;
}

#cafepress-bmc-container .cafepress-bmc-header-heading .cafepress-bmc-header-title {
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 20px;
}

#cafepress-bmc-container .cafepress-bmc-header-heading .cafepress-bmc-header-modal-close {
    cursor: pointer;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #fff;
}

#cafepress-bmc-container * {
    box-sizing: border-box;
}

#cafepress-bmc-container .cafepress-bmc-header {
    border-bottom: solid 1px #eaeaec;
    background-color: #0446de;
}

#cafepress-bmc-container .cafepress-bmc-cci-wrap {
    overflow: auto;
    position: relative;
    scrollbar-width: none;
    display: grid;
    grid-template-rows: 1fr;
    overflow-x: hidden;
    height: 75%;
}

#cafepress-bmc-container .cafepress-bmc-cci-has-items {
    padding-top: 16px;
}

#cafepress-bmc-container .cafepress-bmc-cci-cart-item {
    display: flex;
    height: auto;
    margin-bottom: 24px;
    position: relative;
    padding-left: 16px;
    padding-right: 16px;
    gap: 12px;
}

#cafepress-bmc-container .cafepress-bmc-cci-cart-item-image {
    text-decoration: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    width: 60px;
    flex: 0 0 60px;
    outline: 0;
    align-self: flex-start;
    height: 60px;
}

#cafepress-bmc-container .cafepress-bmc-cci-cart-item-image img {
    display: inline-block;
    height: auto;
    border-radius: 4px;
    border: 1px solid #dedfea;
    max-width: 100%;
    width: auto;
}

#cafepress-bmc-container .cafepress-bmc-cci-cart-item-desc {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#cafepress-bmc-container .cafepress-bmc-cci-cart-item-data-field {
    display: block;
    line-height: 1.4;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #24272d;
    outline: 0;
    margin-bottom: 2px;
}

#cafepress-bmc-container .cafepress-bmc-cci-line-item {
    margin-top: 8px;
}

#cafepress-bmc-container .cafepress-bmc-ccil-quantity-selector {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 0 0 1px #eaeaec;
    border-radius: 6px;
}

#cafepress-bmc-container .cafepress-bmc-ccil-quantity-button {
    appearance: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: #24272d;
    cursor: pointer;
    height: 24px;
    margin: 0;
    outline: 0;
    padding: 0;
    position: relative;
    text-align: center;
    text-indent: -9999em;
    width: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
}

#cafepress-bmc-container .cafepress-bmc-ccil-quantity-button svg {
    display: block;
    font-size: 8px;
    height: 10px;
    margin: 0 auto;
    text-align: center;
    width: 10px;
    color: #24272d;
}

#cafepress-bmc-container .cafepress-bmc-ccil-quantity__input {
    background-color: transparent;
    border: 0;
    outline: 0;
    min-height: 24px;
    height: 24px;
    max-height: 30px;
    min-width: 32px;
    width: 32px;
    padding: 0 4px;
    box-sizing: border-box;
    text-align: center;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    color: #24272d;
    box-shadow: 0 0 0 1px #eaeaec;
    border-radius: 0;
    margin-bottom: 0;
}

#cafepress-bmc-container .cafepress-bmc-cci-remove-item {
    display: inline-flex;
    cursor: pointer;
    text-decoration: underline;
    font-size: 12px;
    position: absolute;
    top: -5px;
    left: 10px;
    background: #dedfea;
    color: #24272d;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
}

#cafepress-bmc-container .cafepress-bmc-cci-cart-item-misc {
    min-width: 60px;
}

#cafepress-bmc-container .cafepress-bmc-cci-cart-price {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #24272d;
    text-align: right;
}

#cafepress-bmc-container .cafepress-bmc-cec-zero-state {
    display: flex;
    flex-direction: column;
    height: 90%;
    width: 100%;
    text-align: center;
    padding: 20px;
    justify-content: center;
}


#cafepress-bmc-container .cafepress-bmc-cec-zero-state-title {
    font-size: 18px;
    line-height: 1.3;
    margin: 6px 0;
    font-weight: 500;
}

#cafepress-bmc-container .cafepress-bmc-cec-zero-state-text {
    font-size: 14px;
    line-height: 1.3;
}

#cafepress-bmc-container .cafepress-bmc-cec-empty-button {
    padding: 12px 24px;
    line-height: 20px;
    background: #0446de;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    position: relative;
    outline: 0;
    color: #ffffff;
    border: 0;
    box-shadow: none;
    display: inline-flex;
    font-size: 14px;
    margin-top: 16px;
    align-self: center;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}   

#cafepress-bmc-container .cafepress-bmc-bp {
    border-top: 1px solid #eaeaec;
    padding: 16px;
    line-height: 1.3;
    font-weight: 500;
}

#cafepress-bmc-container .cafepress-bmc-bp .cafepress-bmc-bp-cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

#cafepress-bmc-container .cafepress-bmc-bp .cafepress-bmc-bp_checkout-button a {
    background-color: #0446de;
    border: 0;
    color: #fff;
    display: flex;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 14px;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    transition: all .2s ease-out;
    line-height: 20px;
    width: 100%;
    margin: 16px 0 0;
    border-radius: 3px;
}

@media screen and (max-width: 390px) {
    #cafepress-menu-container .cafepress-menu-tab {
        justify-content: left;
		overflow: auto;
        white-space: nowrap;
    }
	
	#cafepress-menu-container .cafepress-menu-tabcontent {
		margin: 0 10px;
	}

    #cafepress-menu-container .cafepress-menu-section .menu-items-inner-container {
        width: 100%;
    }

    #cafepress-menu-container .cafepress-menu-section .menu-items-img-holder {
        padding-left: 0;
    }

    #cafepress-menu-container .cafepress-menu-section .menu-items-img-holder img{
        width: 80px;
    }

    #cafepress-menu-container .cafepress-menu-section .menu-items-content {
        padding: 0 0 0 20px;
    }

    #cafepress-bmc-container .cafepress-bmc-cart-button {
        bottom: 35px;
        right: 35px;
    }

    #cafepress-bmc-container .cafepress-bmc-cci-wrap {
        height: 69%;
    }

    #cafepress-bmc-container .cafepress-bmc-content {
        right: 0;
        bottom: 80px;
    }
}