@charset "UTF-8";
.bg-blue-grd {
	background: #003da5;
	background: -moz-linear-gradient(top, #003da5 0, #002563 100%);
	background: -webkit-linear-gradient(top, #003da5 0, #002563 100%);
	background: linear-gradient(to bottom, #003da5 0, #002563 100%);
}

.float-left {
	float: left;
}

.txt-align-left {
	text-align: left;
}

.center {
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.row {
	display: -webkit-box;
	display: -ms--ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
}

.col {
	width: 100%;
	position: relative;
}

.container-fluid {
	width: 100%;
}

.w-100 {
	width: 100%;
}

.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}

@media only screen and (max-width: 960px) {
	.row.pad-bot-1 .col,
	.row.pad-bot-1 .column,
	.row.pad-bot-1 .columns {
		padding-bottom: 1rem;
	}
}

@media only screen and (max-width: 500px) {
	.row.collapse-small .columns {
		padding-left: 0;
		padding-right: 0;
	}
}

.animate {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.an-one {
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.an-two {
	-webkit-animation-delay: 1.5s;
	-moz-animation-delay: 1.5s;
	animation-delay: 1.5s;
}

.an-three {
	-webkit-animation-delay: 2.5s;
	-moz-animation-delay: 2.5s;
	animation-delay: 2.5s;
}

.an-four {
	-webkit-animation-delay: 3.5s;
	-moz-animation-delay: 3.5s;
	animation-delay: 3.5s;
}

.an-five {
	-webkit-animation-delay: 4.5s;
	-moz-animation-delay: 4.5s;
	animation-delay: 4.5s;
}

.an-six {
	-webkit-animation-delay: 5.5s;
	-moz-animation-delay: 5.5s;
	animation-delay: 5.5s;
}

.an-seven {
	-webkit-animation-delay: 6.5s;
	-moz-animation-delay: 6.5s;
	animation-delay: 6.5s;
}

.an-eight {
	-webkit-animation-delay: 7.5s;
	-moz-animation-delay: 7.5s;
	animation-delay: 7.5s;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

div#freeShipMsg {
	text-align: center;
}

div#freeShipMsg p {
	padding-top: 5px;
	font-weight: 800;
	margin: 0;
	line-height: 150%;
	font-size: 0.75rem;
}

div#freeShipMsg span.ship-disclaim {
	display: block;
	color: #595959;
	font-size: 0.6rem;
	line-height: 150%;
}

div#freeShipMsg .qualifymsg p {
	font-size: 1rem;
}

div#freeShipMsg .qualifymsg p span {
	display: block;
	line-height: 100%;
}

div#freeShipMsg .qualifymsg .ship-disclaim {
	padding-top: 5px;
}

@media only screen and (min-width: 768px) {
	div#freeShipMsg p {
		font-size: 1rem;
	}

	div#freeShipMsg.qualifymsg p span {
		display: inline;
	}

	div#freeShipMsg.qualifymsg .ship-disclaim {
		padding: 0;
	}
}

div#storeHours h3 {
	margin: 0 0 3px 0;
}

@media only screen and (max-width: 768px) {
	div#storeHours b,
	div#storeHours h3,
	div#storeHours span {
		display: block;
		padding-bottom: 5px;
	}

	div#storeHours span.amper {
		display: none;
	}

	div#storeHours {
		text-align: left;
	}
}

@media only screen and (min-width: 768px) {
	div#storeHours b,
	div#storeHours span {
		display: inline-block;
	}

	div#storeHours b {
		padding-right: 20px;
	}

	div#storeHours .findstore {
		padding-left: 20px;
	}

	div#storeHours {
		text-align: center;
	}
}

#couponBtn {
	border: red dashed;
	color: red;
	padding: 4px 8px;
	text-transform: uppercase;
	text-decoration: none;
	line-height: initial;
	float: right;
}

#PageCouponCover2 {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 9999;
	opacity: 0.8;
	top: 0;
	left: 0;
}

#CouponPop2 {
	display: none;
	background-color: #bd0221;
	z-index: 9999;
	position: fixed;
	width: 100%;
	text-align: center;
	bottom: 8%;
}

#CouponPop2 div#logoWrapper {
	background: #003da5;
}

#CouponPop2 div#logoWrapper #big5Logo2 {
	margin: 0 auto;
	width: 73%;
	padding: 10px 0;
}

#ContainerPop2 {
	border: 10px solid #bd0221;
}

#ContainerPop2 div {
	background-color: #ebebeb;
}

