body {
	font-size: 16px;
	color: #0e0e0f;
	font-weight: 300;
	font-family: roboto,sans-serif;
	display: flex;
	flex-direction: column;
	margin: 0;
	
	background: #f4f5f9;
}

h1 {
	font-size: 2.5rem;
    margin: 0;
    font-weight: 900;
}
h2 {
	font-size: 1.75rem;
	margin: .5rem 0 .25rem;
	font-weight: 700;
}
h3 {
	font-size: 1.5rem;
	margin: .5rem 0 .125rem;
	font-weight: 500;
}
h4 {
	font-size: 1.25rem;
	margin: .5rem 0 0;
	font-weight: 400;
}
p {
	line-height: 1.75;
}
li {
	line-height: 1.5;
}

a, a:hover, a:visited, a:active {
	color: #335ab9;
	text-decoration: none;
}

img {
    max-width: 100%;
	height: auto;
}

figure {
	margin: 0;
}
figure figcaption {
	color: #555;
	font-size: .85rem;
}

.mbtn {
	position: relative;
	background: rgba(19,121,212,.1);
	color: #0d518e;
	font-weight: 400;
	font-size: .85rem;
	text-align: center;
	padding: 0 1.5rem 0 .75rem;
	height: 48px;
	border-radius: .25rem;
	line-height: 48px;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	
	transition: all .2s;
	
}
.no-touch .mbtn:hover {
	background: rgba(19,121,212,1);
	color: #fff;
}
.mbtn.external:after {
	content: '\276F';
	position: absolute;
	top: 0;
	right: 0.75rem;
}
.mbtn.blue {
	background: #1379d4;
	color: #fff;
}
.no-touch .mbtn.blue:hover {
	background: #064780;
}

.curved {
    border-top-right-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
}

.app {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 1rem 15px;
	
	max-width: 1040px;
	margin: auto;
}

.app .banner {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: rgb(51,90,185);
	background: linear-gradient(135deg, rgba(51,90,185,1) 50%, rgba(43,73,145,1) 100%);
	padding: 1rem 3rem;
	color: #fff;
	min-height: 250px;
}
.app .banner.thin {
	min-height: 75px;
}

.app .banner a {
	color: inherit;
}

