/* Typography */
/* --------------------------------------- */

.meijer-guide h1 {
	font-size: 24px;
}
.meijer-guide h1.alt {
	font-weight: normal;
}
.meijer-guide h2 {
	font-size: 18px;
}
.meijer-guide h2.alt {
	font-weight: normal;
}
.meijer-guide h3 {
	font-size: 16px;
}
.meijer-guide h3.alt {
	font-weight: normal;
}
.meijer-guide h4 {
	font-size: 12px;
}
.meijer-guide h4.alt {
	font-weight: normal;
}

a {
	color: #dd1321;
}

a:hover {
	color: #a00d1b;
}

/* End of Typography */
/* --------------------------------------- */

/* Tooltip */
/* --------------------------------------- */
.mjr-tooltip {
    position: absolute;
    background: #fff;
    padding: 20px 25px 10px 15px;
    border: solid 1px #ccc;
    left: -165px;
    width: 400px;
    top: 32px;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition:all 0.3s ease;
}

.mjr-tooltip.reveal {
    visibility: visible;
    opacity: 1;
}

.mjr-tooltip:before {
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    visibility: visible;
    border-width: 14px;
    border-bottom-color: #ccc;
    top: -28px;
    left: 358px;
}

.mjr-tooltip:after {
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    visibility: visible;
    border-width: 12px;
    border-bottom-color: #fff;
    top: -24px;
    left: 360px;
}

.mjr-tooltip .mjr-close-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    width: 15px;
    height: 15px;
    background-size: 15px 15px;
}

/* End of Tooltip */
/* --------------------------------------- */

/* Buttons */
/* --------------------------------------- */

.qtyButton {
	position: relative;
	cursor: pointer;
	border-radius: 100%;
	background-color: #6faadd;
	color: #ffffff;
	width: 38px;
	height: 38px;
	border: none;
	font-weight: 700;
	font-size: 14px;
}

.qtyButton:hover {
	background-color: #2a83c5;
}

.qtyInput {
	width: 50px;
	padding: 7px 0;
	text-align: center;
	font-weight: 700;
	border-radius: 3px;
	border: solid 1px #cccccc;
	border-collapse: collapse;
}

.has-error .qtyInput {
	border-color: #D45A48;
	background: #F6DCD9;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.round_primary {
	position: relative;
	cursor: pointer;
	color: #ffffff;
	line-height: 38px;
	width: 100%;
	border: none;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
	border-radius: 25px;
	font-weight: 700;
	font-size: 14px;
}

.round_primary {
	background-color: #0a4d8c;
}

.round_primary:hover {
     background: #063057;
 }

.round_primary.attn:hover {
    background: #ae0f1a;
}

.round_secondary {
	background-color: #dd1321;
}

.round_secondary:hover {
	background: #a00d1b;
}

.round_primary.disabled,
.round_primary[disabled=disabled],
.round_primary:disabled {
	background: #cccccc;
}

/* End of Buttons */
/* --------------------------------------- */

/* End of Custom Classes */
/* --------------------------------------- */

@media (min-width: 768px) {
	.desktop-hide {
		display: none;
	}
}

@media (max-width: 767px) {
	.mobile-hide {
		display: none;
	}
}

.sale-tag {
	display: block;
	color: #dd1321;
	text-transform: uppercase;
	font-weight: 700;
}

.availability-message {
    color: #575a5d;
    font-weight: 700;
}

/* End of Custom Classes */
/* --------------------------------------- */

/* Colors */
/* --------------------------------------- */

/*PRIMARY COLORS*/
.mjr_primary,
.sale {
	color: #dd1321;
}
.mjr_primary_selected {
	color: #a00d1b;
}
.mjr_secondary {
	color: #0a4d8c;
}
.mjr_secondary_selected {
	color: #063057;
}
.mjr_accent {
	color: #66abde;
}
.mjr_accent_selected {
	color: #2a83c5;
}

/*ALTERNET COLORS*/
.alt1 {
	color: #a9cdef;
}
.alt2 {
	color: #44ad3a;
}
.alt3 {
	color: #e36f1d;
}

/*VALUES*/
.dark_grey {
	color: #575a5d;
}
.medium_grey1 {
	color: #989798;
}
.medium_grey2 {
	color: #cccccc;
}
.light_grey {
	color: #e5e5e5;
}
.parchment {
	color: #f2f2f2;
}

/* End of Colors */
/* --------------------------------------- */

/* Flexbox layout */
/* --------------------------------------- */

/*Basic Grid Styles*/

/*PARENT*/
.mjr_grid {
	padding: 0;
	margin: 0;
	list-style: none;

	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-flex-flow: row wrap;
}

/*CHILDREN*/
.mjr_grid-cell {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

/* Alignment per row */
.mjr_grid--top {
	align-items: flex-start;
}
.mjr_grid--bottom {
	align-items: flex-end;
}
.mjr_grid--center {
	align-items: center;
}

/* Alignment per cell */
.mjr_grid-cell--top {
	align-self: flex-start;
}
.mjr_grid-cell--bottom {
	align-self: flex-end;
}
.mjr_grid-cell--center {
	align-self: center;
}

/* End of Flexbox layout */
/* --------------------------------------- */


/* Product Detail (PDP) */
/* --------------------------------------- */

#pdp-actions.mjr_grid {
    border: 0;
    border-top: 1px solid #f2f2f2;
    padding-top: 20px;
    max-width: 460px;
    margin: 20px auto 10px auto;
    position:relative;
}

#pdp-qty.mjr_grid-cell {
    flex: 0 0 135px;
    padding-right: 15px;
    margin-bottom: 15px;
    padding-left: 0px;
}

#qty-stock-block .mjr-disabled {
    margin: 0 auto;
    display: block;
}

#product .detail-price {
    position: relative;
}

.nutritional-block {
    margin-bottom: 25px;
}

#product-ingredients p {text-transform: capitalize;}

#regulatory-claims {
    list-style: none;
}

#regulatory-claims-more-link {
    display: none;
}

@media (max-width: 450px) {
    #regulatory-claims.hideme .tag-hidden {
        display: none;
    }
    #regulatory-claims-more-link {
        display: block;
    }
    #regulatory-claims-more-link.hideFromDesktop {
        display: none;
    }
}

#product-disclaimer-copy.hideme {
    display: none;
}

.nutritional-info-wrapper {
    overflow: hidden;
    margin: 5px 0 20px 0;
    color: #fff;
}

.nutritional-info-wrapper div {
    background: #575a5d;
    width: 55px;
    height: 55px;
    border-radius: 5px;
    text-align: center;
    margin-right: 10px;
}

.nutritional-info-wrapper div .nut-val {
    font-size: 24px;
    line-height: 1;
    padding-top: 8px;
    display: block;
    font-weight: bold;
}

.nutritional-info-wrapper div .nut-label {
    display: block;
    font-size: 12px;
}

#more-nutrition-info {
    /*display: none; add this back if we want to show/hide */
    clear:left;
    background: #fff;
    color: #575a5d;
    border: solid 2px;
    padding: 15px 0px 0px 10px;
    margin-bottom: 15px;
    max-width: 316px;
}

#nutritional-wrapper {
    background: #f2f2f2;
    padding:25px 15px; 0px 15px;
    margin-top: 50px;
}

.nutiTitle {
    font-size: 24px;
    font-weight: bold;
    border-bottom: solid 1px;
    margin: 0 15px 10px 0;
    padding-bottom: 5px;
}

#servingsSize {
    overflow: hidden;
    font-size: 16px;
    font-weight: bold;
    margin: 0 15px 5px 0;
}

.nutri_details_tablewrapper .nutri_details table{margin:0; padding:0; width:100%; height:auto;}
.nutri_details_tablewrapper .nutri_details thead {float: left;width: 100%;}
.nutri_details_tablewrapper .nutri_details thead tr {float: left; width:100%;}
.nutri_details_tablewrapper .nutri_details tbody tr {border-bottom: 1px solid #000;float: left;text-align: left;width:100%; font-size: 12px;}

.nutri-normal-text, .nutri-bold-text {font-size: 14px; color: #575a5d;}
.nutri-normal-text {font-weight: normal;}
.nutri-bold-text {font-weight: bold !important;}
.nutri-small-text {font-size: 12px;}
.nutri-dot-text {font-size: 20px; font-weight: bold; line-height: 8px;}
.nutri-right-text {text-align: right;}
.nutri-center-text {text-align: center;}

/* Nutri Table */
.nutri-table-container {padding: 0 10px 0 0; margin: 0 0 30px 0;}
.nutri-table-container table tr td {float: left;}
.nutri-table-container table {width: 100%; border-top: 7px solid #575a5d;}
.nutri-table-container table#nutiTabelHead,
.nutri-table-container table#nutiTabelVit-Min { border-top: 10px solid #575a5d;}
.nutri-table-container table tr {
    border-bottom: solid 1px;
}
.nutri-table-container table#nutiTabelHead tr {
    border: none;
}
.nutri-table-container table thead tr th,
.nutri-table-container table tbody tr td {padding: 5px 0;}
.nutri-table-container table tbody tr#label-calories td {
    font-size: 28px;
    font-weight: bold;
    padding: 0;
    line-height: .75;
}
.nutri-table-no-border {border-bottom: none !important;}
.nutri-table-column-padding {padding: 5px 40px 5px 0 !important;}

#nutiTabelVit-Min td.nutri-normal-text {
    text-transform: capitalize;
}


