﻿
h2.bmec-accountinfo-header {
    display: inline-block;
}

h2.bmec-inline-header {
    display: inline-block;
}

.bmec-accountinfo-section {
    margin-top: 4px;
    margin-bottom: 18px;
}

.bmec-customerinfo-changesuccessful {
    color: #008800;
}

/*---------------------------
        Login Screen
---------------------------*/
.bmec-rememberMe label {
    cursor: pointer;
}

.bmec-rememberMe {
    display: inline-block;
    margin: 0 8px 0 10px;
}

.bmec-required-asterisk {
    color: red;
    display: inline;
}

.bmec-unchangeable-field {
    display: inline-block;
}

.bmec-loginpage-textbox label {
    width: 90px;
}

/*---------------------------
        Catalog Menu
---------------------------*/

ul.bmec-category-menu, ul.bmec-subcategory-menu {
    padding: 0;
}

    ul.bmec-category-menu li {
        text-decoration: none;
        padding-left: 28px;
        display: none;
        word-wrap: break-word;
    }

    ul.bmec-category-menu.bmec-category-visible > li,
    ul.bmec-subcategory-menu.bmec-category-visible > li {
        display: block;
    }

.bmec-category-title, .bmec-category {
    display: inline-block;
}

.bmec-category-title {
    padding-left: 2px;
    font-weight: bold;
    font-size: 20px;
}

.bmec-category-menu li a {
    text-decoration: none;
    color: black;
    display: inline-block;
    padding: 2px 4px;
    width: 100%;
}

    .bmec-category-menu li a:hover {
        background-color: white;
    }

.bmec-subcategory-menu {
}

.bmec-category-expand {
    padding: 0 0px;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2vh 1.5vh 0 1.5vh;
    border-color: black transparent transparent transparent;
    display: inline-block;
    margin-top: 2vh;
    cursor: pointer;
    margin-left: -4vh;
    transform: rotateZ(-90deg);
}

.bmec-category-expandrotate {
    transform: none;
}

.bmec-category-showall {
    margin-left: 0;
}

.bmec-subcategory-item {
    cursor: pointer;
    transition: background-color .1s;
    padding-left: 16px;
}

    .bmec-subcategory-item:hover {
        background-color: rgb(223, 223, 223);
    }

/*---------------------------
    Product Catalog Page
---------------------------*/

/*Each Product Item*/
.bmec-product-item {
    padding-left: 2px;
    height: auto;
    min-height: 80px;
    margin: 5px 0px;
}

hr.bmec-product-hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(67, 67, 67, 1), rgba(0, 0, 0, 0));
}

/*Set the Height of Each Product Item*/
.bmec-product-item:after {
    content: "";
    display: table;
    clear: both;
}

/*Centers the Text on Each Product*/
.bmec-product-info-wrapper {
    display: table;
}

.bmec-product-info-wrapper2 {
    display: table-cell;
    vertical-align: middle;
}

/*+ and - on the Quantity Input Box*/
.bmec-product-incdec {
    display: block;
    padding-left: 2px;
    vertical-align: middle;
}

.bmec-product-dec, .bmec-cartdetailcheckout-dec {
    font-size: 45px;
    padding-right: 10px;
}

.bmec-product-inc, .bmec-product-dec, .bmec-cartdetailcheckout-inc, .bmec-cartdetailcheckout-dec {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    font-size: 52px;
    padding: 0 8px;
    display: inline-block;
    color: #4C4C4C;
}

.bmec-product-title {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 3px;
    text-shadow: #C5C5C5 1px 1px 3px;
    display: block;
}

.bmec-product-prices {
    display: block;
    vertical-align: top;
}

.bmec-product-salesprice {
    display: inline-block;
    font-weight: bold;
    font-size: 22px;
    padding-right: 10px;
}

.bmec-product-retailprice {
    display: inline-block;
    font-size: 18px;
    padding-right: 10px;
}

.bmec-product-deposit {
    display: inline-block;
    vertical-align: text-bottom;
}

.bmec-product-retail {
    font-size: 18px;
    padding-right: 10px;
}

.bmec-product-addtocart {
    font-size: 16px;
    border-radius: 5px;
    display: inline-block;
    clear: right;
}

.bmec-product-addtocart-button {
}

.bmec-product-logintopurchase {
    color: red;
    padding-top: 3px;
}

.bmec-product-info-wrapper2 form {
    float: left;
}

