@charset "UTF-8";

html,body{
	width: 100%;
	margin: 0;
	overflow-x: hidden; 
}
a:hover{
	color: silver;
}

/* Classes */
.white{
	color: white;
	font-family: "Bodoni MT", "Didot", "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman";
	display: inline-block;
	text-align: center;
	text-decoration: none;
	font-size: 18px;
}
.stillTitle{
	color: #333333;
	font-family: "Bodoni MT", "Didot", "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman";
	display: block;
	text-align: left;
	text-decoration: none;
	padding: 12px;
	font-size: 24px;
}
.blackSubText{
	color: #555;
	font-family: "Bodoni MT", "Didot", "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman";
	display: inline-block;
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	padding-top: 8px;
	padding-left: 8px;
}
.sticky { /*this is added to #banner when scrolling*/
  top: 0;
  width: 100%;
  /*position: fixed;*/
}
.main-grid { 
	margin-top: 1%;
	margin-left: 10%;
	margin-right: 10%;
	margin-bottom: 1%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 1%;
	align-items: stretch;
	justify-items: center;
}
.main-grid img {
	max-width: 100%;
	object-fit: cover;
	aspect-ratio: 1/1;
}

.shopping-grid { 
	margin-top: 2%;
	margin-bottom: 5%;
	margin-left: 10%;
	margin-right: 10%;
	display: grid;
	grid-template-areas:
	'stillTitle stillTitle stillTitle'
	'still still shoppingDisplay';
	grid-gap: 2%;
	align-items: normal;
	justify-items: left;
	grid-area: stillTitle;
}

.shopping-grid-mobile { 
	margin-top: 2%;
	margin-bottom: 5%;
	margin-left: 10%;
	margin-right: 10%;
	display: block
}
img {
    pointer-events: none;
}
.img-button {
	padding: 0;
	border: none;
	cursor: pointer;
}
.img-button:hover .still {
	opacity: .7;
}
.shoppingDisplay{
	grid-area: shoppingDisplay;
}
.productDescription{
	display: block;
	text-align: left;
	padding: 8px;
	color: #555;
	font-family: "Bodoni MT", "Didot", "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman";
	text-decoration: none;
	font-size: 18px;
	grid-area: productDescription;

}
.centered{
	display: inline;
	text-align: center;
	margin: auto;
}
.centered li{
	text-align: center;
	display:block;
	margin: auto;
	list-style-type: none;
}
.still{
	text-align:center;
	display:block;
	margin: 0;
	transition: 0.2s ease-in-out;
	max-width: 100%;
	grid-area: still;
}
.print-size-button {
	margin: 2%;
	display: inline-block;
	background-color: white;
	color: #777;
	font-family: "Bodoni MT", "Didot", "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman";
	text-align: center;
	padding: 8px;
	font-size: 16px;
	border: none;
	cursor: pointer; 
	border-radius: 7px;
	background-color: rgba(51, 51, 51, 0.05);
}
.paper-type-button {
	margin: 2%;
	display: inline-block;
	background-color: white;
	color: #777;
	font-family: "Bodoni MT", "Didot", "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman";
	text-align: center;
	padding: 8px;
	font-size: 16px;
	border: none;
	cursor: pointer; 
	border-radius: 7px;
	background-color: rgba(51, 51, 51, 0.05);
}
  
.print-size-dropdown-content {
	position: absolute;
	background-color: #f9f9f9;
	min-width: 100px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	margin-right: 0;
}
  
.print-size-dropdown-content button {
	color: #777;
	font-family: "Bodoni MT", "Didot", "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman";
	text-align: center;
	padding: 8px;
	text-decoration: none;
	display: block;
	border: none;
	cursor: pointer; 
	width: 100%;
}
  
.print-size-dropdown-content button:hover {
	background-color: #d8d8d8
}
  
.print-size-dropdown:hover .print-size-button {
	background-color: #e8e8e8;
}

.paper-type-dropdown-content {
	position: absolute;
	background-color: #f9f9f9;
	min-width: 100px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}
  
.paper-type-dropdown-content button {
	color: #777;
	font-family: "Bodoni MT", "Didot", "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman";
	text-align: center;
	padding: 8px;
	text-decoration: none;
	display: block;
	border: none;
	cursor: pointer; 
	width: 100%;
}
  
.paper-type-dropdown-content button:hover {
	background-color: #d8d8d8
}
  
.paper-type-dropdown:hover .print-size-button {
	background-color: #e8e8e8;
}

.checkoutButton {
	margin: 16px 2px;
	display: block;
	background-color: rgb(61, 61, 61);
	color: #eeeeee;
	font-family: "Bodoni MT", "Didot", "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman";
	text-align: center;
	padding: 8px;
	font-size: 16px;
	border: none;
	cursor: pointer; 
	border-radius: 7px;
}

/* IDs */
#banner{
	list-style-type: none;
    margin: auto;
    overflow: hidden;
    background-color: #333333;
    text-align: center;
	z-index: 2;
}
#banner li{
	float: left;
	padding: 16px;
	padding-left: 32px;
}
#banner_button{
	background-color: #333333;
}
#title{
	color: black;
	margin: auto;
	font-size: 48px;
	font-family: "Bodoni MT", "Didot", "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman";
	display: block;
	text-decoration: none;
	padding: 12px;
	padding-top: 12px;
}
#backgroundTop{ 
    /* The image used */
    background-image: url("images/shuksan_top.jpg");

    /* Set a specific height */
    height: auto;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
#backgroundBottom{ 
    /* The image used */
    background-image: url("images/shuksan_bottom.jpg");

    /* Set a specific height */
    height: auto;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}
#foreground{
	height: auto;
	background: white;
}
#gradientDownToWhite{
	height: 300px;
	width: auto;
	background: linear-gradient(transparent, white);
}
#gradientUpToWhite{
	height: 300px;
	width: auto;
	background: linear-gradient(white, transparent);
}

#checkoutErrorMessage{
	color: red;
	font-family: "Bodoni MT", "Didot", "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman";
	display: inline-block;
	text-align: center;
	text-decoration: none;
	font-size: 18px;
}