/* CSS for website: Nymland */


/************* GLOBAL ********************/

:root {
	--white: #FFFFFF;
	--black: #1C1C1A;
	--clover: #4C5C2C;
	--olive: #AAAA67;
	--pumkin: #F77016;
	--conch: #A8B6B3;
	--cello: #3A4E64;	
	
	--forest: #303926;
	}

@font-face {
    font-family: 'social_media_circled';
    src: url('../../assets/fonts/social_media_circled-webfont.woff2') format('woff2'),
         url('../../assets/fonts/social_media_circled-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

html, body {
	height: 100%;
	width: 100%;
	background-color: var(--white);
	color: var(--black);
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	margin: 0em;
	padding: 0em;
	}

h1, h2, h3, h4, h5, h6, h7, h8, h9 {
	font-family: 'Fahkwang', sans-serif;
	font-weight: 400;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility; 
}

h1 {
	font-size: x-large;
}

div {
	margin: 0px !important;
	padding: 0px !important;
	}

input:focus, textarea:focus, button:focus, select:focus{
    outline: none;
}

a {
	color: var(--forest);
	text-decoration: none;
	}

	a:hover {
		opacity: 0.7;
		}
		
a .button {
	text-decoration: none;
}

ul {
	list-style-position: outside;
	padding-left: 1em;
	}
	
img {/* make images responsive */
  max-width: 100%;
  height: auto;
}
	
button, .button {
	margin: 1em auto;
	background-color: var(--pumkin);
	box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
	color: var(--white);
	height: 2.5em;
	width: auto;
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	border: none;
	border-radius: 5px;
	display: inline-block;
	padding: 12px;
	-webkit-appearance: none;
	transition: 0.4s;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	}

	button:hover, .button:hover {
		opacity: 0.7;
		text-decoration: none;
		color: var(--white);
		}

.button-outline {
	margin: 1em auto;
	border: 1px solid #686868;
	background-color: transparent;
	box-shadow: 0px 3px 8px rgba(0,0,0,0.05);
	color: #686868;
	height: 2.5em;
	width: auto;
	font-size: 18px;
	font-weight: 700;
	border-radius: 5px;
	display: inline-block;
	padding: 12px;
	-webkit-appearance: none;
	transition: 0.4s;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	line-height: 18px;
	}
	
	.button-outline:hover {
		color: var(--white);
		text-decoration: none;
		background-color: black;
		}
		
.mini-button {
	margin: 1em auto;
	background-color: var(--forest);
	color: white;
	height: 2em;
	font-size: 10px;
	border: none;
	border-radius: 3px;
	display: inline;
	width: auto;
	padding: 0px 10px 0px 10px;
	-webkit-appearance: none;
	transition: 0.4s;
	}

	.mini-button:hover {
		opacity: 0.7;
	}
	
.mini-button-outline {
	margin: 1em auto;
	background-color: transparent;
	color: gray;
	height: 2em;
	font-size: 10px;
	border: 1px solid lightgray;
	border-radius: 3px;
	display: inline;
	width: auto;
	padding: 0px 10px 0px 10px;
	-webkit-appearance: none;
	transition: 0.4s;
	}

	.mini-button-outline:hover {
		background-color: gray;
		color: white;
	}

.page-title {
	color: #545454;
	text-transform: uppercase;
	text-align: center;
	}
	
.page-subtitle {
	color: var(--gray);
	font-weight: 300;
	font-size: 1.25em;
	text-transform: uppercase;
	margin-top: -40px;
	padding-bottom: 50px;
	}
		
.center {
	margin-left: auto;
	margin-right: auto;
	display: inline-block;
}

.recaptcha-wrapper {
}

.g-recaptcha {
    padding-top: 40px !important;
    transform:scale(0.82);
    transform-origin:0 0;
}

.statusmsg {
	margin: auto;
	color: red;
	font-size: 1em;
}

.social-button {
	font-family: 'social_media_circled';
	color: #756f6b;
	font-size: 2em;
}

.social-button:hover {
	color: var(--beige);
}

.social-share-button {
	font-family: 'social_media_circled';
	color: var(--lightgray);
	font-size: 1.5em;
}

.social-share-button:hover {
	color: var(--gray);
}


::placeholder {
	color: var(--darkbrown);
	opacity: 1;
}

.page-wrapper {
	text-align: center;
}

#grid-page-wrapper {
	display: grid;
	grid-template-areas: 
    'header'
    'main'
    'footer';
	grid-column-gap: 0px;
	grid-template-rows: auto;
	grid-template-columns: 1fr;
	grid-template-rows: minmax(auto);
	grid-template-columns: minmax(auto);
	grid-row-gap: 0px;
	margin-top: 0em;
	width: 100%;
}

header {
	grid-area: header;
	width: 100%;
}

main {
	grid-area: main;
	width: 100%;
}

footer {
	grid-area: footer;
	width: 100%;
	/* remainder added to make footer take up full viewport rather than contained in grid width contraint */
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.alert-success {
	background-color: green;
	color: white;
	font-size: 12px;
}

.alert-error {
	background-color: red;
	color: white;
	font-size: 16px;
}

.error {
	color: red;
	font-size: 12px;
}

.success {
	color: green;
	font-size: 12px;
}

.pagination_controls {
	font-size:19px;
}
.pagination_controls > a {
	color: #bbbbbb;
	font-weight: 500;
}

.full-width {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

/** Floating Label Input Fields **/
.float-container {
	border: solid 1px #ccc;
	padding: 0px 8px;
	position: relative;
	margin-top: 10px !important;
}
.float-container input {
	border: none;
	font-size: 16px;
	margin: 16px 0 10px;
	outline: 0;
	padding-left: 10px;
}
.float-container label {
	font-size: 16px;
	position: absolute;
	transform-origin: top left;
	transform: translate(0, 16px) scale(1);
	transition: all .1s ease-in-out;
	padding-left: 10px;
}
.float-container.active label {
	transform: translate(0, 4px) scale(.75);
	padding-left: 10px;
}


@media (min-width: 700px) {
	#grid-page-wrapper  {
		max-width: 1300px;
		display: inline-block; /* to center grid on viewable page */
	}
	h1 {
		font-size: 36px;
	}
}


/**************** CAPTCHA ********************/
#captcha_1 {background-color: #FF3333;}
#captcha_2 {background-color: #FF8333;}
#captcha_3 {background-color: #FFF533;}
#captcha_4 {background-color: #3AFF33;}
#captcha_5 {background-color: #3392FF;}
#captcha_6 {background-color: #A033FF;}
#captcha_7 {background-color: #FF33E9;}
#captcha_8 {background-color: #040000;}
#captcha_9 {background-color: #8C5638;}



/**************** HEADER ********************/
		
.logo {
	font-family: 'Cagliostro', sans-serif;
	font-size: 45px;
	color: #474747;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

.tm {
	font-size: 13px;
	vertical-align: top; 
	position: relative; 
	top: 1.5em;
}

.cart-icon {
	position: relative;
	padding-bottom: 20px !important;
}


.cart-dot {
	width: 10px; 
	height: 10px; 
	border-radius: 50%; 
	background-color: var(--pumkin); 
	position: relative; 
	bottom: 8px; 
	left: 47vw; 
}

@media (min-width: 700px) {
	.cart-dot {
	position: relative;
	top: -6px;
	left: 22px;
	}
}

	
/************** MEGA MENU ***************/


.banner-area {
	width: 100%;
	position: relative;
}

.menu-area {
	position: static;
	z-index: 100;
}

.mega-area {
	width: 100%;
	left: 0;
	right: 0;
	padding: 20px !important;
	z-index: 100;
	border: 1px solid #e7e7e7;
	font-family: 'Roboto', sans-serif;
	font-size: smaller;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.mega-area a {
	color: black;
}

.mega-area a:hover {
	text-decoration: none;
}

.dropdown-item {
	padding: 3px 0;
	position: relative;
	z-index: 100;
}

.mega-area h6 {
	font-weight: 900;
	font-size: small;
}

.mega-area h6:hover {
	font-weight: 300;
}

.navbar {
	background-color: white;
	width:100%;
	padding: 10px 20px 0px 18px;
}

.function-icon {
	color: gray;
	font-size: 10px;
	padding-left: 15px;
	padding-top: 34px;
}

.dropdown {
	padding-top: 28px;
}

@media (min-width: 700px) and (max-width: 1300px) {
	.navbar  {
	padding-left: 15px !important;
	}	
}


/**************** ABOUT US ********************/

#about {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#about div { /* to center div horizontally */
	max-width: 85%;
}

#about h1 {
	padding-top: 40px;
	padding-bottom: 20px;
}

#about hr {
	width: 100px;
}

#about h2 {
	padding-top: 30px;
}