.bmec-product-outofstock {
    color: red;
}

.bmec-product-img {
    float: left;
    width: 100px;
    margin-right: 5px;
}

.bmec-product-dialog {
    width: 210px;
    height: 100px;
    background-color: white;
    border: 1px solid black;
    position: fixed;
    right: 1%;
    top: 1%;
    z-index: 5;
    opacity: 0;
    transition: opacity .5s;
    padding: 10px;
    box-shadow: 5px 5px black 5px;
    pointer-events: none;
}

    .bmec-product-dialog.bmec-dialog-visible {
        opacity: 1;
        animation: dialog-fade;
        animation-delay: 2s;
        animation-duration: 1.5s;
        animation-iteration-count: 1;
    }

@keyframes dialog-fade {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.bmec-product-learnmore {
    font-size: 16px;
    position: relative;
    margin-top: 4px;
}

.bmec-product-frequency-select {
    margin-top: 5px;
}

.bmec-product-addall {
    margin-top: 5px;
    margin-left: 106px;
    width: 120px;
}

.bmec-product-multipack-size {
    display: inline;
    padding-left: 2px;
}

/*---------------------------
     Product Info Page
---------------------------*/
.bmec-product-info-container {
    padding: 10px;
    margin: 10px;
    overflow: auto;
}

.bmec-product-info-img {
    float: left;
    max-width: 20%;
}

.bmec-product-info {
    margin-left: 25%;
}

.bmec-nutrition-info {
    padding: 10px 0;
}

.bmec-nutrition-info-img {
    max-width: 50%;
    margin-top: 20px;
}

.bmec-cart-item-name {
    text-transform: capitalize;
}

.bmec-product-detailprice {
    font-size: 18px;
    margin-bottom: 6px;
}

.bmec-product-description {
    padding: 10px 0;
}

.bmec-product-checkmark {
    background-image: url(images/checkmark.png);
    background-size: cover;
    width: 16px;
    height: 16px;
    display: inline-block;
}

/*---------------------------
       Header Links 
---------------------------*/

.bmec-cart {
    float: right;
}

.bmec-login {
    float: left;
}

#bmec-master-customer-wrapper {
    display: inline-block;
    border-right: 1px solid white;
    padding-right: 10px;
}

    #bmec-master-customer-wrapper > div, #bmec-master-customer-wrapper > input {
        display: block;
    }

    #bmec-master-customer-wrapper > a > input {
        font-size: 10px;
        border: 1px solid white;
    }

.bmec-login-username {
    display: inline-block;
}

.bmec-cart-price {
    text-align: center;
    width: 15%;
    display: none;
}


.bmec-guide-package, .bmec-guide-price {
    display: none;
}

.bmec-cart-total {
    max-width: 595px;
}

.bmec-cart-remove {
    min-width: 24px;
    text-align: left;
    color: red;
    cursor: pointer;
    background-image: url("images/delete.png");
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: center left;
    position: relative;
    left: 16px;
}

.bmec-cart-message {
    font-weight: bold;
}

.bmec-checkout-table {
    width: 100%;
}

.bmec-empty-cart {
    padding: 15px;
    font-weight: bold;
    font-size: 20px;
}

.bmec-cart-table thead tr th {
    cursor: initial;
    padding: 3px 5px;
}

.bmec-cart-table table tbody tr td {
    padding: 3px 5px;
}

.bmec-cart-table table thead tr th:nth-child(1) {
    text-align: left;
}

.bmec-cart-table table thead tr th:nth-child(2), .bmec-cart-table table thead tr th:nth-child(4) {
    text-align: right;
}

.bmec-cart-table table tbody tr:nth-child(odd) td,
.bmec-invoices-table tbody tr:nth-child(odd) td {
    background: rgba(255,255,255,0);
}

.bmec-invoices-table tbody tr:nth-child(even) td {
    background-color: rgba(0,0,0,.04);
}

.bmec-cart-table tbody tr:nth-child(even) td {
    background-color: rgba(0,0,0,.025);
}

.bmec-cart-table {
    width: 100%;
}

    .bmec-cart-table tr td {
        padding-left: 2px;
        padding: 3px 0px;
        min-width: 130px;
        line-height: 100%;
    }

.bmec-cart-qty input[type=text] {
    vertical-align: top;
    width: 72px;
    height: 32px;
    font-size: 1.5em;
    text-align: right;
    padding: 0px;
}