/* End of Product Detail (PDP) */
/* --------------------------------------- */


/* Quick Shop Landing */
/* --------------------------------------- */

#qsLanding .breadcrumb {
    font-size: 11px;
}

@media (max-width: 768px) {
    #qsLanding .breadcrumb.desktop {
        display:none;
    }
    #qsLanding .mobile-breadcrumb {
        display:block;
    }
}

#qsLanding .breadcrumb.desktop > li:last-child,
#qsLanding .breadcrumb.desktop > li:last-child a {
    color:#0a4d8c;
    font-size:11px;
}

#qsLanding .breadcrumb > li:last-child i {
    color:#0a4d8c;
    font-size:8px;
    top:0;
}

#qsLanding .mobile-breadcrumb a {
    color:#989798;
    font-size:11px;
    font-weight:normal;
}

#qsLanding .mobile-breadcrumb a:hover {
    color:#dd1321;
}

#qsLanding .mobile-breadcrumb > li .icon-meijer_breadcrumb {
    color:#989798;
    font-size:8px;
    top:0;
}

#qsLanding .breadcrumb > li:last-child span {
    padding:13px 3px;
    display:inline;
    vertical-align: inherit;
}

#qsLanding .mjr_grid {
    clear:both;
}

#qsLanding h4 {
    margin-bottom:5px;
}

#qsLanding .mjr_grid {
    font-size:12px;
}
#qsLanding .accountSection h4 {
    font-size:14px;
}
@media (max-width: 768px) {
    #qsLanding .accountSection h4 {
        font-size:16px;
    }
}
@media (max-width: 588px) {
    #qsLanding .mjr_grid,
    #qsLanding .mjr_grid h4 {
        font-size:14px;
    }
    #qsLanding .accountSection h4 {
        font-size:20px;
    }
}

#qsLanding .yourSection h4 {
    font-weight:bold;
}

#qsLanding .infoIcon {
    width:40px;
    margin:0 auto 20px auto;
}
#qsLanding .infoIcon.cart i {
     font-size:45px;
}
#qsLanding .infoIcon.heart i {
    font-size:43px;
}
#qsLanding .infoIcon.checkmark {
    width:38px;
    height:38px;
    position:relative;
    border:3px solid #0a4d8c;
    border-radius: 20px 20px 20px 20px;
    -moz-border-radius: 20px 20px 20px 20px;
    -webkit-border-radius: 20px 20px 20px 20px;
}
#qsLanding .infoIcon.checkmark .innerWrap {
    width:16px;
    position:absolute;
    left:8px;
    top:7px;
}
#qsLanding .infoIcon.checkmark .innerWrap img {
    width:16px; /* IE */
}

@media (max-width: 588px) {
    #qsLanding .quickshopLanding .infoIcon {
        width:55px;
    }
    #qsLanding .quickshopLanding .infoIcon.cart i {
        font-size:60px;
    }
    #qsLanding .quickshopLanding .infoIcon.heart {
        margin-top:25px;
    }
    #qsLanding .quickshopLanding .infoIcon.heart i {
        font-size:55px;
    }
    #qsLanding .quickshopLanding .infoIcon.checkmark {
        margin-top:25px;
        margin-bottom:25px;
        width:50px;
        height:50px;
        border-radius: 30px 30px 30px 30px;
        -moz-border-radius: 30px 30px 30px 30px;
        -webkit-border-radius: 30px 30px 30px 30px;
    }
    #qsLanding .quickshopLanding .infoIcon.checkmark .innerWrap {
        width:20px;
        left:11px;
        top:12px;
    }
    #qsLanding .quickshopLanding .infoIcon.checkmark .innerWrap img {
        width:20px; /* IE */
    }
}

#qsLanding .infoIcon.checkmark .checkMark {
    fill:#0a4d8c;
}

#qsLanding .imageWrap {
    padding:10px 0 25px 0;
}
#qsLanding .qsAssortedItems {
    margin:0 auto;
    background: url("../images/quickshop-assorted-items.png");
    background-size:100% auto;
    background-repeat: no-repeat;
    width: 500px;
    min-height:200px;
}
@media (max-width: 550px) {
    #qsLanding .imageWrap {
        padding:10px 0 5px 0;
    }
    #qsLanding .qsAssortedItems {
        width:100%;
        min-height:150px;
    }
}

#qsLanding .yourSection {
    margin-top:0;
}
#qsLanding .accountSection {
    margin-bottom:60px;
}
@media (max-width: 588px) {
    #qsLanding .yourSection {
        display:block;
        margin-top:0;
    }
    #qsLanding .accountSection {
        display:block;
        margin-top:10px;
        margin-bottom:30px;
    }
}

#qsLanding .accountSection .mjr_grid-cell {
    position:relative;
    padding-bottom:35px;
}

#qsLanding .yourSection .mjr_grid-cell.middle {
    padding:0 60px;
}

#qsLanding .accountSection .mjr_grid-cell.leftSide {
    padding-right:60px;
}

#qsLanding .accountSection .mjr_grid-cell.rightSide {
    padding-left:35px;
    border-left:1px solid #ccc;
}

@media (max-width: 768px) {
    #qsLanding .accountSection .mjr_grid-cell {
        -webkit-flex: 100%;
        -ms-flex: 100%;
        flex: 100%;
    }
    #qsLanding .accountSection .mjr_grid-cell.leftSide {
        padding-left:0;
        padding-right:20px;
    }
    #qsLanding .accountSection .mjr_grid-cell.rightSide {
        padding-left:0;
        padding-right:0;
        border-left: none;
    }
}

@media (max-width: 588px) {
    #qsLanding .yourSection .mjr_grid-cell {
        -webkit-flex: 100%;
        -ms-flex: 100%;
        flex: 100%;
        padding-right:30px;
        padding-left:30px;
    }

    #qsLanding .yourSection .mjr_grid-cell.middle {
        padding-left:30px;
        padding-right:30px;
    }
}

#qsLanding .accountSection .mjr_grid-cell p {
    margin-bottom:35px;
}
@media (max-width: 768px) {
    #qsLanding .accountSection .mjr_grid-cell p {
        margin-bottom:20px;
    }
}

/* qs buttons */

#qsLanding .accountSection .accountBtn {
    position:absolute;
    bottom:0;
    left:0;
    margin-bottom:0;
    width:125px;
}

#qsLanding .accountSection .accountBtn.right {
    left:35px;
}

@media (max-width: 768px) {
    #qsLanding .accountSection .accountBtn {
        display:inline-block;
        position:relative;
        margin-bottom:35px;
        width:125px;
    }
    #qsLanding .accountSection .accountBtn.right {
        left:0;
    }

}
@media (max-width: 588px) {
    #qsLanding .accountSection .accountBtn {
        width:50%;
    }
}


/* QS Partial Content - No Orders, No Favorites */

#qsLanding .quickshopLanding .sectionEmpty {
    padding:30px 0;
    font-size:12px;
    width:60%;
    margin:0 auto;
}
@media (max-width: 768px) {
    #qsLanding .main-content.quickshopLanding {
        padding:0;
    }
    #qsLanding .quickshopLanding .sectionEmpty {
        width: 80%;
        margin:0 auto;
    }
}
@media (max-width: 588px) {
    #qsLanding .quickshopLanding .sectionEmpty {
        width: 95%;
        margin:0 auto;
        font-size:14px;
        padding:0 0 25px 0;
    }
    #qsLanding .quickshopLanding .favoritedItems .sectionEmpty {
        width: 80%;
        margin:0 auto;
        font-size:14px;
    }
}

#qsLanding .quickshopLanding .sectionEmpty h5 {
    font-weight:bold;
    font-size:16px;
}

#qsLanding .quickshopLanding .sectionEmpty.favs {
    margin-bottom:30px;
}

#qsLanding .quickshopLanding .sectionEmpty .infoIcon {
    width:65px;
}

#qsLanding .quickshopLanding .sectionEmpty .leftSide .infoIcon {
    margin:0 auto;
}

#qsLanding .quickshopLanding .sectionEmpty .infoIcon.cart i {
    font-size:70px;
}

#qsLanding .quickshopLanding .sectionEmpty .infoIcon.heart i {
    font-size:65px;
}

@media (max-width: 768px) {
    #qsLanding .frequentPurchases .quickShopHeadline,
    #qsLanding .favoritedItems .quickShopHeadline {
        margin-left:-8px;
    }
    #qsLanding .quickshopLanding .sectionEmpty .infoIcon {
        width:100px;
    }
    #qsLanding .quickshopLanding .sectionEmpty .infoIcon.cart i {
        font-size:85px;
    }
    #qsLanding .quickshopLanding .sectionEmpty .infoIcon.heart i {
        font-size:80px;
    }
}
@media (max-width: 588px) {
    #qsLanding .favoritedItems .quickShopHeadline {
        margin-left:0;
    }
    #qsLanding .quickshopLanding .sectionEmpty h5 {
        font-size:18px;
    }
    #qsLanding .quickshopLanding .sectionEmpty .infoIcon.cart i {
        font-size:70px;
    }
    #qsLanding .quickshopLanding .sectionEmpty .infoIcon.heart i {
        font-size:65px;
    }
}