#about p {
	text-align: left;
	max-width: 600px;
	padding: 0 20px;
}

#about ul {
	padding: 0 20px;
	margin-left: 20px;
}

#about li {
	text-align: left;
	max-width: 600px;
	padding-top: 5px;
}

@media (min-width: 700px) {
	#about p, #about ul  {
	margin-left: 45px;
	}	
}

/**************** HOMEPAGE ******************/

#grid-homepage-detail {
	display: grid;
	grid-template-areas: 
    'hero hero'
    'intro intro'
    'sub-heros sub-heros'
    'categories categories'
    'guarantee guarantee'
    'best best'
    'callout callout'
    'featured featured'
    'posts posts';
   	grid-column-gap: 0px;
	grid-template-rows: auto auto;
	grid-template-columns: auto auto;
	grid-template-rows: minmax(auto, auto);
	grid-template-columns: minmax(auto, auto);
	grid-row-gap: 0px;
	width: 100%;
	color: black;
}

#hero {
	grid-area: hero;
	width: 100%;
}

#hero-title {
	color: #ffffff; 
	line-height: 34px;
	font-size: x-large;
}

#intro {
	grid-area: intro;
	width: 100%;
	text-align: center;
	padding: 80px 20px;
	font-size: smaller;
}

#intro {
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}