#CloseCouponOverlay2 {
	position: absolute;
	right: 0;
	top: 0;
	padding: 1px 4px;
	background: #bd0221;
	color: #fff;
	font-size: 1rem;
	font-weight: bolder;
	display: block;
}

.CouponHref2 {
	display: inline-block;
	margin: 10px 0;
	background: #b6001d;
	background: -moz-linear-gradient(top, #b6001d 0, #ff3033 50%, #b6001d 100%);
	background: -webkit-linear-gradient(top, #b6001d 0, #ff3033 50%, #b6001d 100%);
	background: linear-gradient(to bottom, #b6001d 0, #ff3033 50%, #b6001d 100%);
	border: 4px solid #ccc;
	border-radius: 15px;
	padding: 10px;
	color: #fff;
	text-align: center;
	text-shadow: 1px 1px 2px #969696;
	font-size: 1rem;
	font-weight: 900;
	width: 46%;
}

a#elitePopWeb2 {
	margin-right: 10px;
}

@media only screen and (min-width: 960px) {
	div#ContainerPop2 {
		width: 560px;
		margin: 0 auto;
	}

	.CouponHref2 {
		font-size: 20px;
		margin: 10px 0;
		padding: 9px 20px;
		width: 45%;
		text-shadow: -4px 3px 4px rgba(150, 150, 150, 0.2);
	}
}

#Special-facet-body label,
#Special-facet-title {
	color: #b30000;
}

#Special-facet-body input::before {
	border-color: #b30000;
}

#hpContent.big5 a:hover {
	text-decoration: none;
}

#hpContent.big5 a {
	text-decoration: none;
}

#hpContent.big5 .full-circle {
	background-color: rgba(204, 0, 102, 0);
	border: 3px solid #333;
	height: 150px;
	width: 150px;
	-moz-border-radius: 75px;
	-webkit-border-radius: 75px;
	border-radius: 75px;
}

#hpContent.big5 .pagetitle {
	text-align: center;
	font-size: 40px;
	margin-top: 80px;
	margin-bottom: 25px;
	padding: 0;
}

#hpContent.big5 #tickerTape,
#hpContent.big5 .item,
#hpContent.big5 .promo-banner,
#hpContent.big5 .ssCard,
#hpContent.big5 .tcCard {
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
}

#hpContent.big5 .pagetitle {
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
}

#d-hpCarousel,
#m-hpCarousel div,
#trendingCategories .tcCard {
	margin-bottom: 15px !important;
}

#hpContent.big5 section.contentblock {
	margin-bottom: 30px;
}

.m-hpCarouselWrap {
	position: relative;
}

#d-hpCarousel {
	display: none;
}

#hpCarousel .carousel {
	position: relative;
}

#hpCarousel .carousel-inner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

#hpCarousel .carousel-item {
	position: relative;
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	transition: -webkit-transform 0.6s ease;
	transition: transform 0.6s ease;
	transition: transform 0.6s ease, -webkit-transform 0.6s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1000px;
	perspective: 1000px;
}

#hpCarousel .carousel-item-next,
#hpCarousel .carousel-item-prev,
#hpCarousel .carousel-item.active {
	display: block;
}

#hpCarousel .carousel-item-next,
#hpCarousel .carousel-item-prev {
	position: absolute;
	top: 0;
}

#hpCarousel .carousel-item-next.carousel-item-left,
#hpCarousel .carousel-item-prev.carousel-item-right {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
	.carousel-item-next.carousel-item-left,
	.carousel-item-prev.carousel-item-right {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

#hpCarousel .active.carousel-item-right,
#hpCarousel .carousel-item-next {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
	.active.carousel-item-right,
	.carousel-item-next {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

#hpCarousel .active.carousel-item-left,
#hpCarousel .carousel-item-prev {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
	#hpCarousel .active.carousel-item-left,
	#hpCarousel .carousel-item-prev {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

#hpCarousel .carousel-control-next,
#hpCarousel .carousel-control-prev {
	position: absolute;
	top: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 15%;
	color: #fff;
	text-align: center;
	opacity: 0.5;
}

#hpCarousel .carousel-indicators {
	position: absolute;
	right: 0;
	left: 0;
	bottom: -30px;
	z-index: 15;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-left: 0;
	margin-right: 15%;
	margin-left: 15%;
	list-style: none;
	width: auto;
}

#hpCarousel .carousel-indicators li {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	width: 30px;
	height: 3px;
	margin-right: 3px;
	margin-left: 3px;
	text-indent: -999px;
	background-color: #595959;
	border-radius: 0;
}