#qsLanding .quickshopLanding .sectionEmpty .leftSide {
    float:left !important;
    clear:left;
    text-align:center;
    padding:0 15px 0 0;
}
#qsLanding .quickshopLanding .sectionEmpty .rightSide {
    margin-left:90px;
}
@media (max-width: 768px) {
    #qsLanding .quickshopLanding .sectionEmpty .leftSide {
        padding-right:20px;
    }
    #qsLanding .quickshopLanding .sectionEmpty .rightSide {
        margin-left:115px;
    }
}
@media (max-width: 588px) {
    #qsLanding .quickshopLanding .sectionEmpty .leftSide {
        padding:0;
        float:none;
        width:100%;
    }
    #qsLanding .quickshopLanding .sectionEmpty .rightSide {
        margin:0;
        clear:left;
        padding:5px 0 0 0;
        text-align:center;
    }
}



/*  QS Layer */

.quickShop-splash h3 {
    font-size: 20px;
    font-weight:bold;
    margin-top:10px;
}

.quickShop-splash h4 {
    font-size:12px;
    margin-bottom:5px;
    font-weight:bold;
}

#pgwModal.qsRecommend .pm-body #modalContent {
    height:100%;
    position:relative !important;
}
@media (max-width: 588px) {
    .quickShop-splash h4 {
        font-size:14px;
    }
    #pgwModal.qsRecommend .pm-body {
        box-sizing:border-box;
        position: absolute;
        left: 0;
        right:0;
        top: 0;
        max-width:100% !important;
        width: 100%;
    }
    #pgwModal.qsRecommend .pm-content {
        background:#fff !important;
    }
}

.pgwModal .quickShop-splash {
    padding:10px 20px 20px 20px;
    margin:10px;
}

.quickShop-splash .section {
    border-bottom:1px solid #ccc;
    padding:15px 0;
    font-size:12px;
}
.quickShop-splash .section:last-child {
    border-bottom:none;
    margin-bottom:5px;
}
@media (max-width: 588px) {
    .quickShop-splash .section {
        font-size:14px;
    }
    .quickShop-splash .section:last-child {
        margin-bottom:50px;
    }
}

.quickShop-splash .section .leftSide {
    float:left;
    clear:left;
    text-align:center;
    padding:10px 40px 0 15px;
}
.quickShop-splash .section .rightSide {
    margin-left:110px;
}
@media (max-width: 588px) {
    .quickShop-splash .section .leftSide {
        padding:10px 20px 0 0px;
    }
    .quickShop-splash .section .rightSide {
        margin-left:60px;
    }
}

.quickShop-splash .leftSide .infoIcon {
    margin:0 auto;
}

#pgwModal.qsRecommend .buttonContainer .dontShow {
    margin-right:50px;
    font-size:12px;
}
@media (max-width: 588px) {
    #pgwModal.qsRecommend .buttonContainer .dontShow {
        margin-left: 20px;
        margin-right:0;
        float: left;
        font-size: 14px;
        width: 40%;
        text-align: left;
        padding-left: 23px;
    }
    #pgwModal.qsRecommend .buttonContainer .dontShow input {
        margin-left: -23px;
        width:15px;
        height:15px;
    }
}
#pgwModal.qsRecommend #modalContent.basicModal .buttonContainer {
    position: static;
    box-sizing:border-box;
    width:100%;
}
@media only screen
and (min-device-width : 414px)
and (max-device-width : 736px)
and (orientation : portrait) {
    /* iPhone 6 plus */
    #pgwModal.qsRecommend #modalContent.basicModal .buttonContainer {
        position: fixed !important;
        bottom:0;
    }
    #pgwModal.qsRecommend .pm-body {
        min-height:736px;
    }
}
@media (max-width: 588px) {
    #pgwModal.qsRecommend #modalContent.basicModal .buttonContainer {
        position: fixed !important;
        bottom:0;
    }
}



/* End of Quick Shop Landing */
/* --------------------------------------- */

/* Order Summary */
/* --------------------------------------- */

/*#itemList.mjr-editable .mjr_grid {
	margin-bottom: 1%;
}
@media (max-width: 588px) {
	#itemList.mjr-editable .mjr_grid {
		margin-bottom: 2%;
	}
}

#itemList.mjr-editable .mjr_grid_head {
	margin-bottom: 1%;
	border-bottom: solid 1px #e5e5e5;
}
@media (max-width: 588px) {
	#itemList.mjr-editable .mjr_grid_head {
		margin-bottom: 2%;
	}
}

#itemList.mjr-editable .mjr_grid--title > .mjr_grid-cell:first-of-type {
	flex: 0 0 77%;
}

#itemList.mjr-editable .edit_mode .mjr_grid--title > .mjr_grid-cell:first-of-type {
	flex: 0 0 50%;
}

@media (max-width: 588px) {
	#itemList.mjr-editable .edit_mode .mjr_grid--title > .mjr_grid-cell:first-of-type {
		flex: 1 0 50%;
	}
}

#itemList.mjr-editable .mjr_grid--thumb > .mjr_grid-cell:first-of-type {
	-webkit-flex: .1;
	-ms-flex: .1;
	flex: .1;
}

#itemList.mjr-editable .product_name {
	padding-right: 10px;
}

#itemList.mjr-editable .product_image {
	min-width: 54px;
}

#itemList.mjr-editable .product_price {
	-webkit-flex: .2;
	-ms-flex: .2;
	flex: .2;
}

#itemList.mjr-editable .edit_mode .product_price {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#itemList.mjr-editable .edit_mode .product_qty {
	-webkit-flex: 3;
	-ms-flex: 3;
	flex: 3;
}

@media (max-width: 588px) {
	#itemList.mjr-editable .edit_mode .product_qty {
		-webkit-flex: 50%;
		-ms-flex: 50%;
		flex: 50%;
	}
}

@media (max-width: 588px) {
	#itemList.mjr-editable .edit_mode .product_qty_head,
	#itemList.mjr-editable .edit_mode .product_remove_head {
		display: none;
	}
}

#itemList.mjr-editable .product_price,
#itemList.mjr-editable .product_qty,
#itemList.mjr-editable .product_remove {
	text-align: center;
	font-weight: 700;
	font-size: 115%;
}

#itemList.mjr-editable .product_remove,
#itemList.mjr-editable .edit_mode .product_remove a {
	font-weight: 700;
	text-decoration: none;
	font-size: 100%;
}

#itemList.mjr-editable .product_price_head,
#itemList.mjr-editable .product_qty_head,
#itemList.mjr-editable .product_image_head {
	font-weight: 700;
	font-size: 100%;
}

@media (max-width: 588px) {
	#itemList.mjr-editable .edit_mode .product_qty {
		text-align: left;
	}
	#itemList.mjr-editable .product_price,
	#itemList.mjr-editable .edit_mode .product_remove {
		text-align: right;
	}
	#itemList.mjr-editable .edit_mode .product_qty,
	#itemList.mjr-editable .edit_mode .product_remove {
		margin-top: 3%
	}
}

#itemList.mjr-editable .uom small {
	font-size: 75%;
}

#itemList.mjr-editable .uom.deposit {
	color: #989798;
	font-size: 88%;
	display: block;
}

@media (max-width: 700px) {
	#itemList.mjr-editable .uom {
		display: block;
	}
}*/

/* End of Order Summary */
/* --------------------------------------- */

/* Tier Pages */
/* --------------------------------------- */

@media (min-width: 766px) {
    #category-wrapper {
        padding: 30px 15px;
    }
    #thumbnail.catalog.search #category-wrapper {
        display: none;
    }

}

#category-wrapper ul li {
    list-style: none;
}

/* End of Tier Pages */
/* --------------------------------------- */

/* Product Thumbs */
/* --------------------------------------- */

@media (max-width: 766px) {
	.list-view ul {
		padding: 0 20px;
		width: 100%;
	}
}

.thumbnail-container .gridViewButtons .btn-default {
	background-color:white;
	color:#cccccc;
	border:none;
	padding:0 3px;
}

.thumbnail-container .gridViewButtons .btn-default.active {
	background-color:white;
	color:#0a4d8c;
}
@media (max-width: 991px) {
    .thumbnail-container .gridViewButtons .btn-default {
        background-color:white;
        color:#0a4d8c;
    }
    .thumbnail-container .gridViewButtons .btn-default.active {
        background-color:white;
        color:#cccccc;
    }
}
@media (max-width: 766px) {
	.thumbnail-container .btn-group.view-style.gridViewButtons {
		position: absolute;
		right: 20px;
		top: 10px;
		z-index: 1;
	}
}


.thumbnail-wrapper {
	float: left;
	width: 25%;
	min-width: 245px;
	list-style: none;
}

@media (max-width: 1352px) {
	.thumbnail-wrapper {
		width: 33.3333%
	}
}