#intro p {
	max-width: 800px;
	border-left: 1px solid lightgray;
	font-style: italic;
	font-size: 24px;
	font-weight: 300;
	padding-left: 10px;
	padding-right: 10px;
	align-self: center;
	color: gray;
}

.superimpose-hero-container {
	position: relative;
	text-align: center;
	color: white;
	opacity: 1.2;
	box-sizing: padding-box;
}

.superimpose-hero-image {
	-webkit-filter: brightness(85%); 
	filter: brightness(85%);
}

.superimpose-hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: xx-large;
	font-weight: 900;
	margin: 0px;
	padding: 0px;
}

#sub-heros {
	grid-area: sub-heros;
	width: 100%;
}

#categories {
	grid-area: categories;
	width: 100%;
}

#guarantee {
	grid-area: guarantee;
	width: 100%;
}

#best {
	grid-area: best;
	width: 100%;
	text-align: center;
}

#callout {
	grid-area: callout;
	width: 100%;
}

#featured {
	grid-area: featured;
	width: 100%;
	text-align: center;
}

#posts {
	grid-area: posts;
	width: 100%;
}


/* BEGIN Animating hero banner */
.hero {
	padding: 0px;
	max-width: 100%;
	height: auto;
	display: inline-block;
	overflow: hidden;
	margin-top: 10px;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1.2, 1.2);
  }
  to {
    -webkit-transform: scale(1, 1);
  }
}

@keyframes zoom {
  from {
    transform: scale(1.2, 1.2);
  }
  to {
    transform: scale(1, 1);
  }
}

.hero img {
	max-width: 100%;
	height: auto;
	-webkit-animation: zoom 2s linear;
	animation: zoom 2s linear;
}

/* END Animating hero banner */

.hero a {
	text-decoration: none;
}

.hero a:hover {
	opacity: 1;
}

.sub-heros {
	padding: 0px;
	height: auto;
	display: inline-flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	align-content: space-around;
}

.sub-heros img{
	width: 100%;
	height: auto;
	padding: 15px;
	opacity: 1;
}

.sub-heros a {
	text-decoration: none;
}

.superimpose-subhero-container {
	align-self: auto;
	position: relative;
	text-align: center;
	color: white;
	opacity: 1.2;
	box-sizing: padding-box;
	display: inline !important;
}