#hpCarousel .carousel-indicators li::before {
	position: absolute;
	top: -10px;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 10px;
	content: "";
}

#hpCarousel .carousel-indicators li::after {
	position: absolute;
	bottom: -10px;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 10px;
	content: "";
}

#hpCarousel .carousel-indicators .active {
	background-color: #23aa0d;
}

#hpCarousel .carousel-caption {
	position: absolute;
	right: 15%;
	bottom: 20px;
	left: 15%;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #fff;
	text-align: center;
}

#tickerTape {
	padding: 0;
	margin: 0 auto;
	border-bottom: 1px solid;
	border-color: #ccc;
	border-left: 0;
	border-right: 0;
	text-align: center;
	border-top: none;
}

#tickerTape a:nth-child(1) {
	width: 140px;
}

#tickerTape #weeklyAdImg {
	width: 140px;
	margin: auto;
}

#tickerTape a {
	display: inline-block;
	margin: 0 5px;
	color: #000;
	font-size: 18px;
}

#tickerTape a:nth-child(2) {
	margin: 0;
	font-weight: 800;
}

#tickerTape span#weeklyadText1,
#tickerTape span#weeklyadText2 {
	font-weight: 400;
}

#tickerTape p,
#tickerTape span {
	color: #757575;
	margin: 0;
	padding: 0;
	font-size: 14px;
	display: inline-block;
}

#tickerTape a p {
	font-weight: 800;
	color: #000;
	font-size: 18px;
	margin: 0;
}

#tickerTape span::before {
	content: " - ";
}

#tickerTape span#weeklyadText2 {
	display: none;
}

#hpContent.big5 .tc-title {
	margin: 0;
	line-height: 120%;
	padding: 5%;
	font-size: 90%;
	display: block;
}

#trendingCategories .tcCard {
	text-align: center;
	width: 33%;
}

#trendingCategories ul li {
	list-style-type: none;
}

#trendingCategories .wrp {
	width: 90%;
	margin: auto;
	height: 100%;
	position: relative;
}

#trendingCategories .wrp a {
	margin: 0;
	color: #595959;
	font-family: Rift;
	font-weight: 800;
}

#trendingCategories .wrp a:hover {
	color: #000;
}

#trendingCategories .image-cropper {
	width: 100px;
	height: 100px;
	position: relative;
	overflow: hidden;
	border-radius: 50%;
	margin: 0 auto;
}

#trendingCategories img {
	width: auto;
	margin: auto;
	height: 100%;
}

#superSavings .row {
	margin-left: 0;
	margin-right: 0;
}

#superSavings .ssCard {
	height: 250px;
	width: 49.5%;
	overflow: hidden;
	background-position: center;
	position: relative;
	margin-bottom: 10px;
}

#superSavings .textWrap {
	color: #fff;
	padding: 0 10px;
	z-index: 1;
	position: absolute;
	text-align: center;
}

#superSavings h3 {
	margin-bottom: 0 0 10px auto;
}

#superSavings h3 a {
	margin: 0 0 5px 0;
	text-shadow: 0 0 25px #000;
	font-size: 50px;
	line-height: 100%;
	color: #fff;
	padding-bottom: 10;
}

#superSavings span {
	background: #b60000;
	color: #fff;
	padding: 0.25rem 1.25rem;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-size: 20px;
	font-weight: 800;
}

#superSavings img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition: all 0.7s linear;
	-moz-transition: all 0.7s linear;
	-ms-transition: all 0.7s linear;
	-o-transition: all 0.7s linear;
	transition: all 0.7s linear;
}

#superSavings img:hover {
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	-o-transform: scale(1.3);
	-webkit-filter: grayscale(100%);
	transform: scale(1.05);
	filter: grayscale(100%);
	filter: gray;
}

#superSavings .ssCard:nth-child(odd) {
	border-right: 8px solid #fff;
	border-left: 15px solid #fff;
}

#superSavings .ssCard:nth-child(even) {
	border-left: 10px solid #fff;
	border-right: 2px solid #fff;
}

#superSavings div.ssCard a {
	margin: 10px;
	display: block !important;
	overflow: hidden;
}

#superSavings div.ssCard :first-child a:focus {
	outline: -webkit-focus-ring-color auto 10px !important;
}

.productcarousel .item {
	padding: 10px;
}

.productcarousel h3 {
	margin: 10px;
}