@media screen and (min-width: 1200px) {
    .bmec-cart-qty input[type=text] {
        font-size: 1.5em;
        height: 24px;
    }
}

.bmec-cart-earliestdelivery {
    padding-left: 10px !important;
}

.bmec-cart-notes {
    width: 440px;
    height: 80px;
    resize: none;
    min-height: 0px;
}

.bmec-cart-delivery-err {
    animation: error .2s;
}

@-webkit-keyframes error {
    0% {
        margin-left: 0px;
    }

    50% {
        margin-left: 10px;
    }

    100% {
        margin-left: 0px;
    }
}

@keyframes error {
    0% {
        margin-left: 0px;
    }

    50% {
        margin-left: 10px;
    }

    100% {
        margin-left: 0px;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.bmec-caps {
    text-transform: capitalize;
}

/*.widget-b-mobile-cart-details-widget {
    display: none;
}*/

#bmec-clear-cart-wrapper {
    margin-bottom: 10px;
}

    #bmec-clear-cart-wrapper > input {
        font-size: 12px;
    }

.bmec-cartdetailwidget-table {
    width: 100%;
}

    .bmec-cartdetailwidget-table table {
        width: 100%;
    }

        .bmec-cartdetailwidget-table table thead tr td {
            padding-top: 20px;
        }

        .bmec-cartdetailwidget-table table thead tr th {
            padding-bottom: 0px;
            padding-top: 4px;
            padding-bottom: 4px;
            cursor: initial;
        }

    .bmec-cartdetailwidget-table tr td {
        border-top: 1px rgb(229, 229, 229) solid;
        vertical-align: middle;
        padding: 4px 2px;
    }

    .bmec-cartdetailwidget-table table tr td:first-child {
        text-transform: capitalize;
    }

    .bmec-cartdetailwidget-table table tr td:nth-child(2), .bmec-cartdetailwidget-table table thead tr th:nth-child(2) {
        display: none;
    }

    .bmec-cartdetailwidget-table table tr td:last-child {
        text-align: right;
    }

.standing-order-text {
    font-weight: bold;
    text-transform: uppercase;
}

.bmec-cartdetailwidget-inc {
    padding-bottom: 2px;
    margin-bottom: 4px;
}

.bmec-cartdetailwidget-inc, .bmec-cartdetailwidget-dec {
    font-size: 36px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    margin-left: 6px;
    -webkit-user-select: none; /* Chrome all / Safari all */
    -moz-user-select: none; /* Firefox all */
    -ms-user-select: none; /* IE 10+ */
    user-select: none;
}

.bmec-cartdetailwidget-dec {
    float: right;
}

.bmec-cartdetailcheckout-inc, .bmec-cartdetailcheckout-dec {
    font-size: 3em;
    line-height: 18px;
    padding-left: 10px;
    cursor: pointer;
    text-align: center;
    -webkit-user-select: none; /* Chrome all / Safari all */
    -moz-user-select: none; /* Firefox all */
    -ms-user-select: none; /* IE 10+ */
    user-select: none;
}

.bmec-cartdetailwidget-remove {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    background: url("images/delete.png");
    background-size: cover;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    display: inline-block;
}

.bmec-cartdetailwidget-itemname {
    padding-right: 10px;
    text-transform: capitalize;
    max-width: 110px;
    overflow-wrap: break-word;
}

.bmec-cartdetailwidget-qty {
    min-width: 70px;
    width: 10%;
}

.bmec-cartdetailwidget-qtywrapper, .bmec-cartdetailwidget-qtybuttons {
    display: block;
}

.bmec-cartdetailwidget-total {
    min-width: 70px;
    text-align: right;
}

.bmec-cartdetailwidget-update {
    display: none;
}

.bmec-cartdetailwidget-quantity {
    width: 25px;
    vertical-align: middle;
    margin: 0px;
    padding: 1px;
    text-align: right;
    font-size: 14px;
}

.bmec-cartdetailwidget-name {
    padding-left: 2px;
}

.bmec-cartdetailwidget-refresh {
    display: none;
}

.bmec-cartdetailwidget-proceed {
    font-size: 12px;
    max-width: 13vw;
    width: 100%;
}

.bmec-cartdetailwidget-noitems {
    padding: 5px;
}

.bmec-cartdetailwidget-viewcart {
    margin: 5px 0 2px;
    width: 100%;
}