.superimpose-subhero-image {
	-webkit-filter: brightness(85%); 
	filter: brightness(85%);
}

.superimpose-subhero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: xx-large;
	font-weight: 900;
	margin: 0px;
	padding: 0px;
}

@media (min-width: 800px) {
	.superimpose-hero-content {
		top: 83%;
	}
	#hero-title {
		font-size: inherit;
	}
}




/**************** SEARCH FORM ******************/

#search-wrapper {
	background-image: url('../../assets/images/website/search-background.jpg');
	background-repeat: no-repeat; 
	background-size: cover;
	-moz-background-size: cover;
	padding: 0px;
	height: 100vh;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

#search-form-container {
	max-width: 50%; /* To center item on page */
}

#search-form-container form {
	
}


/**************** CATEGORY PAGE ******************/

#grid-category-detail {
	display: grid;
	grid-template-areas: 
    'banner banner'
    'crumbs crumbs'
    'filters filters'
    'products products';
   	grid-column-gap: 0px;
	grid-template-rows: auto auto;
	grid-template-columns: 10vw 1fr;
	grid-template-rows: minmax(auto, auto);
	grid-template-columns: minmax(10vw, auto);
	grid-row-gap: 0px;
	width: 100%;
	color: black;
}
	
#banner {
	grid-area: banner;
	width: 100%;
}

.cat-title-block {
	background-color: var(--clover); 
	color: white; 
	margin: 0px; 
	padding: 15px;
}

#crumbs {
	grid-area: crumbs;
	width: 100%;
	padding: 10px;
}

#filters {
	grid-area: filters;
	width: 100%;
	text-align: center;
	padding: 40px 20px 40px 10px;
	font-family: 'Raleway', sans-serif;
	font-size: medium;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility; 
}

#filters h5 {
	padding-bottom: 10px;
}

#filters a {
	display: block;
	line-height: 8px;
}

#products {
	grid-area: products;
	width: 100%;
	text-align: center;
}

.superimpose-container {
	position: relative;
	text-align: center;
	color: white;
	opacity: 1.2;
	box-sizing: padding-box;
}

.superimpose-image {
	-webkit-filter: brightness(70%); 
	filter: brightness(70%);
}

.superimpose-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: xx-large;
	font-weight: 900;
	margin: 0px;
	padding: 0px;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
}

.gallery-item {
}

.gallery-item img{
	max-width: 100%;
	padding: 35px 15px 5px 15px;
	opacity: 1;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
}

.gallery-item img:hover {
	opacity: 0.9;
}

.gallery-item figure {
	max-width: 250px;
	text-align: center;
	color: var(--black);
	padding: 0px 15px 0px 15px;
}

.gallery-item label {
	width: 200px;
}

.gallery-item a {
	text-decoration: none;
}

@media (min-width: 700px) {
	#grid-category-detail  {
	grid-template-areas: 
		'banner banner'
		'crumbs crumbs'
		'filters products';
	}
	.gallery-item {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-right: -15px;
		margin-left: -15px;
		justify-content: center;
	}
	#filters {
		text-align: left;
		padding: 115px 20px 40px 10px;
	}
}

/**************** PRODUCT PAGE ******************/


/*** grid setup ***/
#grid-product-detail {
	display: grid;
	grid-template-areas: 
    'images images'
    'detail detail'
    'additional additional'
    'similar similar'
    'viewed viewed';
   	grid-column-gap: 0px;
	grid-template-rows: auto auto;
	grid-template-columns: 50vw 1fr;
	grid-template-rows: minmax(auto, auto);
	grid-template-columns: minmax(50vw, auto);
	grid-row-gap: 0px;
	margin-top: 2em;
	width: 100%;
	color: black;
}
	
#images, #detail, #additional, #similar, #viewed {
	text-align: center;
	padding: 20px !important;
}
	
#images {
	grid-area: images;
	width: 100%;
}
			
#images img {
	max-width: 800px;
}

.column {
	display: inline;
	width: 40px;
	height: auto;
}

.thumbnails-container {
	max-width: 800px;
}

.thumbnails {
	list-style: none;
	display: inline;
}