.productcarousel a {
	line-height: 140%;
	text-align: center;
	display: block;
	color: #757575;
	font-size: 16px;
	width: 167px;
}

.productcarousel .owl-item a h3,
.productcarousel span.former-price,
.productcarousel span.saved-percent {
	color: #757575;
}

.productcarousel span.offer {
	color: red;
}

.productcarousel span.former-price {
	text-decoration: line-through !important;
}

.productcarousel img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

#d-hpCarousel .slick-dots li {
	margin: 0 10px;
}

#d-hpCarousel .slick-dots li button:before {
	color: #595959;
	font-size: 40px;
}

#d-hpCarousel .slick-dots li.slick-active button:before {
	color: #23aa0d;
	opacity: 1;
}

#d-hpCarousel button.slick-prev.slick-arrow {
	z-index: 1;
	left: 2% !important;
	top: 0;
}

#d-hpCarousel button.slick-next.slick-arrow {
	z-index: 1;
	right: 2% !important;
	top: 0;
}

#d-hpCarousel .slick-next,
#d-hpCarousel .slick-prev {
	top: 42% !important;
}

#d-hpCarousel .slick-next:before,
#d-hpCarousel .slick-prev:before {
	font-family: big5-icons;
	font-size: 100px !important;
	line-height: 1;
	color: #fff !important;
	opacity: 0.5;
}

#hpContent.big5 div.slider-container:nth-child(2) {
	display: block !important;
	min-height: 445px !important;
}

#hpContent.big5 section#theBigDeals.slider-container.contentblock {
	display: block !important;
}

#d-hpCarousel {
	display: block !important;
}

.productcarousel button.slick-next.slick-arrow,
.productcarousel button.slick-prev.slick-arrow {
	background: #003da5 !important;
	z-index: 2000;
}

.productcarousel button.slick-next {
	right: 0 !important;
}

.productcarousel button.slick-prev {
	left: 0;
}

#hpContent.big5 #banner img {
	display: block;
	margin: auto;
}

#hpContent.big5 .promo-desktop,
#hpContent.big5 .promo-mobile {
	max-height: 400px;
}

#hpContent.big5 .promo-desktop {
	display: block;
	margin: 0 auto;
}

#hpContent.big5 .promo-mobile {
	display: none;
}

#hpContent.big5 .promo-mobile-single {
	display: none;
}

#hpContent.big5 .no-pad-left {
	padding-left: 0 !important;
}

#hpContent.big5 .no-pad-right {
	padding-right: 0 !important;
}

#hpContent.big5 .promo-banner-link {
	font-size: 1.5rem;
	color: #000;
	text-align: center;
	display: block;
}

#consent {
	bottom: 0 !important;
}

@media screen and (min-width: 768px) {
	#hpContent.big5 .tc-title {
		font-size: 1.25rem;
	}
}

@media screen and (min-width: 1100px) {
	#hpContent.big5 #superSavings .ssCard {
		height: 366px;
	}
}

@media screen and (min-width: 960px) {
	#d-hpCarousel,
	#hpContent.big5 #tickerTape,
	#m-hpCarousel div,
	#trendingCategories .tcCard {
		margin-bottom: 30px;
	}

	#trendingCategories {
		margin-bottom: 0;
		margin-top: 0;
	}

	#trendingCategories img {
		display: inline;
	}

	#trendingCategories li.tcCard {
		height: auto;
		width: 16.6%;
	}

	#trendingCategories .wrp {
		border: none;
	}

	#trendingCategories a:hover {
		color: #000;
	}

	#trendingCategories .wrp {
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}

	#superSavings.container-fluid {
		padding-left: 30px;
		padding-right: 30px;
	}

	#superSavings .ssCard:nth-child(odd) {
		border-right: 0 solid #fff;
		border-left: 15px solid #fff;
	}

	#superSavings .ssCard:nth-child(even) {
		border-left: 10px solid #fff;
		border-right: 2px solid #fff;
	}

	#superSavings .ssCard {
		height: 305px;
	}
}

@media screen and (min-width: 801px) and (max-width: 959px) {
	#superSavings .ssCard {
		height: 275px;
	}

	#d-hpCarousel {
		display: block !important;
	}
}

@media screen and (max-width: 863px) {
	.promo-desktop {
		margin-top: 30px;
	}
}

@media screen and (min-width: 769px) {
	#m-hpCarousel {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	#hpContent.big5 div.slider-container:nth-child(1) {
		display: none !important;
	}

	#d-hpCarousel {
		display: none !important;
	}

	#m-hpCarousel {
		display: block !important;
	}

	#tickerTape a p {
		display: block;
		margin: 5px;
	}
}