@media (max-width: 991px) {
	.grid-view .thumbnail-wrapper {
        /* Apply list view to grid view */
        width:100%;
	}
}

@media (max-width: 766px) {
	.thumbnail-wrapper {
		min-width: 0;
	}
}

.list-view .thumbnail-wrapper {
	width: 100%;
}

@media (max-width: 991px) {
    .list-view .thumbnail-wrapper {
        width: 50%;
    }
}

.thumbnail-wrapper .thumbnailBorder {
	height: 480px;
	border-radius: 15px;
	border: solid 1px #e5e5e5;
	margin: 5px;
	padding-top: 50px;
	-webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	cursor: pointer;
	position: relative;
	background: #ffffff;
}
@media (max-width: 991px) {
    .grid-view .thumbnail-wrapper .thumbnailBorder {
        padding-top: 35px;
        padding-left: 10px;
        height: auto;
        min-height: 165px;
        margin: 0;
        border: solid 1px #e5e5e5;
        border-radius: 0;
        box-shadow: none;
    }
    #qsLanding .grid-view .thumbnail-wrapper .thumbnailBorder {
        height: 480px;
        border-radius: 15px;
        border: solid 1px #e5e5e5;
        margin: 5px;
        padding-top: 50px;
        -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        cursor: pointer;
        position: relative;
        background: #ffffff;
    }
}

@media (max-width: 480px) {
    .list-view .thumbnail-wrapper .thumbnailBorder {
        height: 440px;
    }
}

.list-view .thumbnail-wrapper .thumbnailBorder {
	padding-top: 35px;
	padding-left: 10px;
	height: auto;
	min-height: 165px;
	margin: 0;
	border: solid 1px #e5e5e5;
	border-radius: 0;
	box-shadow: none;
}
@media (max-width: 991px) {
    .list-view .thumbnail-wrapper .thumbnailBorder {
        /* Apply grid view to grid view */
        height: 480px;
        border-radius: 15px;
        border: solid 1px #e5e5e5;
        margin: 5px;
        padding-top: 50px;
        -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        cursor: pointer;
        position: relative;
        background: #ffffff;
    }
    #qsLanding .list-view .thumbnail-wrapper .thumbnailBorder {
        padding-top: 35px;
        padding-left: 10px;
        height: auto;
        min-height: 165px;
        margin: 0;
        border: solid 1px #e5e5e5;
        border-radius: 0;
        box-shadow: none;
    }
}

/* .thumbnail-wrapper small {
	font-size: 85%;
} */

.thumbnail-wrapper .icon-meijer_mperks {
	display: block;
	position: absolute;
	top: 10px;
	left: 10px;
	background: url("//www.meijer.com/images/mPerksDesktop.png");
	background-repeat: no-repeat;
	width: 60px;
	height: 22px;
}

.thumbnail-wrapper .product-price .has-deposit {
	font-size: 60%;
}

.list-view .thumbnail-wrapper p.product-price {
	font-size: 125%;
}

.list-view .thumbnail-wrapper .icon-meijer_mperks {
	top: 5px;
	left: 15px;
}

@media (max-width: 991px) {
    .list-view .thumbnail-wrapper p.product-price {
        font-size: 100%;
    }
    .grid-view .thumbnail-wrapper p.product-price {
        font-size: 125%;
    }
    .list-view .thumbnail-wrapper .icon-meijer_mperks {
        top: 10px;
        left: 10px;
    }
    .grid-view .thumbnail-wrapper .icon-meijer_mperks {
        top: 5px;
        left: 15px;
    }
}

.thumbnail-wrapper .icon-list {
	position: absolute;
	top: 8px;
	right: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	color: #e5e5e5;
	visibility: hidden;
	width: auto;
}

@media (max-width: 480px) {
	.list-view .thumbnail-wrapper .icon-list {
		display: none;
	}
}

.thumbnail-wrapper.show .icon-list {
	visibility: visible;
}

.list-view .thumbnail-wrapper .icon-list {
	top: 3px;
	right: 15px;
}
@media (max-width: 991px) {
    .grid-view .thumbnail-wrapper .icon-list {
        top: 3px;
        right: 15px;
    }
    .list-view .thumbnail-wrapper .icon-list {
        position: absolute;
        top: 8px;
        right: 10px;
    }
}

.thumbnail-wrapper .icon-list li {
	float: left;
	margin-left: 10px;
}

.thumbnail-wrapper .icon-list li button {
	height: 30px;
	padding: 0;
	background: #ffffff;
	color: #e5e5e5;
}

.thumbnail-wrapper .icon-list li .btn-type-addToFav:hover,
.thumbnail-wrapper .icon-list li .btn-type-addToFav.click {
	color: #dd1321;
}

.thumbnail-wrapper .icon-list li .btn-type-addToList:hover,
.thumbnail-wrapper .icon-list li .btn-type-addToList.click {
	color: #66abde;
}
.thumbnail-wrapper .icon-list li .btn-type-addToFav.click,
.thumbnail-wrapper .icon-list li .btn-type-addToList.click {
	visibility: visible;
}


.thumbnail-wrapper .thumb-image {
	width: 100%;
}

.list-view .thumbnail-wrapper .thumb-image {
	float: left;
	width: 120px;
	padding: 0 7px;
}
@media (max-width: 991px) {
    .list-view .thumbnail-wrapper .thumb-image {
        width: 100%;
        float:none;
        width:auto;
        padding:0;
    }
    .grid-view .thumbnail-wrapper .thumb-image {
        float: left;
        width: 120px;
        padding: 0 7px;
    }
}

.thumbnail-wrapper .thumb-image a {
	display: block;
	text-align: center;
	margin-bottom: 15px;
}

@media (max-width: 480px) {
    .list-view .thumbnail-wrapper .thumb-image a {
        margin-bottom: 0;
    }
}

.thumbnail-wrapper .thumb-image a img {
	width: 125px;
}

.list-view .thumbnail-wrapper .thumb-image a img {
	width: 100px;
}

.thumbnail-wrapper .product-info {
	padding: 0 15px;
	color: #989798;
}

.list-view .thumbnail-wrapper .product-info {
	float: left;
	padding: 0;
	width: 64%;
}

@media (max-width: 991px) {
    .grid-view .thumbnail-wrapper .thumb-image a img {
        width: 100px;
    }

    .list-view .thumbnail-wrapper .thumb-image a img {
        width: 125px;
    }

    .grid-view .thumbnail-wrapper .product-info {
        float: left;
        padding: 0;
        width: 64%;
    }

    .list-view .thumbnail-wrapper .product-info {
        padding: 0 15px;
        color: #989798;
        float:none;
        width:auto;
    }

}

.thumbnail-wrapper .product-info p {
	margin: 0;
	padding: 0;
}

.list-view .thumbnail-wrapper .product-info p {
	font-size: 90%;
}

.thumbnail-wrapper .product-info p.contain-space {
	height: 19px;
}

@media (max-width: 480px) {
	.list-view .thumbnail-wrapper .product-info p.prodDtlRegPrice.contain-space {
		display: none;
	}
}

.list-view .thumbnail-wrapper .product-info p.contain-space {
	height: auto;
}

@media (max-width: 991px) {
    .grid-view .thumbnail-wrapper .product-info p.contain-space {
        height: auto;
    }
    .list-view .thumbnail-wrapper .product-info p.contain-space {
        height: 19px;
    }
}


.thumbnail-wrapper .product-price .uom {
    text-transform: lowercase;
}

.thumbnail-wrapper .product-price {
	font-weight: 700;
	font-size: 175%;
	color: #575a5d;
}

@media (max-width: 480px) {
	.list-view .thumbnail-wrapper .product-price {
		/*font-size: 140%;*/
		font-size: 125%;
	}
}

.thumbnail-wrapper .product-price .has-deposit {
	font-size: 50%;
	color: #989798;
	display: inline-block;
}

.list-view .thumbnail-wrapper .product-price .has-deposit {
	font-size: 60%;
}

.list-view .thumbnail-wrapper p.product-price {
	font-size: 125%;
}

@media (max-width: 991px) {
    .grid-view .thumbnail-wrapper .product-price {
        font-size: 125%;
    }
    .grid-view .thumbnail-wrapper .product-price .has-deposit {
        font-size: 60%;
    }

    .list-view .thumbnail-wrapper .product-price .has-deposit {
        font-size: 50%;
        color: #989798;
        display: inline-block;
    }

    .list-view .thumbnail-wrapper p.product-price {
        font-size: 175%;
    }

}

.thumbnail-wrapper .product-saleprice {
	font-weight: 700;
}

.thumbnail-wrapper .product-info .mjr-product-name a {
	color: #575a5d;
	margin: 5px 0 10px 0;
}
.thumbnail-wrapper .product-info .product-name a:hover {
	text-decoration: none;
}


@media (max-width: 480px) {
	.list-view .thumbnail-wrapper .product-info .product-name {
		/*font-size: 105%;*/
		font-size: 95%;
		margin: 0 0 10px 0;
	}
}

.list-view .thumbnail-wrapper .product-info .product-name {
	font-size: 100%;
	margin: 5px 10px 2px 0;
}