.thumbnails img{
	width: 100px !important;
	height: auto !important;
	padding: 10px;
}


#detail {
	grid-area: detail;
	width: 100%;
	text-align: left;
	padding-left: 30px !important;
}

#additional {
	grid-area: additional;
	width: 100%;
	text-align: left;
}


#similar {
	grid-area: similar;
	width: 100%;
	text-align: center;
}

#viewed {
	grid-area: viewed;
	width: 100%;
	text-align: center;
}

.mini-gallery {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
}

.mini-gallery-item {
}

.mini-gallery-item img{
	max-width: 100%;
	padding: 35px 15px 5px 15px;
	opacity: 1;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
}

.mini-gallery-item img:hover {
	opacity: 0.9;
}

.mini-gallery-item figure {
	max-width: 250px;
	text-align: center;
	color: var(--black);
	padding: 0px 15px 0px 15px;
}

.mini-gallery-item label {
	width: 200px;
}

.mini-gallery-item a {
	text-decoration: none;
}

.breadcrumbs {
	text-align: left;
}

.breadcrumbs a {
	color: gray;
}

.cartButton {
	width: 100%;
	border: none;
	background-color: var(--pumkin);
	color: white;
	text-transform: uppercase;
	font-size: 18px;
	line-height: 0px;
	border-radius: 0px;
	font-weight: bold;
}

.cartButton:hover {
	background-color: #d24e00;
	color: white;
}

.product-title {
	font-size: 28px;
	font-weight: bold;
	padding-top: 30px;	
}

.title-underline {
	border: none;
	color: #626262;
	background-color: #626262;
	width: 100px;
	height: 2px;
	text-align: left;
	margin-left: 0;
}

.strike-through {
	text-decoration: line-through;
	color: #bcbbbb;
}

.price {
	font-weight: 700;
	color: black;
}

.sale {
	color: var(--pumkin);
	font-size: 14px;
	font-weight: 700;
}

.quantity {
	font-weight: 700;
	display: flex;
	justify-content: space-between;
}

#detail select {
	background-color: white;
	border: none;
}

#detail select:focus {
	border-color: lightgray;
}

@media (min-width: 700px) {
	#grid-product-detail  {
	grid-template-areas: 
		'images detail'
		'additional additional'
		'similar similar'
		'viewed viewed';
	grid-template-columns: 50% 1fr;
	grid-template-columns: minmax(40%, 70%);
	}
	#images, #detail {
		text-align: left;
	}
	.mini-gallery {
		justify-content: flex-start;
	}
	.mini-gallery-item {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-right: -15px;
		margin-left: -15px;
		justify-content: flex-start;
	}
}

/*** images display ***/
* {
  box-sizing: border-box;
}

.mySlides img {
  vertical-align: middle;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
  -webkit-transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}

.active,
.demo:hover {
  opacity: 1;
}

/*** 222 images display 222 ***/

p#cf7_controls {
  text-align:center;
}
#cf7_controls span {
  padding-right:2em;
  cursor:pointer;
}
#cf7 {
  position:relative;
  height:281px;
  width:450px;
  margin:0 auto 10px;
}
#cf7 img {
  position:absolute;
  left:0;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  opacity:0;
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

#cf7 img.opaque {
  opacity:1;
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=1);
}

/*** accordian ***/

.accordion {
  background-color: white;
  color: var(--black);
  font-weight: bold !important;
  cursor: pointer;
  width: 100%;
  border: none !important;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  padding: 0px;
  margin: 0px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.accordion:hover {
	color: #444;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
}

.open:after {
  content: "\2212";
}

.panel {
  padding: 0 0px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/**************** CART ********************/

#cart-wrapper {
	text-align: center;
}

#cart-table-mobile {
	padding: 20px;
	max-width: 250px;
	display: inline-block !important; /* added to child to center content with parent that has text-align center */
}

#cart-table-desktop {
	display: inline-block;
	padding: 10px;
}

#cart-table-desktop {
	display: none;
	padding: 10px;
}

#cart-table-desktop th, #cart-table-desktop td {
	padding: 10px;
	vertical-align: top;
}