.bmec-cartdetailwidget-viewcart-top {
    font-size: 12px;
    float: right;
}


.bmec-cart-delivery-date-fail::after {
    content: "Please input a valid date";
    color: #8c0000;
    animation: fadein .5s;
}

.bmec-dateselector[readonly], .bmec-dateselector[readonly=true] {
    background-color: white;
    display: inline;
    background-image: url("images/calendar.png");
    background-size: contain;
    background-repeat: no-repeat;
    padding-left: 25px;
    width: 125px;
}

.bmec-checkout-deliverydate {
    display: inline;
}

    .bmec-checkout-deliverydate input {
        border-color: initial;
        transition: border-color .2s ease-in;
    }

.bmec-cart-delivery-date-fail {
    animation: error .15s;
    animation-timing-function: linear;
}

    .bmec-cart-delivery-date-fail input {
        border-color: #FD9C9C;
    }

.bmec-cart-continueshopping {
    display: inline-block;
    margin-bottom: .5em;
}

.bmec-delete-x {
    width: 14px;
    vertical-align: bottom;
}

/*---------------------------
      Invoices Table
---------------------------*/

.bmec-invoices-table, .bmec-undeliveredinvoices-table {
    text-transform: capitalize;
    margin-bottom: 18px;
}

    .bmec-invoices-table tr, .bmec-undeliveredinvoices-table tr {
        width: 100%;
    }

        .bmec-invoices-table tr td, .bmec-undeliveredinvoices-table tr td {
            padding: 5px 10px;
            vertical-align: middle;
        }

.bmec-invoices-id {
    min-width: 4%;
    text-align: left;
}

.bmec-invoices-orderdate {
    min-width: 12%;
    text-align: left;
}

.bmec-invoices-items {
    min-width: 50%;
}

.bmec-invoices-deliverydate {
    min-width: 115px;
    text-align: left;
}

.bmec-invoices-invoicedate {
    min-width: 115px;
    text-align: left;
}

.bmec-invoices-cost {
    min-width: 10%;
    text-align: left;
}

.bmec-invoices-reorder {
    text-align: center;
    cursor: pointer;
}

.bmec-invoices-cancel {
    color: red;
    cursor: pointer;
}

    .bmec-invoices-cancel:hover {
        text-decoration: underline;
    }

/*---------------------------
    Invoice Details Table
---------------------------*/
.bmec-invoiceInfo-list li {
    display: inline;
    margin-right: 10px;
    font-weight: bold;
}

.bmec-invoiceDetail-table {
    text-transform: capitalize;
    margin-bottom: 18px;
    width: 100%;
}

    .bmec-invoiceDetail-table tr {
        width: 100%;
    }

    .bmec-invoiceDetail-table tbody tr:nth-child(even) td {
        background-color: #FFCC80;
    }

    .bmec-invoiceDetail-table tr td {
        padding: 5px 10px;
        vertical-align: middle;
    }

    .bmec-invoiceDetail-table thead {
        background-color: #ffb84d;
    }

        .bmec-invoiceDetail-table thead tr td {
            text-align: left;
        }

.bmec-invoiceDetail-qty {
    min-width: 5%;
}

.bmec-invoiceDetail-product {
    min-width: 60%;
}

.bmec-invoiceDetail-unitPrice {
    min-width: 15%;
    text-align: right;
}

.bmec-invoiceDetail-nextPrice {
    min-width: 15%;
    text-align: right;
}

/*---------------------------
    Invoice Widget
---------------------------*/
.bmec-invoiceWidget-container, .bmec-presalewidget-container {
    padding: 10px 5px;
}

.bmec-invoiceWidget-tbody tr td, .bmec-presalewidget-tbody tr td {
    padding: 0px 5px;
}

/*---------------------------
    AJAX Loading Symbols
---------------------------*/
.bmec-ajaxloadingsymbol {
    background: url("images/ajax-loader.gif");
    display: inline-block;
    width: 16px;
    height: 16px;
    left: 2px;
    position: relative;
    top: 6px;
}

.bmec-recentorders-ajaxloadingsymbol {
    margin: 5px auto;
}

.bmec-products-ajaxloadingsymbol {
    margin: auto;
    width: 20px;
    height: 20px;
    background-size: cover;
    display: block;
}

/*---------------------------
   Recent Orders Widget
---------------------------*/

.bmec-recentorders {
    padding: 5px;
}