@media screen and (min-width: 750px) and (max-width: 800px) {
	#superSavings .ssCard {
		height: 246px;
	}
}

@media screen and (min-width: 750px) and (max-width: 992px) {
	#superSavings .ssCard:nth-child(odd) {
		border-right: 5px solid #fff;
		border-left: 12px solid #fff;
	}

	#superSavings .ssCard:nth-child(even) {
		border-left: 7px solid #fff;
		border-right: 5px solid #fff;
	}

	#superSavings h3 a {
		font-size: 42px;
	}
}

#hpCarousel button.slick-next.slick-arrow,
#hpCarousel button.slick-prev.slick-arrow {
	width: auto;
	height: auto;
}

#theBigDeals button.slick-next.slick-arrow {
	right: 2%;
}

#theBigDeals button.slick-prev.slick-arrow {
	left: -1%;
}

#theBigDeals .slick-next:before,
#theBigDeals .slick-prev:before {
	color: #fff;
	opacity: 1;
}

@media screen and (max-width: 769px) {
	#hpContent.big5 div.slider-container:nth-child(2) {
		min-height: unset !important;
	}
}

@media screen and (max-width: 749px) {
	#superSavings.container-fluid {
		padding: 0;
	}

	#tickerTape a,
	#weeklyAdImg {
		display: block;
	}

	#tickerTape a:nth-child(1) {
		width: auto;
	}

	#tickerTape a:nth-child(2),
	#tickerTape a:nth-child(3) {
		margin: 10px 0;
	}

	#tickerTape span::before {
		content: "";
	}

	#superSavings .ssCard {
		padding-left: 0;
		padding-right: 0;
		width: 100%;
		height: 350px;
	}

	#hpContent.big5 div.slider-container:nth-child(2) {
		min-height: unset !important;
	}

	#hpContent.big5 #banner img {
		display: block;
		margin: auto;
		width: 100%;
	}
}

@media screen and (max-width: 750px) {
	#superSavings .ssCard:nth-child(odd) {
		border-right: 0;
		border-left: 0;
	}

	#superSavings .ssCard:nth-child(even) {
		border-left: 0;
		border-right: 0;
	}
}

@media screen and (max-width: 720px) {
	#trendingCategories div.tcCard {
		width: 49.8%;
	}

	#trendingCategories .wrp a {
		font-size: 18px;
	}
}

@media screen and (max-width: 520px) {
	#superSavings .ssCard {
		height: 300px;
	}

	#hpContent.big5 .promo-desktop {
		display: none;
	}

	#hpContent.big5 .promo-mobile {
		display: flex;
		width: 49%;
	}

	#hpContent.big5 .promo-mobile-single {
		display: flex;
		margin: 0 auto;
	}

	#superSavings div.ssCard a {
		margin: 5px !important;
	}
}

@media screen and (max-width: 414px) {
	#hpContent.big5 #superSavings .ssCard {
		height: 276px;
		margin-bottom: 3%;
	}

	#hpContent.big5 #superSavings h3 a {
		font-size: 40px;
	}
}

@media screen and (max-width: 375px) {
	#superSavings .ssCard {
		height: 250px;
	}

	#superSavings h3 {
		font-size: 50px;
		line-height: 100%;
	}
}

.big5.pg-odd .green {
	padding-bottom: 1em;
}

.big5.pg-odd .small-text {
	padding-top: 1em;
	clear: both;
}

.big5.pg-odd #oddLogo {
	width: 80%;
	margin-top: 2em;
}

.big5.pg-odd .green {
	padding-top: 1em;
}

.big5.pg-odd .oddlogowrap {
	text-align: center;
}

@media only screen and (max-width: 64em) {
	.big5.pg-odd .button.primary {
		width: 80%;
		margin: 0 auto;
	}
}

@media only screen and (min-width: 40.063em) and (orientation: portrait) {
	.big5.pg-odd #oddLogo {
		width: 50%;
	}
}

@media only screen and (min-width: 40.063em) {
	.big5.pg-odd .green {
		font-size: 2.5em;
		line-height: 100%;
	}
}

@media only screen and (min-width: 450px) {
	#hybridCpnExp li {
		width: 50%;
	}
}

@media only screen and (max-width: 450px) {
	#hybridCpnExp li:first-child {
		margin-bottom: 30px;
	}
}