@media (min-width: 700px) {
	#cart-table-desktop {
	display: inline-block;
	}
	#cart-table-mobile {
	display: none !important;
	}
}

/**************** CHECKOUT ********************/


#checkout-banner {
	background-image: url('../../assets/images/website/checkout-background.jpg');
	background-repeat: no-repeat; 
	background-size: cover;
	-moz-background-size: cover;
}


/*** grid setup ***/
#grid-checkout-detail {
	display: grid;
	grid-template-areas: 
    'info info'
    'bag bag';
   	grid-column-gap: 0px;
	grid-template-rows: auto auto;
	grid-template-rows: minmax(auto, auto);
	grid-template-columns: minmax(50vw, auto);
	grid-row-gap: 0px;
	margin-top: 2em;
	width: 100%;
	color: black;
}
	
#info, #bag {
	padding: 20px !important;
}
	
#info {
	grid-area: info;
	width: 100%;
	text-align: center;
}

#bag {
	grid-area: bag;
	width: 100%;
	background-color: #b9cb69;
}

#bag th, #bag td {
	padding: 5px 7px 5px 7px;
}

#review-checkout {
	line-height: 6px;
	text-align: left;
}

#review-checkout p {
	color: #5e5e5e;
	font-weight: 300;
}

@media (min-width: 950px) {
	#grid-checkout-detail {
	grid-template-areas: 
    'info bag';
    grid-template-columns: minmax(50%, 60%);
	}
	#bag {
		padding-left: 40px;
	}
}

/*** billing form ***/
.billing-form{
	width: 450px;
	background: transparent;
	padding: 50px;
	margin: 20px auto;
	border-radius: 10px;
	border: 1px solid #e5e5e5;
	display: inline-block;
}
.billing-form ul{
	padding:0;
	margin: 20px;
	list-style:none;
}
.billing-form ul li{
	display: block;
	margin-bottom: 5px;
	min-height: 40px;
}
.billing-form ul li .field-style{
	box-sizing: border-box; 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	padding: 8px;
	outline: none;
	border: 1px solid #e5e5e5;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	font-size: 17px;
	line-height: 18px;
	color: gray;
}

.billing-form ul li .field-style:focus{
	outline-width: 5px;
	outline-color: #70ACE9;
	outline-offset: -1px;
	outline-style: auto;
}

.billing-form ul li .field-split-3{
	width: 31%;
}
.billing-form ul li .field-split{
	width: 49%;
}
.billing-form ul li .field-full{
	width: 100%;
}
.billing-form ul li input.align-left{
	float:left;
}
.billing-form ul li input.align-right{
	float:right;
}
.billing-form ul li select.align-left{
	float:left;
}
.billing-form ul li select.align-right{
	float:right;
}
.billing-form ul li input[type="button"], 
.billing-form ul li input[type="submit"],
.billing-form ul li select[type="submit"] {
	-moz-box-shadow: inset 0px 1px 0px 0px #3985B1;
	-webkit-box-shadow: inset 0px 1px 0px 0px #3985B1;
	box-shadow: inset 0px 1px 0px 0px #3985B1;
	background-color: #216288;
	border: 1px solid #17445E;
	display: inline-block;
	cursor: pointer;
	color: #FFFFFF;
	padding: 8px 18px;
	text-decoration: none;
	font: 12px Arial, Helvetica, sans-serif;
}
.billing-form ul li input[type="button"]:hover, 
.billing-form ul li input[type="submit"]:hover,
.billing-form ul li select[type="submit"]:hover {
	background: linear-gradient(to bottom, #2D77A2 5%, #337DA8 100%);
	background-color: #28739E;
}
.billing-form ul li select {
	height: 37px;
	background-color: transparent;
	border-radius: 0px !important;
}

/*** MISC ***/
#thank-you {
	text-align: left;
	height: 70vh;
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}


/**************** BLOG ******************/

#grid-container-blog {
	width: 100%;
	display: grid;
	grid-template-areas: 
	'hero-blog hero-blog hero-blog'
	'title-blog title-blog title-blog' 
	'articles articles articles'
	'sidebar sidebar sidebar'
	'footer footer footer';
	grid-column-gap: 0px;
	grid-template-rows: auto auto;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: minmax(auto, auto);
	grid-template-columns: minmax(auto, auto);
	grid-row-gap: 0px;
	margin-top: 4.4em;
	text-align: left;
	}