@media (max-width: 991px) {
    .list-view .thumbnail-wrapper .product-info .product-name {
        font-size: inherit;
        margin: auto;
    }
    .grid-view .thumbnail-wrapper .product-info .product-name {
        font-size: 100%;
        margin: 5px 10px 2px 0;
    }
}

.thumbnail-wrapper .sales-line {
	position: absolute;
	bottom: 75px;
	left: 0;
	width: 100%;
	text-align: center;
	color: #989798;
}

@media (max-width: 480px) {
	.list-view .thumbnail-wrapper .sales-line {
		display: none;
	}
}

.thumbnail-wrapper.available .sales-line {
	bottom: 45px;
}

.thumbnail-wrapper .sales-line .savings {
	font-weight: 700;
}

.thumbnail-wrapper .warning {
	font-size: 110%;
	font-weight: 700;
	position: absolute;
	bottom: 50px;
	left: 0;
	width: 100%;
	text-align: center;
}

@media (max-width: 480px) {
	.list-view .thumbnail-wrapper .warning {
		display: none;
	}
}

.thumbnail-wrapper.available .warning {
	bottom: 10px;
}

.list-view .thumbnail-wrapper .sales-line,
.list-view .thumbnail-wrapper .warning {
	position: static;
	text-align: left;
	margin-bottom: 10px;
}

@media (max-width: 991px) {
    .list-view .thumbnail-wrapper .sales-line,
     .list-view .thumbnail-wrapper .warning {
         position: inherit;
         text-align: inherit;
         margin-bottom: auto;
     }
    .grid-view .thumbnail-wrapper .sales-line,
    .grid-view .thumbnail-wrapper .warning {
        position: static;
        text-align: left;
        margin-bottom: 10px;
    }
}

.thumbnail-wrapper .warning [class^=icon-meijer_] {
	font-size: 24px;
	position: relative;
	top: 5px;
}

.thumbnail-wrapper .availability-message {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	color: #575a5d;
	text-align: center;
	font-weight: 700;
	padding: 10px 0;
	border-top: solid 1px #e5e5e5;
}

.list-view .thumbnail-wrapper .availability-message {
	position: static;
	text-align: left;
	padding: 0 0 10px 0;
	border: 0;
}

@media (max-width: 991px) {
    .grid-view .thumbnail-wrapper .availability-message {
        position: static;
        text-align: left;
        padding: 0 0 10px 0;
        border: 0;
    }

    .list-view .thumbnail-wrapper .availability-message {
        position: absolute;
        text-align: center;
        padding: 10px 0;
        border-top: solid 1px #e5e5e5;
    }

}

.thumbnail-wrapper .thumb-actions {
	position: absolute;
	bottom: -120px;
	left: 0;
	z-index: 2;
	background: #ffffff;
	width: 100%;
	min-width: 225px;
	padding: 3%;
	border-top: solid 1px #e5e5e5;
	box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.075);
	-webkit-transition: .3s ease all;
	transition: .3s ease all;
	visibility: hidden;
}

.thumbnail-wrapper.show .thumb-actions {
	bottom: 0px;
	visibility: visible;
}

@media (max-width: 480px) {
	.list-view .thumbnail-wrapper .thumb-actions {
		display: none;
	}
}

.list-view .thumbnail-wrapper .thumb-actions {
	width: 300px;
	left: auto;
	right:-300px;
	border-left: solid 1px #e5e5e5;
	border-radius: 15px 0 0 0;
	padding: 1.5%;
	bottom: 0;
}

@media (max-width: 767px) {
	.grid-view .thumbnail-wrapper .thumb-actions {
		padding: 2% 1.5%;
	}
}

@media (max-width: 450px) {
	.grid-view .thumbnail-wrapper .thumb-actions {
		width: 98%;
		right: -98%;
		border-radius: 0;
		padding: 3% 2%;
	}
}

.list-view .thumbnail-wrapper.show .thumb-actions {
	right: 0;
}

@media (max-width: 766px) {
	.grid-view .thumbnail-wrapper.show .thumb-actions {
		right: 5px;
	}
}

@media (max-width: 450px) {
    .grid-view .thumbnail-wrapper.show .thumb-actions {
		right: -2px;
	}
}
@media (max-width: 991px) {
    .grid-view .thumbnail-wrapper .thumb-actions {
        width: 300px;
        left: auto;
        right:-300px;
        border-top:none;
        border-left: solid 1px #e5e5e5;
        border-radius: 15px 0 0 0;
        padding: 1.5%;
        bottom: 0;
    }

    .grid-view .thumbnail-wrapper.show .thumb-actions {
        right: 0;
    }

    .list-view .thumbnail-wrapper .thumb-actions {
        position: absolute;
        bottom: -120px;
        left: 0;
        width: 100%;
        padding: 3%;
        border-top: solid 1px #e5e5e5;
        box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.075);
        -webkit-transition: .3s ease all;
        transition: .3s ease all;
        visibility: hidden;
    }

    .list-view .thumbnail-wrapper.show .thumb-actions {
        bottom: 0px;
        visibility: visible;
    }
}


.thumb-actions .mjr_grid > .mjr_grid-cell:first-of-type {
    -webkit-flex: 0 0 134px;
    -ms-flex: 0 0 134px;
    flex: 0 0 134px;

}

.thumbnail-wrapper .thumb-actions .addToCartButton  {
	margin: 0 4%;
	max-width: 97%;
}

.list-view .thumbnail-wrapper .thumb-actions .addToCartButton {
	width: 90%;
}

@media (max-width: 991px) {
    .grid-list .thumbnail-wrapper .thumb-actions .addToCartButton  {
        width: 90%;
    }

    .list-view .thumbnail-wrapper .thumb-actions .addToCartButton {
        margin: 0 4%;
        max-width: 97%;

    }
}


.thumbnail-wrapper.show .thumb-actions button .icon-meijer_cart {
	font-size: 24px;
	position: relative;
	top: 4px;
}

.thumbnail-wrapper.show .add-product .thumb-actions.has-error .error-message {
	color: #fff;
	font-size: 12px;
	text-align: left;
	padding: 5px 10px;
	background: #dd1321;
	position: absolute;
	top: -28px;
	z-index: 2;
	width: 200px;
	border-radius: 4px;
	border: solid 1px #c6111d;
	-webkit-box-shadow: 0 2px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 2px 2px rgba(0,0,0,.2);
	box-shadow: 0 2px 2px rgba(0,0,0,.2);
}

.thumbnail-wrapper.show .add-product .thumb-actions.has-error .error-message:after{
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	visibility: visible;
	border-width: 9px;
	border-top-color: #dd1321;
	bottom: -15px;
	left: 57px;
}

.thumbnail-wrapper .add-product  .thumb-actions .uom {
	display: block;
	text-align: center;
	font-size: 85%;
	margin-top: 2px;
}

.thumbnail-wrapper .thumb-actions .more-details {
	display: block;
	color: #66abde;
	text-decoration: none;
	width: 100%;
	text-align: center;
	margin: 15px 0 5px 0;
}

.thumbnail-wrapper .thumb-actions.notAvailable .more-details {
	margin-top: 3px;
}

.thumbnail-wrapper .thumb-actions .more-details:before {
	content: "More Details";
}

.list-view .thumbnail-wrapper .thumb-actions .more-details:before {
	content: "View More Details For This Product";
}

.thumbnail-wrapper .thumb-actions .more-details:hover {
	color: #2a83c5;
}

@media (max-width:991px){
    .grid-view .thumbnail-wrapper .thumb-actions .more-details:before {
        content: "View More Details For This Product";
    }

    .list-view .thumbnail-wrapper .thumb-actions .more-details:before {
        content: "More Details";
    }
}


.btn-group.view-style .btn-default:hover {
	background: #fff;
}

@media (max-width: 766px) {
	.btn-group.view-style {
		position: absolute;
		right: 20px;
		top: 90px;
		z-index: 1;
	}
}

/* End of Product Thumbs */
/* --------------------------------------- */

/* Wayfinding */
/* --------------------------------------- */
#wayfinding-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

#wayfinding-wrapper > a {
    width: 14.6%;
    margin: 0 1% 5px 1%;
    cursor: pointer;
}

@media (max-width:1150px) {
    #wayfinding-wrapper > a {
        width: 17%;
    }
}

@media (max-width:768px) {
    #wayfinding-wrapper > a {
        width: 22%;
    }
}

@media (max-width:450px) {
    #wayfinding-wrapper > a {
        width: 30.3%;
    }
}

#wayfinding-wrapper > a div {
    padding: 10px;
    border: 1px solid #ffffff;
    transition:all 0.5s ease;
}

#wayfinding-wrapper > a:hover {
    text-decoration: none;
}

#wayfinding-wrapper > a:hover div {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
    border: 1px solid #cccccc;
    border-radius: 4px;
    cursor: pointer;
}

#wayfinding-wrapper > a  img {
    height: auto;
    max-width: 100%;
}

#wayfinding-wrapper > a  h2 {
    font-weight: normal;
    background-color: transparent;
    font-size: 16px;
    min-height: auto;
    color: #0a4d8c;
    margin-top: 5px;
}

