/*
NOTE [brett]:
- additional styles added here so we can be as non-destructive as possible
*/

// LAZYLOAD CSS
img.lazyload {
	display: none;
}
img.lazyload .no-javascript & {
	display: block;
}

img[data-sizes="auto"] {
	display: block;
	width: 100%;
}
img.lazyloading:not(.blur-up) {
	opacity: 0;
}
img.lazyloading:not(.blur-up) .no-javascript & {
	opacity: 1;
}
img.lazyloaded:not(.blur-up) {
	opacity: 1;
	transition: opacity 0.4s ease;
}
img.blur-up {
	filter: blur(5px);
	transform: scale(1);
	transition: filter 1s, -webkit-filter 1s, box-shadow 1s;
}
img.blur-up.lazyloaded {
	filter: blur(0);
}
.lazyloading:not(img) {
	opacity: 0;
}
.lazyloading:not(img) .no-javascript & {
	opacity: 1;
}

.lazyloaded:not(img) {
	opacity: 1;
	transition: opacity 0.4s ease;
}

.build-note {
	margin-bottom: 0;
	padding: 1rem;
	background-color: lightsteelblue;
	color: palevioletred;
	font-size: 0.75rem;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#counter {
	position: absolute;
	top: -8px;
	right: -0px;
	background-color: #f66959;
	width: 24px;
	height: 24px;
	padding: 0;
	line-height: 1.8;
	text-align: center;
}

.badge {
	display: inline-block;
	min-width: 10px;
	padding: 3px 7px;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
	vertical-align: middle;
	white-space: nowrap;
	text-align: center;
	background-color: #777;
	border-radius: 10px;
}

.gift-note-wrapper {
	padding: 1rem;
	background-color: aliceblue;
}

.cart-checkbox {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 1rem;
	background-color: #dddddd45;
}

.cart-checkbox > label {
	width: calc(100% - 5rem);
	margin-bottom: 0;
}

#persInp {
	width: 3rem;
	margin: 5px;
}

.gallery-cnt .img-responsive {
	height: 100%;
	max-height: 115px;
	object-fit: cover;
}

@media only screen and (min-width: 950px) {
	.gallery-cnt {
		max-width: 580px;
	}
}

.home-hero {
	position: relative;
	height: 100vh;
	max-height: 795px;
	background-color: #6792c8;
}

.home-hero .corner-badge-container {
	position: absolute;
	top: 0;
	left: 0;
}

.home-hero img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.template-cart .page-title-cnt h1 {
	margin-bottom: 2.5rem;
}

.template-cart .continue-shopping {
	margin-bottom: 6rem;
	font-family: Lato, sans-serif;
}

.template-cart .continue-shopping-message {
	font-size: 2.5rem;
}

.homepage-magic-folding .centro {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}