#title-blog, 
#articles, #sidebar {
	padding: 40px;
	}

#hero-blog {
	grid-area: hero-blog;
	justify-self: center;
	}
	
#title-blog {
	grid-area: title-blog;
	justify-self: center;
	}

#articles {
	grid-area: articles;
	justify-self: center;
	color: var(--black);
	}
	
	#articles div {  /* Used to center column within assigned grid section */
		max-width: 700px;
		margin: 0em 0em 0em 0em;
		padding: 40px;
		}
		
	#articles img {
		max-width: 700px;
		width: 100%; /* To make image responsive */
		height: auto; /* To make image responsive */
	}
	
	#articles figure {
		margin-left: 0px;
		position: relative;
	}
	
	#articles figure img{
		display: block;
	}
	
	#articles figcaption {
		font-size: smaller;
		font-style: italic;
		position: absolute;
		bottom: -20px;
		right: 0;
	}
	
	#articles b {
		font-weight: bold;
	}

#sidebar {
	grid-area: sidebar;
	justify-self: center;
	color: var(--gray);
	}
	
	#sidebar div {  /* Used to center column within assigned grid section */
		max-width: 10em;
		margin: 0 auto;
		}
		
	#sidebar ul {
		list-style: none;
		margin-left: -1em;
		}

		
/*--------------- Blog Search Bar ----------------*/

.blobSearch {
  width: 100%;
  position: relative
}

.blogSearchTerm {
  float: left;
  width: 100%;
  border: 1px solid var(--lightgray);
  padding: 5px;
  height: 20px;
  outline: none;
  color: #9DBFAF;
}

.blogSearchTerm:focus{
  color: var(--gray);
}

.blogSearchButton {
  position: absolute;  
  right: -43px;
  top: -20px;
  width: 31px;
  height: 31px;
  background: var(--lightgray);
  text-align: center;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  text-align: center;
  line-height: 50%;
  border-radius: 0px !important;
}

.blogSearchButton img {
	position: absolute;
    top: 50%;
    left: 50%;
    height: 50%;
    transform: translate(-50%, -50%);
    width: 13px;
    height: 13px;
    display: block;
}

/*Resize the wrap to see the search bar change!*/
.blogSearchWrapper{
	width: 10em;
	position: relative;
}


/*-------------- Blog Search Bar END ------------*/


.comment-form input {
	width: 200px;
	height: 30px;
	}

.comment-form textarea {
	width: 200px;
	border: 1px dotted gray;
	}

#comments {
	margin-left: -1.1em;
	border-collapse: collapse;
}

#comments td {
	padding: 10px;
}

.comment-image img {
	border-radius: 50%;
	border: 1px solid var(--lightgray);
	box-shadow: 2px 3px 2px rgba(0.3, 0.3, 0.3, 0.5);
	}
		
.comment-body {
	padding-left: 40px;
	}
	
.level2 {
	border-left: 3em solid transparent;
}


@media (min-width: 700px) {
	#grid-container-blog  {
	grid-template-areas: 
    'hero-blog hero-blog hero-blog'
    'title-blog title-blog title-blog' 
    'articles articles sidebar'
    'footer footer footer';
	}
		
		.comment-form input, .comment-form textarea {
			width: 350px;
			}
	
	}

/************** PRIVACY POLICY ***************/

#privacy-container {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#privacy { /* to center div horizontally */
	max-width: 85%;
	text-align: left;
	padding: 20px;
}

#privacy h2 {
	color: yellowgreen;
	padding-top: 20px;
}

#privacy a {
	text-decoration: underline;
}

@media (min-width: 700px) {
	#privacy  {
		max-width: 800px;
	}
}

/**************** RETURNS ********************/

#returns-container {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#returns { /* to center div horizontally */
	max-width: 85%;
	text-align: left;
	padding: 20px;
}

#returns h2 {
	color: yellowgreen;
	padding-top: 20px;
}

#returns a {
	text-decoration: underline;
}