#wayfinding-wrapper > a:hover h2 {
    color: #07335c;
}

/* End of Wayfinding */
/* --------------------------------------- */

/* quickView Product Thumbs */
/* --------------------------------------- */

#quickView .modalContent {
    background-color:transparent;
}

#quickView .modalContainer {
    position:absolute;
}

#quickView .mjr-close-btn {
    top: 25px;
    right: 25px;
}

#quickView .alert-modal-reorder .alert-modal-body {
	padding: 0;
}

#quickView .alert-modal-reorder .availability-message.unavailable {
	color: #575a5d;
}

#quickView.alert-modal.open { /* Quickview */
    position: absolute;
    height:3000px;
    top: 0; left: 0; right: 0; bottom: 0;
}

#quickView .alert-modal-reorder {
	width: auto;
	height: auto;
	top: 10%;
	left: 50%;
	margin-left: -164px;
	background: transparent;
}

@media (max-width: 480px) {
	#quickView .alert-modal-reorder {
		top: 5%;
		left: 50%;
		margin-left: -163px;
	}

	#qsLanding #quickView .alert-modal-reorder {
		top: 5%;
		left: 50%;
		margin-left: -165px;
	}
}

@media (max-width: 375px) {
	#qsLanding #quickView .alert-modal-reorder {
		margin-left: -162px;
	}
}

@media (max-width: 320px) {
	#quickView .alert-modal-reorder {
		margin-left: -140px;
	}

	#qsLanding #quickView .alert-modal-reorder {
		margin-left: -140px;
	}
}

@media (max-width: 588px) {
	#quickView .alert-modal.open .alert-modal-reorder {
		height: auto;
	}
}

#quickView .alert-modal-close {
	top: 15px;
	right: 15px;
	z-index: 2;
}

#quickView .thumbnail-wrapper .thumbnailBorder {
	height: auto;
}
/*
#quickView .thumbnail-wrapper.unavailable .thumbnailBorder {
	min-height: 480px;
}*/


#quickView .alert-modal-reorder .alert-modal-body p {
	font-size: 14px;
}

#quickView .thumbnail-wrapper .product-info p.contain-space {
	height: auto;
}

#quickView .alert-modal-reorder .alert-modal-body p.sale-tag {
	color: #dd1321;
}

#quickView .alert-modal-reorder .alert-modal-body .product-price {
	font-size: 175%;
	color: #575a5d;
}

#quickView .alert-modal-reorder .alert-modal-body .product-name {
	font-size: 130%;
}

#quickView .thumbnail-wrapper {
	width: 330px;
	min-width: 245px;
	/*height: 580px;*/
}

@media (max-width: 375px) {
	#quickView .thumbnail-wrapper {
		width: 100%;
	}
}

@media (max-width: 320px) {
	#quickView .thumbnail-wrapper {
		width: 100%;
	}
}

#quickView .thumbnail-wrapper .icon-list {
	top: -40px;
	right: auto;
	bottom: auto;
	left: -15px;
}

#quickView .thumbnail-wrapper .icon-list.unavailable {
	position: static;
	margin-left: -15px;
}

#quickView .thumbnail-wrapper.unavailable .icon-list.unavailable,
#quickView .thumbnail-wrapper.instore .icon-list.unavailable {
	position: absolute;
	left: 15px;
	top: auto;
	bottom: 50px;
	z-index: 2;
}


#quickView .thumbnail-wrapper p.sales-line {
	position: static;
}

#quickView .thumbnail-wrapper p.warning {
	position: static;
	font-size: 12px;
	color: #DD1321;
}

#quickView .thumbnail-wrapper p.warning .icon-meijer_choking {
	display: none;
}

#quickView .thumbnail-wrapper .add-product {
	position: relative;
}

#quickView .thumbnail-wrapper.unavailable .add-product,
#quickView .thumbnail-wrapper.instore .add-product{
	position: static;
}

#quickView .thumbnail-wrapper.show .thumb-actions {
	position: relative;
	height: auto;
	margin-top: 80px;
}

#quickView .thumbnail-wrapper.show .thumb-actions {
	left: -15px;
	width: 314px;
}

@media (max-width: 320px) {
	#quickView .thumbnail-wrapper.show .thumb-actions {
		width: 268px;
	}
}

#quickView .thumbnail-wrapper .thumb-actions.notAvailable,
#quickView .thumbnail-wrapper.show .thumb-actions.notAvailable {
	visibility: hidden;
}

#quickView .thumbnail-wrapper .thumb-actions.notAvailable .more-details.available,
#quickView .thumbnail-wrapper.show .thumb-actions.notAvailable .more-details.available {
	visibility: visible;
}

#quickView .thumbnail-wrapper .thumb-actions .more-details {
	position: absolute;
	top: -50px;
	right: 10px;
	text-align: right;
	z-index: 1;
	max-width: 70%;
}

#quickView .thumbnail-wrapper .thumb-actions.notAvailable .more-details {
	top: -57px;
}

#quickView .alert-modal-reorder .availability-message.unavailable,
#quickView .alert-modal-reorder .availability-message.instore {
    margin-top:0;
    position:absolute;
}

/*  Product Sorting/Filtering */
/* --------------------------------------- */

/*@media (max-width: 766px) {
	#category-wrapper {
		border: none;
	}

	#thumbnail.small .shop-content.list-type-header,
	#thumbnail.xsmall .shop-content.list-type-header{
		padding: 0 20px;
	}

	#summary {
		display: none;
	}

	body#thumbnail div.sorting {
		width: 100%;
	}

	#top_waystosave.roundedSelect,
	.view-sort.roundedSelect {
		width: 48%;
		margin: 0 1%;
	}

	.list-type-header .btn-group {
		margin-top: -2px;
		position: absolute;
		top: -46px;
		right: 20px;
	}

	.roundedSelect.focus #button_waystosave {
		border-radius: 15px 15px 0 0;
	}

    #waysToSaveList {
	    width: 204%;
	    top: 32px;
	    border-radius: 0 15px 15px 15px;
    }

	.roundedSelect.focus #sortDropDown {
		border-radius: 15px 15px 0 0;
	}

    #sort {
	    width: 204%;
	    top: 32px;
	    left: -104%;
	    border-radius: 15px 0 15px 15px;
    }

}*/

	/* End of Product Sorting/Filtering */
/* --------------------------------------- */


/* End of quickView Product Thumbs */
/* --------------------------------------- */

/* Start MAP pricing*/
/* --------------------------------------- */

.thumbnail-wrapper .product-price .icon-meijer_help,
.prodDtlSalePrice .icon-meijer_help {
    font-size: 18px;
    position: relative;
    padding: 10px;
    top: -5px;
    left: -5px;
    color: #084d8c;
}

.thumbnail-wrapper .product-price .icon-meijer_help:hover,
.prodDtlSalePrice .icon-meijer_help:hover {
    cursor: pointer;
}

@media (max-width: 766px) {
    #product .mjr-tooltip {
        padding: 20px 25px 10px 10px;
        left: 0;
        width: 100%;
        max-width: 430px;
        top: 30px;
    }

    #product .mjr-tooltip:before {
        left: 192px;
        border-width: 12px;
        top: -24px;
    }

    #product .mjr-tooltip:after {
        left: 194px;
        border-width: 10px;
        top: -20px;
    }

    .mjr-tooltip .mjr-close-btn {
        top: 10px;
        right: 15px;
    }
}

/* End of MAP pricing */
/* --------------------------------------- */


/* Start Quick shop slider */
/* --------------------------------------- */

/**/
.quickShopLandingSliderWindow {
    width:100%;
    height:490px;
    overflow:hidden;
}


/**/

.quickShopLandingSliderWindow .thumbnail-wrapper {
    min-width:0;
    width:auto;
}
.quickShopLandingSliderWindow.grid-view ul {
    padding:0;
}

.quickShopLandingSliderWindow > ul {
    display: -webkit-inline-flex;
    display: -ms-inline-flex;
    display: inline-flex;
    height: 480px;
    width:100%;
    /*overflow: hidden;*/
}

.quickShopLandingSliderWindow ul > li
{
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%; /* we will just have to tweak the "%" per media query */
}

@media (max-width: 1200px) {
    .quickShopLandingSliderWindow ul > li
    {
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    }
}

@media (max-width: 991px) {
    .quickShopLandingSliderWindow ul > li
    {
        -webkit-flex: 0 0 33.3333%;
        -ms-flex: 0 0 33.3333%;
        flex: 0 0 33.3333%;
    }
}

/*
@media (max-width: 766px) {
    .quickShopLandingSliderWindow ul > li
    {
        flex: 0 0 34%;
    }
}
*/
	@media (max-width: 685px) {
    .quickShopLandingSliderWindow ul > li
    {
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}


#quickShop_frequenst {
    margin:0 auto;
}

/* End of Quick shop slider */
/* --------------------------------------- */


.slider-arrow {
    font-weight:bold;
    color:#66abde;
    border:1px solid #66abde;
    padding:4px;
    display:inline-block;
    border-radius: 12px 12px 12px 12px;
    -moz-border-radius: 12px 12px 12px 12px;
    -webkit-border-radius: 12px 12px 12px 12px;
    font-size:10px;
    cursor:pointer;
}