/* container */
.container {
	
}
.container .main {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.container .main .summary {
	font-size: 1.25rem;
}
.container .main .summary p {
	margin: 1rem 0 0;
}
.container .main .hero picture {
	max-height: 375px;
}
.container .main .hero picture img {
	height: 375px;
	object-fit: cover;
	width: 100%;
}

/* container */
.container-flex {
	display: grid;
    grid-template-columns: minmax(auto,80%) minmax(auto,20%);
    grid-gap: 1rem;
}

.container-flex .main {
	grid-column: 1/2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.container-flex .sidebar {
	grid-column: 2/2;
	position: relative;
}

.container-flex .sidebar .ad {
	position: sticky;
	top: 1rem;
	text-align: right;
}

/* header */
header {
	background: #fff;
	border-bottom: 1px solid #ebeff5;
	padding: 1rem .5rem;
}
header .inner {
	max-width: 1040px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .inner .logo {
	flex: 1;
}
header .inner .logo a {
	font-size: 1.5rem;
	font-weight: 700;
	color: initial;
}


/* footer */
footer {
	padding: 3rem 0 2rem;
	text-align: center;
}

/* listing_filter */
.listing_filter {
	display: flex;
	justify-content: space-between;
}
.listing_filter .count {
	font-weight: 700;
}

/* listing_products */
.listing_products {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.listing_products .listing_product_grid {
	display: grid;
	grid-auto-flow: dense;
	gap: 1rem;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}
.listing_products .listing_product_grid .listing_product {
	position: relative;
	height: 100%;
	grid-area: span 1 / span 1 / auto / auto;
	
	background: #fefefe;
	box-shadow: 0 2px 6px 0 rgba(32,76,136,.15);
	border-radius: 1rem;
}
.listing_products .listing_product_grid .listing_product.highlight {
	grid-area: span 2 / span 2 / auto / auto;
}
.listing_products .listing_product_grid .listing_product .inner {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	gap: .5rem;
	height: 100%;
	
	color: initial;
	margin: 0 .75rem;
}
.listing_products .listing_product_grid .listing_product .inner picture {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(51, 53, 54, 0.05);
	border-radius: .5rem;
	width: 100%;
	min-height: 150px;
	position: relative;
	margin-top: .75rem;
}
.listing_products .listing_product_grid .listing_product .inner picture img {
	height: 140px;
	mix-blend-mode: multiply;
    object-fit: contain;
	transition: transform 300ms;
}
.no-touch .listing_products .listing_product_grid .listing_product:hover .inner picture img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.listing_products .listing_product_grid .listing_product.highlight .inner picture {
	height: 350px;
}
.listing_products .listing_product_grid .listing_product.highlight .inner picture img {
	height: 340px;
}
.listing_products .listing_product_grid .listing_product .inner picture .discount_label {
	position: absolute;
	top: .5rem;
	right: .5rem;
	background:  #fff570;
	font-size: .75rem;
	font-weight: 400;
	padding: .25rem .5rem;
	border-radius: .25rem;
	box-shadow: 0 2px 6px 0 rgba(32,76,136,.15);
}
.listing_products .listing_product_grid .listing_product .inner h3 {
	font-size: .85rem;
	line-height: 20px;
	height: 40px;
	font-weight: 400;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;	
}
.listing_products .listing_product_grid .listing_product.highlight .inner h3 {
	font-size: 1.25rem;
	line-height: 25px;
	height: 50px;
}
.listing_products .listing_product_grid .listing_product .inner .description {
	color: #747a84;
	font-size: .85rem;
	
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.listing_products .listing_product_grid .listing_product .inner .description p {
	margin: 0;
}
/*
.listing_products .listing_product .inner .delivery_time {
	font-size: .75rem;
	height: 20px;
	line-height: 20px;
	color: #666;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
*/
.listing_products .listing_product_grid .listing_product .inner .pricing {
	display: flex;
	align-items: flex-start;
	margin: auto 0 0;
	height: 30px;
	line-height: 30px;
}
.listing_products .listing_product_grid .listing_product .inner .pricing .price {
	font-size: .85rem;
	color: #666;
	-webkit-text-decoration: line-through;
	text-decoration: line-through;
	margin-right: .5rem;
}
.listing_products .listing_product_grid .listing_product .inner .pricing .final_price {
	font-weight: 600;
}
.listing_products .listing_product_grid .listing_product .inner .cta {
	width: 100%;
	margin-bottom: .75rem;
}


/* navigation */
.navigation {
	
}
.navigation ul {
	margin: 0;
	padding: 0;
	/*border-top: 1px solid #555;*/
}
.navigation ul li {
	list-style: none;
	text-transform: capitalize;
	line-height: 48px;
	display: inline-block;
	margin: 0 .5rem;
}
.navigation ul li a {
	color: inherit;
}
.no-touch .navigation ul li.active a {
	border-bottom: 1px solid;
}
.no-touch .navigation ul li:hover a {
	border-bottom: 1px solid;
}


/* grid_gallery */
/*
.grid_gallery {
	display: grid;
	max-height: 500px;
	grid-gap: 10px;
	overflow: hidden;
	grid-template-areas:
		"main main sub1 sub2"
		"main main sub3 sub4"
	;
	grid-template-columns: 1fr 1fr fit-content(100%) fit-content(100%);
	
	background: #fefefe;
	box-shadow: 0 2px 6px 0 rgba(32,76,136,.15);
	border-radius: 1rem;
}
.grid_gallery .grid_media {
	
}
.grid_gallery .grid_media.main {
	grid-area: main;
	max-height: 490px;
	line-height: 0;
}
.grid_gallery .grid_media.sub {
	aspect-ratio: 1;
	max-height: 240px;
	width: 100%;
	line-height: 0;			
}
.grid_gallery .grid_media.sub.cnt2 {
	grid-area: sub1;
}
.grid_gallery .grid_media.sub.cnt3 {
	grid-area: sub2;
}
.grid_gallery .grid_media.sub.cnt4 {
	grid-area: sub3;
}
.grid_gallery .grid_media.sub.cnt5 {
	grid-area: sub4;
}
.grid_gallery .grid_media img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}*/

/* listing curated */
.listing_curated_product {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	border-radius: 1rem;
	padding: 1rem 2rem;
	background: #fefefe;
	box-shadow: 0 2px 6px 0 rgba(32,76,136,.15);
	
}

.listing_curated_product .heading {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 1 100%;
	gap: .5rem;
	margin-bottom: 1rem;
}
.listing_curated_product .heading h3 {
	/*color: #3c78f0;*/
	font-weight: 600;
}
.listing_curated_product .media {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 30%;
	height: 310px;
}
.listing_curated_product .media img {
	max-height: 310px;
}

.listing_curated_product .card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex: 0 70%;
}

.listing_curated_product .card .offers {
	display: flex;
	flex-direction: column;
}
.no-touch .listing_curated_product .card .offers .offer:hover .inner {
	background: #f5f5f5;
}
.listing_curated_product .card .offers .offer .inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: .5rem;
	height: 48px;
	color: initial;
	border-bottom: 1px dotted #555;
}

.listing_curated_product .card .offers .offer .inner .partner {
	flex: 0 0 100px;
	font-weight: 400;
}
.listing_curated_product .card .offers .offer .inner .stock {
	flex: 0 0 175px;
	line-height: 24px;
	font-size: .85rem;
}
.listing_curated_product .card .offers .offer .inner .stock .symbol:before {
	content: '\A';
    display: inline-block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin-right: 0.25rem;
	background: #555;
}
.listing_curated_product .card .offers .offer .inner .stock .symbol.green:before {
	background: green;
}
.listing_curated_product .card .offers .offer .inner .stock .symbol.red:before {
	background: red;
}
.listing_curated_product .card .offers .offer .inner .prices {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	line-height: 24px;
}
.listing_curated_product .card .offers .offer .inner .prices .price {
	font-size: .85rem;
	color: #666;
	position: relative;
}
.listing_curated_product .card .offers .offer .inner .prices .price:before {
    position: absolute;
    content: "";
    left: 0;
    top: 45%;
    right: 0;
    border-top: 1px solid #222!important;
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    transform: rotate(-15deg);
}
.listing_curated_product .card .offers .offer .inner .prices .final_price {
	font-weight: 500;
	font-size: 1.15rem;
}