#return-request-form-container {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#return-request-form { /* to center div horizontally */
	width: 300px;
}

#return-request-form h3 {
	text-align: left;
}

#return-request-form > button {
	text-align: center !important;
}

@media (min-width: 700px) {
	#returns  {
		max-width: 800px;
	}
}

/**************** FOOTER ********************/


#grid-container-footer {
	display: grid;
	grid-template-areas: 
    'customer-care customer-care customer-care customer-care'
    'our-company our-company our-company our-company'
    'contact-us contact-us contact-us contact-us'
    'stay-connected stay-connected stay-connected stay-connected'
    'copyright copyright copyright copyright';
	grid-column-gap: 0px;
	grid-template-rows: auto auto;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: minmax(auto, auto);
	grid-template-columns: minmax(auto, auto);
	grid-row-gap: 0px;
	margin-top: 2em;
	width: 100%;
	background-color: var(--conch); /* #a7b5b2  #e8e8e8 */
	color: black;
	}
	
#customer-care, #our-company, #contact-us, #stay-connected, #copyright {
		text-align: center;
		padding: 20px;
	}
	
#grid-container-footer h5 {
		color: black;
		font-weight: bold;
		font-size: 11px;
	}
	
#grid-container-footer ul {
		list-style-type: none;
		margin-left: -16px;
	}
	
#grid-container-footer a {
		color: #595450;
	}
	
#grid-container-footer a:hover {
		color: gray;
	}

#customer-care {
	grid-area: customer-care;
	width: 100%;
	}

#our-company {
	grid-area: our-company;
	width: 100%;
	}
			
#contact-us {
	grid-area: contact-us;
	width: 100%;
	color: #756f6b;
	}
	
	#contact-us i {
		font-size: 15px;
		vertical-align: middle; 
		position: relative; 
		top: 0em;
	}

#stay-connected {
	grid-area: stay-connected;
	width: 100%;
	}
	
	#stay-connected form input {
		background-color: white;
		border-color: lightgray;
		color: var(--black);
	}
	
	#stay-connected button {
		background-color: gray;
		color: white;
	}

#copyright {
	grid-area: copyright;
	width: 100%;
	font-size: 12px;
	padding-left: 20px !important;
	}

	
@media (min-width: 700px) {
	#grid-container-footer  {
	grid-template-areas: 
		'customer-care our-company contact-us stay-connected'
		'copyright copyright copyright copyright';
		}
	#customer-care, #our-company, #contact-us, #stay-connected, #copyright {
		text-align: left;
		padding: 20px;
		}
	}
	
	
/**************** 404 ERROR ********************/

.lost-container {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lost {  /* to center div horizontally */
	width: 22em;
	margin: 2em auto;
	text-align: left;
	line-height: 25px;
}


/**************** EXIT POPUP *******************/

#popup {
  display: none;
}

.popup__wrapper {
  background: rgba(0, 0, 0, .75);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  align-items: center;
  justify-content: center;
}

.popup__container {
  background: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  margin: 100px auto;
  max-width: 50%;
  padding: 50px !important;
  width: 500px;
}

.popup__title {
  font-size: 26px;
  margin-bottom: 15px;
}

.close {
  display: fixed;
  top: 0px;
  right: 0px;
  color: #aaaaaa;
  font-size: 28px;
  font-weight: bold;
  line-height: 0px;
  padding: 0px;
  margin: -35px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/**************** CART POPUP *******************/

#cart-popup {
  display: none;
}

.cart__popup__wrapper {
  background: rgba(0, 0, 0, .75);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  align-items: center;
  justify-content: center;
}

.cart__popup__container {
  background: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  margin: 100px auto;
  max-width: 85%;
  padding: 50px !important;
  width: auto;
  max-height: 80vh;
  z-index: 200;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.cart__popup__title {
  font-size: 26px;
  margin-bottom: 15px;
}

.cart__close {
  text-align: center;
  color: #aaaaaa;
  font-size: 16px;
  line-height: 0px;
  padding: 0px;
}

.cart__close:hover,
.cart__close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 700px) {
	.cart__popup__container {
	  width: auto;	
	}
}