.slider-arrow.inactive {
    opacity:.5;
    cursor:default;
}
.slider-arrowleft {
    -ms-transform: rotate(180deg) !important;
    -webkit-transform: rotate(180deg) !important;
    transform: rotate(180deg) !important;
}

.slider-arrowleft:before {
    content: "\e628";
}

.quickShopHeaderTitle {
    display:table;
    width: 100%;
    padding:0 10px;
    margin-bottom: 20px;
    position:relative; /* android */
    z-index:10;
}

.quickShopHeaderTitle .quickShopHeadline {
    float: left;
    font-size: 20px;
    display: table-cell;
    padding: 0;
    margin: 0;
    line-height: 27px;
    font-weight: bold;
}

@media (max-width: 992px) {
    body#quickShopViewAll #breadcrumb-wrapper {
        display: none;
    }
}

.quickShopHeaderTitle .viewmore {
    padding-right:15px;
    position: relative;
    top: 2px;
}
.quickShopHeaderTitle .viewmore.backtoQS {
    color: #66abde;
    line-height: 27px;
    padding-left: 15px;
}

.quickShopHeaderTitle .rightControls #summary {
    display:none;
}

.quickShopHeaderTitle .rightControls .sorting {
    float:right
}
.quickShopHeaderTitle .rightControls .sorting > div{
    position:relative;
    top:5px
}

.quickShopHeaderTitle .rightControls .shop-content {
    width:100%;
	margin-top: 10px;
}

.quickShopHeaderTitle .rightControls .shop-content .roundedSelect {

}

.quickShopHeaderTitle .quickShopNumbers {
    position: relative;
    top: 2px;
    padding:0 10px
}
.quickShopHeaderTitle .rightControls {
    display:table-cell;
    text-align: right;
}

.quickshopLanding .recommendations {
    margin-bottom: 40px;
    padding-bottom: 10px;
}

.quickshopLanding .recommendations .rightControls {
    padding-top: 6px;
    margin: 0;
    vertical-align: top;
}

.quickshopLanding .thumbnailBorder {
    background-color:#fff;
}

.quickshopLanding .recommendations .quickShopHeaderTitle .quickShopHeaderTitleType {
    padding: 0;
    margin: 0 -10px;
    position:relative;
}

#quickShopViewAll .quickShopHeaderTitleType {
    min-width:320px;
    box-sizing:border-box;
}

.quickshopLanding .recommendations .quickShopHeaderTitle .quickShopHeadline {
    pborder: 1px solid green;
    background-color: white;
    padding: 0 20px 10px 10px;
    -webkit-border-bottom-right-radius: 20px;
    -moz-border-radius-bottomright: 20px;
    border-bottom-right-radius: 20px;
    position: absolute;
    white-space: nowrap;
    width: 5000px;
    left: -4726px;
    text-align: right;
}
@media (max-width: 790px) {
    .quickshopLanding .recommendations .quickShopHeaderTitle .quickShopHeadline {
        left: -4750px;
    }
}

.quickshopLanding .recommendations .quickShopArrows {
    position:relative;
    top:-10px
}

.quickshopLanding .recommendations .quickShopHeaderTitle {
    margin:0px;
    height:40px;
}

.quickShopViewAll .viewall.mobile,
.quickshopLanding .viewall.mobile {
    visibility:hidden
}

.quickshopLanding .thumbnail-wrapper .thumb-actions {
    min-width: 0;
}

@media (max-width: 991px) {
    .quickShopViewAll .viewmore,
    .quickshopLanding .viewmore {
        display:none;
    }

    .quickshopLanding .viewall.mobile,
    .quickShopViewAll .viewall.mobile {
        display:block;
        visibility:visible;
        max-width:250px;
        width:100%;
        display:block;
        margin: 20px auto 35px auto;
        color:#fff;
        text-decoration:none;
    }
    .quickShopViewAll .viewall.mobile {
        max-width:310px;
    }
}
@media (max-width: 480px) {
    .quickshopLanding .viewall.mobile {
        max-width: 100%;
        margin: 0 auto 45px auto;
    }
    .quickShopViewAll .viewall.mobile {
        max-width: 100%;
        margin: 20px auto 45px auto;
    }
}


.quickShopViewAll .grid-view .thumbnail-wrapper {
	float: left;
	width: 25%;
	min-width: 0;
	list-style: none;
}
@media (max-width:991px){
    .quickShopViewAll .grid-view .thumbnail-wrapper {
        float: none;
        min-width: 100%;
    }
}

/* Start of Data Tester Modal */
/* --------------------------------------- */

.dataTesterMain {
    background-color:#fff;
}

.dataTester {
    max-width: 660px;
    margin: 25px auto 20px auto;
    overflow: hidden;
    width:100%;
    background-color:white;
}

.dataTester.loading {
    opacity:.25
}
.dataTester table td,
.dataTester table th {
    padding:5px;

}

.dataTester .submitOne {
    width:35%;
    float:right;
}
.dataTester .moreOrLess {
    float:right;
    width:25%;
    text-align:right;
    cursor:pointer;
}

.dataTester .testTitleDiv {
    float:left;
    width:70%;
    text-align:left;
}
.dataTester.suball {
    text-align:center;
}
.dataTester table {
    display:none;
}

.dataTester table button {
    margin:auto;
}

.dataTester .resultSet {
    background-color: #ececec;
    padding: 10px;
    border: 1px inset;
    word-break: break-all;
}

/* End of Data Tester Modal */
/* --------------------------------------- */

/* General Two Button Modal */
/* --------------------------------------- */

.mjr-twoButtonModal .modalActionButton {
    text-align: center;
    overflow: hidden;
    margin: auto;
}
.mjr-twoButtonModal button.mjr-btn {
    width: 45%;
    margin-top: 10px;
    min-width: 190px;
    display: inline-block;
    text-align: center;

}

/* End of Data Tester Modal */
/* --------------------------------------- */

.quickShopViewAll .list-view .thumbnail-wrapper {
    width: 100%
}

@media (max-width: 1352px) {
	.quickShopViewAll .grid-view .thumbnail-wrapper {
		width: 25%
	}
}

@media (max-width: 991px) {
	.quickShopViewAll .list-view .thumbnail-wrapper {
		width: 33.3%
	}
}

@media (max-width: 768px) {
	.quickShopViewAll .list-view .thumbnail-wrapper {
		width: 50%;
	}
}
@media (max-width: 766px) {
    .quickShopViewAll .list-type-header {
        display: block;
        text-align: left;
        width: 100%;
    }
    .quickShopViewAll .gridViewButtons {
        position:absolute!important;
        top:-40px!important;
        right:0;
    }
    .quickShopHeaderTitle .rightControls {
        display: block;
        text-align: right;
        position: relative;
        top: 0;
        right: 0;
    }

    .quickShopHeaderTitle .list-results{
        display:none;
    }

    .quickShopHeaderTitle .rightControls .sorting {
        float: none;
        width: 100%;
        display: block;
    }

    .quickShopHeaderTitle  #top_waystosave.roundedSelect {
        padding: 0;
        width: 49.3%;
        margin: 0 .7% 0 0;
    }

    .quickShopHeaderTitle  #sortDropDownGroup.roundedSelect {
        padding: 0;
        width: 49.3%;
	    margin: 0 0 0 .7%;
    }


}


@media (max-width: 480px) {
    .quickShopHeaderTitle .quickShopHeadline {
        font-size:18px;
    }

    .frequentPurchases .quickShopHeaderTitle .quickShopHeadline {
        float:none;
        padding-bottom:10px;
    }


    .quickshopLanding .recommendations .quickShopHeaderTitle .quickShopHeadline{
        left:-4765px
    }
}

@media (max-width: 390px) {
    .quickshopLanding .recommendations .quickShopHeaderTitle {
        height:70px
    }

    .quickshopLanding .recommendations .rightControls{
        padding-top:46px;
    }

    .quickShopHeaderTitle .quickShopHeadline {
        float:none;
        padding-bottom:10px;
    }

}

#homeDeliveryWrap .zipcodecheck  {
    display:none;
}

#homeDeliveryWrap.showZipChecker .zipcodecheck  {
    display:block;
}

#homeDeliveryWrap .deliverOption {
    display:none;
}

#homeDeliveryWrap.homeDeliveryOption .deliverOptionHome {
    display:block;
}

#homeDeliveryWrap.deliverOptionHomeIneligibleItemsError .deliverOptionHome,
#homeDeliveryWrap.deliverOptionHomeIneligibleItemsError .deliverHomeIneligibleItemsError {
    display:block;
}

#homeDeliveryWrap.deliverOptionHomeTotalLowError .deliverOptionHome,
#homeDeliveryWrap.deliverOptionHomeTotalLowError .deliverHomeTotalLowError {
    display:block;
}

#homeDeliveryWrap.deliverOptionHomeTotalLowIneligibleItemsError .deliverOptionHome,
#homeDeliveryWrap.deliverOptionHomeTotalLowIneligibleItemsError .deliverHomeTotalLowIneligibleItemsError {
    display:block;
}