.bmec-recentorders-table {
    width: 98%;
}

    .bmec-recentorders-table tr td {
        padding-bottom: 2px;
    }

td.bmec-recentorders-price {
    text-align: right;
    padding: 0 0 0 10px;
}

td.bmec-recentorders-qty, td.bmec-recentorders-id {
    text-align: left;
    padding: 0 0 0 10px;
}

/*---------------------------
      Invoices Table
---------------------------*/

.bmec-previousorderdetails-table {
    width: 100%;
    max-width: 630px;
}

    .bmec-previousorderdetails-table tr td {
        padding: 5px;
    }

.bmec-previousorderdetails-info {
    padding: 8px 0px 6px 0px;
}

.bmec-previousorderdetails-orderdate, .bmec-previousorderdetails-deliverydate {
    display: inline;
}

.bmec-previousorderdetails-datechangebutton {
    margin: 0px;
    margin-left: 6px;
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
}

.bmec-previousorderdetails-edit {
    display: inline;
    margin-top: 0px;
}

.bmec-datechangebutton-visible {
    opacity: 1;
    pointer-events: all;
}

/*---------------------------
      Customer Guide
---------------------------*/
.bmec-guide-table {
    width: 100%;
}

    .bmec-guide-table tr td {
        padding: 5px;
    }

    .bmec-guide-table tbody tr:nth-child(odd) {
        background-color: #F1F1F1;
    }

.bmec-guide-qty, .bmec-product-qty {
    line-height: 100%;
    min-width: 130px;
    display: inline-block;
    vertical-align: middle;
}

    .bmec-guide-qty input[type=text], .bmec-product-qty input[type=text] {
        width: 70px;
        text-align: right;
        padding: 0 2px;
        margin-bottom: .5em;
        font-size: 1.5em;
        height: 1.5em;
    }

.bmec-guide-total {
    min-width: 55px;
    text-align: right;
}

.bmec-guide-addall {
    margin-right: .5em;
    width: 120px;
}

.bmec-guide-title {
    text-transform: capitalize;
    max-width: 250px;
}

/*---------------------------
    Manage Orders Widget
---------------------------*/
.bmec-manageorders-wrapper {
    padding: 4px 0px;
}

    .bmec-manageorders-wrapper div:first-child {
        font-weight: bold;
        /*text-transform:uppercase;*/
        font-size: 16px;
    }

.bmec-manageorders-orderdate {
    width: calc(100% - 25px);
    cursor: pointer;
    padding: 3px 5px;
    line-height: 15px;
    transition: background-color .1s;
    background: url(images/black_arrow.png);
    background-repeat: no-repeat;
    padding-left: 20px;
    background-position: left;
    background-position-x: 3px;
}

    .bmec-manageorders-orderdate:hover {
        background-color: rgb(223, 223, 223);
        text-decoration: none;
    }

.bmec-manageorders-resume {
    font-size: 11px;
    padding: 2px 4px;
    position: relative;
}

.bmec-manageorders-skip {
    font-size: 11px;
    padding: 2px 4px;
    position: relative;
    width: 46px;
    margin-bottom: 10px;
}

.bmec-manageorders-resume-cartdetails {
    font-size: 11px;
    padding: 2px 4px;
    position: relative;
    width: 52px;
}

.bmec-manageorders-nodates {
    padding: 5px;
}

.bmec-homedelivery-wrapper {
    padding: 5px;
}

    .bmec-homedelivery-wrapper table {
        width: 100%;
    }

        .bmec-homedelivery-wrapper table thead {
            display: none;
        }

        .bmec-homedelivery-wrapper table tbody tr td {
            display: inline-block;
            vertical-align: middle;
            width: 20%;
            text-align: right;
        }

            .bmec-homedelivery-wrapper table tbody tr td:first-child {
                text-align: left;
                width: 75%;
                font-weight: bold;
            }

            .bmec-homedelivery-wrapper table tbody tr td:nth-child(2) {
                /*width: 25%;*/
                text-align: right;
            }

            .bmec-homedelivery-wrapper table tbody tr td:first-child, .bmec-homedelivery-wrapper table tbody tr td:nth-child(2) {
                padding-top: 5px;
                text-transform: capitalize;
            }

            .bmec-homedelivery-wrapper table tbody tr td:last-child, .bmec-homedelivery-wrapper table tbody tr td:nth-child(3) {
                padding-bottom: 5px;
            }