@media only screen and (min-width: 960px) {
	div#hollenbeckStoreList div {
		height: 100px !important;
	}
}

@media only screen and (min-width: 768px) {
	div#hollenbeckStoreList div {
		height: 80px;
	}
}

@media only screen and (max-width: 550px) {
	div#hollenbeckStoreList div {
		margin-bottom: 20px;
	}
}

div.big5 #event_data h3 {
	padding-top: 0;
}

p.main-cta {
	padding-bottom: 0.5rem !important;
}

.cta-center {
	right: unset;
}

.slick-next:before,
.slick-prev:before {
	font-size: 30px;
}

body.cart div.site-wrapper main h1:first-child {
	line-height: 100%;
	margin-bottom: 10px;
}

div.total-row.total {
	clear: both;
}

@media only screen and (max-width: 767px) {
	span.sale-label {
		display: block;
	}
}

@media only screen and (max-width: 767px) {
	body.product.hiddenBtnSizeColor .pdp-attrs .c-color,
	body.product.hiddenBtnSizeColor .pdp-attrs .c-size {
		width: 50%;
		float: left;
	}
}

body.product.hiddenBtnColorSize .pdp .c-qty {
	margin: 0 !important;
}

@media only screen and (max-width: 767px) {
	#eJoinSubmit {
		width: 100%;
	}
}

div.newColors div.selected {
	box-shadow: 0 0 0 1px #003da5;
	border-radius: 100%;
	width: 35px !important;
	height: 35px;
	margin: 0 auto;
}

div.newColors div.selected span {
	border: 2px #fff solid;
}

div.newColors label.no-before:before {
	content: none !important;
}

div.newColors a.facet-show-more {
	clear: both;
}

div.newColors div {
	width: 30%;
	text-align: center;
}

div.newColors div:nth-child(6) {
	display: list-item !important;
}

div.newColors div label {
	padding: 0;
	margin: 0;
}

div.newColors .facet.labelInline {
	width: 30%;
	text-align: center;
	float: left;
	padding: 0;
	margin: 0 5px 0 0;
	height: 80px;
}

div.newColors .facet.labelInline:nth-child(3n) {
	margin-right: 0 !important;
}

div.newColors span.filterColor {
	height: 35px;
	width: 35px;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	display: block;
	margin: 0 auto;
}

div.newColors .black.filterColor {
	background: #000;
}

div.newColors .blue.filterColor {
	background: #00f;
}

div.newColors .yellow.filterColor {
	background: #ff0;
}

div.newColors .brown.filterColor {
	background: #8b4513;
}

div.newColors .green.filterColor {
	background: green;
}

div.newColors .grey.filterColor {
	background: grey;
}

div.newColors .grey.filterColor {
	background: grey;
}

div.newColors .orange.filterColor {
	background: orange;
}

div.newColors .pink.filterColor {
	background: pink;
}

div.newColors .purple.filterColor {
	background: purple;
}

div.newColors .red.filterColor {
	background: red;
}

div.newColors .white.filterColor {
	background: #fff;
	border: 1px grey solid;
}

div.newColors .active .white.filterColor {
	border: none;
}

big5new #superSavings .ssCard:nth-child(even) {
	border-left: 0;
	border-right: 0;
}

@media screen and (max-width: 720px) {
	#big5new #trendingCategories div.tcCard {
		width: 49.8%;
	}

	#trendingCategories .wrp a {
		font-size: 18px;
	}
	#CouponPop2 {
		bottom: 12%;
	}
}

@media screen and (max-width: 520px) {
	#big5new #superSavings .ssCard {
		height: 300px;
	}

	#big5new .promo-desktop {
		display: none;
	}

	#big5new .promo-mobile {
		display: flex;
		width: 49%;
	}

	#big5new .promo-mobile-single {
		display: flex;
		margin: 0 auto;
	}

	#superSavings div.ssCard a {
		margin: 5px !important;
	}
}

@media screen and (max-width: 414px) {
	#big5new #superSavings .ssCard {
		height: 276px;
		margin-bottom: 3%;
	}

	#superSavings h3 a {
		font-size: 40px;
	}
	#CouponPop2 {
		bottom: 19%;
	}
}

@media screen and (max-width: 375px) {
	#big5new #superSavings .ssCard {
		height: 250px;
	}

	#big5new #superSavings h3 {
		font-size: 50px;
		line-height: 100%;
	}
}
.sf-consent__header {
	background: unset !important;
}
.sf-consent__header__title {
	color: #003590 !important;
	font-size: 25px;
}