#homeDeliveryWrap.noHomeDeliveryOptionIneligibleItems .deliverOptionNoHome,
#homeDeliveryWrap.noHomeDeliveryOptionIneligibleItems .deliverOptionIneligibleItems {
    display:block;
}


#homeDeliveryWrap.noHomeDeliveryOptionTotalLow .deliverOptionNoHome,
#homeDeliveryWrap.noHomeDeliveryOptionTotalLow .deliverOptionTotalLow {
    display:block;
}

#homeDeliveryWrap.noHomeDeliveryOptionTotalLowIneligibleItems .deliverOptionNoHome,
#homeDeliveryWrap.noHomeDeliveryOptionTotalLowIneligibleItems .deliverOptionTotalLowIneligibleItems {
    display:block;
}



#homeDeliveryWrap .lowOrderPriceMessage {
    display:none
}

#homeDeliveryWrap .homeOrderMessage.initLowOrderPrice {
    display:none
}

#homeDeliveryWrap.lowOrderPrice .lowOrderPriceMessage {
    display:block
}

#homeDeliveryWrap.lowOrderPrice .homeOrderMessage {
    display:none
}

/* Order Summary */
/* --------------------------------------- */
#itemList.mjr-editable {
	clear: both;
}

#itemList.mjr-editable .mjr_grid-cell--center {
	align-self: flex-start;
	padding-top: 10px;
}

#itemList.mjr-editable .mjr_grid {
	margin-bottom: 1%;
}
@media (max-width: 700px) {
	#itemList.mjr-editable .mjr_grid {
		margin-bottom: 2%;
	}
}
#itemList.mjr-editable .mjr_grid.hdNotEligible {
	background: #f6dcd9;
	margin: -15px 0;
	padding: 10px;
}


#itemList.mjr-editable .mjr_grid_head {
	margin-bottom: 1%;
	border-bottom: solid 1px #e5e5e5;
}
@media (max-width: 700px) {
	#itemList.mjr-editable .mjr_grid_head {
		margin-bottom: 2%;
	}
}

#itemList.mjr-editable .mjr_grid--title > .mjr_grid-cell:first-of-type {
	flex: 0 0 77%;
}

#itemList.mjr-editable .edit_mode .mjr_grid--title > .mjr_grid-cell:first-of-type {
	flex: 0 0 40%;
}

@media (max-width: 700px) {
	#itemList.mjr-editable .edit_mode .mjr_grid--title > .mjr_grid-cell:first-of-type {
		flex: 1 0 50%;
	}
}

#itemList.mjr-editable .mjr_grid--thumb > .mjr_grid-cell:first-of-type {
	-webkit-flex: .1;
	-ms-flex: .1;
	flex: .1;
}

#itemList.mjr-editable .product_name {
	padding: 0 3px 0 10px;
}

#itemList.mjr-editable .product_name .edit-cake {
	display: block;
	margin-bottom: 10px;
}

#itemList.mjr-editable .product_image {
	min-width: 70px
}

#itemList.mjr-editable .product_image img {
	display: inline-block;
	width: 99%;
	max-width: 100px;
	max-height: 100px;
	vertical-align: middle;
}

.mjr_grid.prodWrap {
    flex-wrap:wrap;
}

#miniCart #itemList.mjr-editable .product_image img {
    padding-left:10px;
    box-sizing:border-box;
}

#itemList.mjr-editable .product_price {
	-webkit-flex: .2;
	-ms-flex: .2;
	flex: .2;
}

#itemList.mjr-editable .edit_mode .product_price {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#itemList.mjr-editable .edit_mode .product_price .prod-price-sale .prodDtlSalePrice .has-deposit {
	text-align: center;
	display: block;
	width: 100%;
	padding: 3px 0 0 0;
}
@media (max-width: 700px) {
	#itemList.mjr-editable .edit_mode .product_price .prod-price-sale .prodDtlSalePrice .has-deposit {
		text-align: right;
	}
}

#itemList.mjr-editable .edit_mode .product_price .prod-price-sale {
	padding-top: 5px !important;
}

#itemList.mjr-editable .edit_mode .product_qty {
	-webkit-flex: 3;
	-ms-flex: 3;
	flex: 3;
}

#miniCart #itemList.mjr-editable .edit_mode .product_qty {
    -webkit-flex: 0 0 70%;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
}

@media (max-width: 700px) {
	#itemList.mjr-editable .edit_mode .product_qty {
		-webkit-flex: 0 0 70%;
		-ms-flex: 0 0 70%;
		flex: 0 0 70%;
	}
}

#itemList.mjr-editable .edit_mode .product_remove div,
#itemList.mjr-editable .edit_mode .product_remove_head div {
	width: 98px;
}

#miniCart #itemList.mjr-editable .edit_mode .product_remove div,
#miniCart #itemList.mjr-editable .edit_mode .product_remove_head div {
    width:auto;
}

@media (max-width: 700px) {
	#itemList.mjr-editable .edit_mode .product_remove div,
	#itemList.mjr-editable .edit_mode .product_remove_head div {
		width: auto;
	}
}

@media (max-width: 700px) {
	#itemList.mjr-editable .edit_mode .product_qty_head,
	#itemList.mjr-editable .edit_mode .product_remove_head {
		display: none;
	}
}

#itemList.mjr-editable .product_price,
#itemList.mjr-editable .product_qty,
#itemList.mjr-editable .product_remove {
	text-align: center;
	font-weight: 700;
	font-size: 115%;
}

#itemList.mjr-editable .product_remove,
#itemList.mjr-editable .edit_mode .product_remove a {
	font-weight: 700;
	text-decoration: none;
	font-size: 100%;
}


#itemList.mjr-editable .product_price_head,
#itemList.mjr-editable .product_qty_head,
#itemList.mjr-editable .product_image_head {
	font-weight: 700;
	font-size: 100%;
}

@media (max-width: 700px) {
	#itemList.mjr-editable .edit_mode .product_qty {
		text-align: left;
	}
	#itemList.mjr-editable .product_price,
	#itemList.mjr-editable .edit_mode .product_remove {
		text-align: right;
	}
	#itemList.mjr-editable .edit_mode .product_qty,
	#itemList.mjr-editable .edit_mode .product_remove {
		margin-top: 3%;
	}
}

#itemList.mjr-editable .mjr-qty-stepper {
	margin: 0 auto;
}

@media (max-width: 700px) {
	#itemList.mjr-editable .mjr-qty-stepper {
		margin: 0;
	}
}

#itemList.mjr-editable .mjr-qty-stepper .uom {
	display: block;
}

#itemList.mjr-editable .uom small {
	font-size: 75%;
}

#itemList.mjr-editable .uom.deposit {
	color: #989798;
	font-size: 88%;
	display: block;
}

#itemList.mjr-editable .hdNotEligible.mjr-alert {
	padding: 5px 0 0 10px;
}

.baseProductList .product.outofstock {
    border-left: 7px solid red;
}

.baseProductList .product.outofstock .product_image {
    padding-left: 5px;
}

.baseProductList .product.outofstock .product_image,
.baseProductList .product.outofstock .product_name,
.baseProductList .product.outofstock .product_price {
    opacity:.5
}

.baseProductList .product.outofstock .msgNotAvail {
    margin:5px 0 0 13px;
    text-align:left;
}

.baseProductList #itemList.mjr-editable .product.outofstock .mjr_grid-cell--center.product_remove {
    padding-top:5px;
}

.baseProductList .outofstock-notes.non-mobile {
    display:none;
}

/*.checkout .outofstock .quantityInputs {*/
/*display:none;*/
/*}*/
.baseProductList .outofstock .quantityInputs {
    display:none;
}

.baseProductList .outofstock .removeItemCol {
    float:right;
    padding-top:0px;
}

.baseProductList .outofstock  .product-details .prod-price-sale ,
.baseProductList .outofstock .row .qty-label,
.baseProductList .outofstock .row .quantity {
    display: none !important;
}

.baseProductList .outofstock .outofstock-notes.non-mobile {
    display:block;
    bottom:0;
    left:0;
    z-index:10;
    margin-left:.75em;
}
.baseProductList .outofstock-notes.mobile {
    display:none;
}


.baseProductList .product.outofstock .row {
    height:110px;
}
.baseProductList .product.outofstock .sale-notes,
.baseProductList .product.outofstock .sale-marker {
    display:none;
}

/* End of Order Summary */
/* --------------------------------------- */

/* Home Delivery Scheduler */
/* --------------------------------------- */

/*error message styles */
.homeDeliveryScheduler .buttonWrapInner {
  margin:15px 0;
  width: 100%;
  min-width: 320px;
  text-align: left;
}

.homeDeliveryScheduler .buttonWrapInner .mjr-btn {
	max-width: 220px;
	margin-left: 20px;
}

.homeDeliveryScheduler .buttonWrapInner  a.mjr-btn {
	margin-left: 0;
}
/* End of error message styles */

/* End of Home Delivery Scheduler */
/* --------------------------------------- */

/* Managed Content Wrappers */
/* --------------------------------------- */

body.search .mjr-manContentBillboard {
    padding-bottom:10px;
}
/* End ofManaged Content Wrappers */
/* --------------------------------------- */