.bmec-homedelivery-table {
    width: 100%;
}

.bmec-homedelivery-toprow td {
    padding-top: 5px;
}

.bmec-homedelivery-table tr:nth-child(odd) td:first-child {
    font-weight: bold;
}

.bmec-homedelivery-table tr td:last-child {
    text-align: right;
}

.bmec-homedelivery-table tr:nth-child(even) td {
    padding-bottom: 10px;
}

.bmec-homedelivery-bottomrow td {
    padding-bottom: 5px;
}

.bmec-homedelivery-date {
    font-size: 18px;
    text-align: center;
    padding: 10px;
    padding-bottom: 0px;
}

.bmec-homedelivery-name {
    text-transform: capitalize;
}

.bmec-homedelivery-duration {
    vertical-align: middle;
    text-align: right;
}

.bmec-homedelivery-qty {
    width: 75%;
    display: block;
    margin-left: 5%;
    display: inline-block !important;
    margin-bottom: 3px;
}

.bmec-homedelivery-price {
    text-align: right;
}

.bmec-homedelivery-inc {
    margin: 0 0 0 12px;
}

.bmec-homedelivery-inc, .bmec-homedelivery-dec {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    line-height: 70%;
    font-family: monospace;
    font-size: 26px;
    color: #4C4C4C;
    display: inline !important;
    margin-right: 2px;
}

.bmec-homedelivery-remove {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: url("images/delete.png");
    background-size: cover;
    width: 16px;
    height: 16px;
    display: inline-block !important;
    position: relative;
    top: 2px;
    cursor: pointer;
}

.bmec-homedelivery-qty td {
    padding-top: 0px !important;
}

.bmec-homedelivery-update {
    display: none;
}

button.bmec-homedelivery-confirm {
    width: 70%;
    font-size: 14px;
    margin: auto;
    display: block;
}

.bmec-homedelivery-cancel {
    text-align: center;
    padding: 3px 0px;
    font-size: 14px;
    width: 100%;
}

    .bmec-homedelivery-cancel a {
        cursor: pointer;
    }

.bmec-manageorders-orderdate.bmec-manageorders-currentdate {
    background-color: #E4E4E4;
}

.bmec-search-input {
    display: inline;
}

.bmec-search-submit {
    display: inline;
    vertical-align: top;
}

.bmec-portal-table {
    width: 100%;
}

.bmec-print-btn {
    font-size: 12px;
    padding: 2px 8px;
}

.bmec-reorder-btn {
    font-size: 12px;
    padding: 2px 8px;
}

.bmec-balance {
    margin-bottom: 2px;
}

.bmec-addressblock {
    display: inline-block;
    vertical-align: top;
}

.bmec-cardnumber-note {
    margin-left: 10px;
    max-width: 100%;
}


/*---------------------------
       Sign Up Page
---------------------------*/
.field-validation-error {
    display: block;
}

.bmec-howdidyouhear span.field-validation-error {
    padding: 0;
    margin-top: 2px;
}

.bmec-signup-progressbar {
    width: 100%;
    font-size: 0;
    margin: 20px 0 30px;
}

.bmec-signup-progressbar-step {
    height: 10%;
    width: 100%;
    display: inline-block;
    background-color: rgba(0,0,0,.06);
    margin: 0;
    font-size: 14px;
    text-align: center;
    padding: 11px 0;
    color: black;
    border-left: 0;
    margin-right: 3px;
}

    .bmec-signup-progressbar-step:first-child {
        border-radius: 10px 10px 0 0;
    }

    .bmec-signup-progressbar-step:last-child {
        border-radius: 0 0 10px 10px;
        border: none;
        margin-right: 0;
    }

.bmec-signup-progressbar-current {
    background-color: rgba(0, 0, 0, .175);
}

.bmec-signup-progressbar-finished {
    background-color: rgba(0, 0, 0, .05);
    color: rgba(0,0,0,.75);
}

#bmec-signup-form label {
    width: 120px;
    text-align: right;
    margin-right: 4px;
}

.bmec-howdidyouhear {
    padding-top: 50px;
}

    .bmec-howdidyouhear label {
        text-align: left !important;
        width: auto !important;
    }

.bmec-standingorder-desc {
}

    .bmec-standingorder-desc li {
        list-style-type: initial;
        padding: 2px 18px 4px 0;
        margin-left: 18px;
    }

@media screen and (min-width: 992px) {
    .widget-b-mobile-recent-orders-widget,
    .widget-b-mobile-invoice-widget {
        display: block;
    }

    .bmec-top-menu-item a {
        display: block;
    }


    .bmec-signup-progressbar-step {
        width: calc(25% - 3px);
    }

        .bmec-signup-progressbar-step:first-child {
            border-radius: 10px 0 0 10px;
        }

        .bmec-signup-progressbar-step:last-child {
            border-radius: 0 10px 10px 0;
            border: none;
            margin-right: 0;
        }

    .widget-b-mobile-cart-details-widget {
        display: block;
    }

    ul.bmec-category-toplevel > li {
        display: block;
    }

    .bmec-category-expand {
        border-width: 10px 7px 0 7px;
        margin-left: -22px;
        margin-top: 6px;
        float: left;
    }

    .bmec-category-showall {
        display: none;
    }

    .bmec-category-title {
        font-weight: initial;
        font-size: 16px;
        margin: 4px 0 6px;
    }

    /*Show the first three carousel items*/
    .bmec-carousel-item:nth-child(-n + 3) {
        display: table-cell;
    }

    .bmec-product-incdec {
        display: inline-block;
    }

    .bmec-product-inc, .bmec-product-dec, .bmec-cartdetailcheckout-inc, .bmec-cartdetailcheckout-dec {
        font-size: 42px;
    }

    .bmec-guide-package, .bmec-cart-price, .bmec-cart-package .bmec-guide-price {
        display: table-cell;
    }
}

.bmec-citystatezip, .bmec-expdate {
    display: inline-block;
}

.bmec-expdate {
    width: 210px;
}

@media screen and (min-width: 1400px) {
    .bmec-cardnumber-note {
        margin-left: 35px;
        max-width: none;
    }

    .field-validation-error {
        padding-left: 124px;
    }
}

.widget-b-mobile-product-filter-widget a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: black;
    font-size: 1em;
}

    .widget-b-mobile-product-filter-widget a:hover {
        text-decoration: underline;
    }

/*----------------------
    Breadcrumb css
----------------------*/
ul.breadcrumb {
    list-style: none;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
}

    ul.breadcrumb li {
        display: inline;
        font-weight: bold;
    }

        ul.breadcrumb li + li:before {
            padding: 5px;
            color: black;
            content: ">\00a0";
        }


.bmec-invoice-signature {
    height: 150px;
    width: auto;
    padding: 20px 0px;
}

/*----------------------
       Carousel
----------------------*/
.bmec-carousel-wrapper {
    display: table;
    width: calc(100% - 27px - 27px);
    font-size: 0;
}

.bmec-carousel-item {
    display: none;
    width: calc(100%/3);
    font-size: 16px;
    text-align: center;
    height: 150px;
    -webkit-transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -ms-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
    vertical-align: bottom;
    padding: 10px;
}

.bmec-carousel-image {
    max-width: 90%;
    max-height: 100px;
}

/*Show the first three carousel items*/
.bmec-carousel-item:nth-child(-n + 1) {
    display: table-cell;
}

.bmec-carousel-btn {
    position: relative;
    display: block;
    width: 0;
    height: 0;
    cursor: pointer;
    margin-top: 50px;
}

.bmec-carousel-left {
    border-style: solid;
    border-width: 16px 27.7px 16px 0;
    border-color: transparent #000000 transparent transparent;
    float: left;
}

.bmec-carousel-right {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 0 16px 27.7px;
    border-color: transparent transparent transparent #000000;
    float: right;
}

.bmec-carousel-oldprice {
    text-decoration: line-through;
}

.bmec-checkout-form {
    display: none;
    margin: 10px 0px;
    width: 100%;
    max-width: 250px;
}

.bmec-text-danger {
    color: red;
}

#bmec-presale-deleted {
    border: 2px solid red;
    background-color: #ff8989;
    padding: 5px;
}

/*----------------------
       Cart/Checkout
----------------------*/

#promo-added-checkmark {
    display: none;
}

.ui-datepicker-today a.ui-state-highlight {
    border-color: #d3d3d3;
    background: #e6e6e6 url(/themeroller/images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
    ;
    color: #555555;
}

.ui-datepicker-today.ui-datepicker-current-day a.ui-state-highlight {
    border-color: #aaaaaa;
    background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;
    color: #212121;
}
