html {
	background-color : white;
	overflow : hidden;
}

:root {
	--primary-text : black;
	--cart-gold : #c5a76c;
	--title-yellow : #fce8a3;
	--checkout-yellow : #fea702;
	--link-color : #f96c3f;
	--text-shadow : #CCC;
	--hr-color : black;
	--menu-text : white;
	--menu-shadow : black;
	--checkout-button-color : #486f85;
	--secondary : #264d61;

}

@font-face {
	font-family: 'Raleway';
	font-weight: 300;
	font-style: normal;
	src: url('fonts/Raleway-VariableFont_wght.ttf') format("truetype");
	font-display: swap;
}

@font-face {
	font-family: 'NotoSans';
	font-weight: 400;
	font-style: normal;
	src: url('fonts/NotoSans-VariableFont_wdth,wght.ttf') format("truetype");
	font-display: swap;
}



html {
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	font-family: 'Raleway', serif;
	color: black;
	text-align: left;
	font-size: 14pt;
	line-height: 1.4em;
	margin: 0;
	padding: 0;
	height: 100%;
	overflow-y: hidden;
}

h1 {
	font-size: 1.6em;
	color: var(--primary-text);
	text-shadow: -0.5px -0.5px 0 var(--primary-text), 0.5px -0.5px 0 var(--primary-text), -0.5px 0.5px 0
		var(--text-shadow) , 0.5px 0.5px 0 var(--text-shadow);
	border-radius: 5px;
	padding: 0.5vh;
	font-weight : bold;
	display: table;
}

h2 {
	font-size: 1.2em;
	color: --var(primary-text);
	text-shadow: -0.5px -0.5px 0 var(--primary-text), 0.5px -0.5px 0 var(--primary-text), -0.5px 0.5px 0
		var(--text-shadow), 0.5px 0.5px 0 var(--text-shadow);
	border-radius: 5px;
	padding: 0.5vh;
	font-weight : bold;
	display: block;
	
}

h3 {
	color: black;
}

#copy {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3dvh;               /* mobile-safe dynamic viewport height */
  min-height: 24px;           /* optional fallback */
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

hr {
	border: 2px solid var(--hr-color);
	border-radius : 10px;
	opacity : 0.5;
	margin-top : 4vh;
}

a:link {
	color: var(--link-color);
	overflow-wrap: break-word;
}

a:visited {
	color: var(--link-color);
}

a:hover {
	color: red;

}

a:visited:hover {
	color: red;
	font-weight: bold;
}


.banner {
	padding: 0;
	width: 100%;
	height: 11%;
	position : fixed;
	top : 0;
	left : 0;
	background-color : var(--secondary);
}


#logo {
	position : relative;
	display : inline-block;
	height : 80%;
	width: 25%;
	font-size : 0.8em;
	background-image : url(../images/logo.png);
	background-size : contain;
	background-repeat : no-repeat;
	margin : 2px;
	margin-top : 0;
	top : 10px;
	left : 10px;
}

#menu-wrapper {
	position : absolute;
	top : 0;
	display : inline-block;
	left : 25%;
	width : 70%;
}


#container {
	width : 90%;
	max-width : 90%;
	height: 90vh;
	top : 12%;
	padding-left : 2em;
	padding-right: 2em;
	position : absolute;
	overflow-y : scroll;
}



#container img {
	max-width : 98%;
}

#mainContent {
	padding: 1em;
}

.pageFooter {
	text-align: center;
}

.footer {
	display : none;
}


a[href^='tel:'] {
	color: #333;
	text-decoration: none;
	font-weight: bold;
}

ol {
	line-height: 2em;
}

.paginationContainer {
	position: absolute;
	top: 80%;
	height: 2em;
	width: 120px;
	left: 80%;
	font-size : 0.75em;
	margin-left: 1em;
}

.paginationLimit {
	border-radius: 5px;
	display: inline-block;
}

.paginationPageContent {
	margin-left: 0;
	display: inline-block;
	white-space: nowrap;
	height: 2em;
}

.paginationLimitContent {
	display: inline-block;
	font-size: 0.8em;
}

.paginationPage {
	font-size: 0.75em;
	padding: 2px;
	border-radius: 5px;
}

.paginationButton {
	min-width: 0;
	font-size: 0.75em;
	display: inline-block;
	background-color: white;
	color: black;
	height: 80%;
	border: 1px solid black;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 0.2vh;
}

.paginationPageNext {
	margin-left: 3px;
}

.cookieWarn {
	height: 11vh;
	background-color: gray;
	text-align: center;
	color: white;
	position : absolute;
	top : 0;
	z-index : 99999;
	width : 98%;
	display : none;
	border : 10px solid rgba(10,10,10,0.5);
	margin-left : auto;
	margin-right : auto;
}

.gdprCookie {
	border-radius: 5px;
	border: 2px solid black;
	color: white;
	background-color: rgba(5, 115, 235, 1);
	display : block;
	width : 30%;
	height : 30%;
	cursor : pointer;
	font-size : 1.1em;
	margin-left : auto;
	margin-right : auto;
}

#ajaxLoader {
	position: absolute;
	top: 50%;
	left: 42.5%;
	z-index: 99;
	width: 15%;
	height: 15%;
	overflow : hidden;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: auto;
	margin-right: auto;
}

.inventoryItem {
	width : 100%;
	text-align : center;
}

.inventoryImage {
	max-height  :55vh;
	max-width : 98%;
	margin-left : auto;
	margin-right : auto;
	border : 5px solid black;
	filter : drop-shadow(5px 5px 5px black);
	cursor : zoom-in;
	opacity: 0;
    animation: fadeIn 0.75s ease-in forwards;
 }


.inventoryTile {
	width : 20%;
	text-align : center;
	display : inline-block;
	margin : 5%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.floatImage {
	max-width: 150px; 
	height: auto; 
	max-height: 131px;
	float : left;
	margin-right : 1em;
}


.inventoryCard {
	width : 45%;
	margin-left : auto;
	margin-right: auto;
	background-color : white;
	filter : drop-shadow(5px 5px 5px black);	
	min-height : 3em;
	color : black;
	text-align : left;
	font-family: 'Raleway';
	padding : 1em;
	margin-top : 1em;
	font-size : 0.8em;
	background-image : url(images/cardbg.jpg);
	background-size : contain;
}

.inventoryDescription {
	font-size : 0.9em;
	margin-bottom : 1em;
	margin-top : 1em;
	line-height : 1em;
}



.inventorySoldDot {
  width: 1em;
  height: 1em;
  background-color: red;
  border-radius: 50%;
  float:right;
}


#imagePreview {
	position : fixed;
	top : 0;
	left : 0;
	width : 100%;
	z-index : 200;
	height : 100%;
	background-color : white;
	background-position : center;
  	background-repeat: no-repeat;
  	background-size : contain;
    cursor: zoom-out;		
}


#cartIcon {
	width : 5vw;
	top : 3%;	
	left : 92vw;
	aspect-ratio : 4/3;
	position : absolute;
	background : url('images/cart.png');
	background-size : 100% 100%;
	background-repeat : no-repeat;
	z-index : 99;
	font-size : 1em;
	font-family : NotoSans;
	text-align : center;
	color : red;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
	display: flex;
  	justify-content: center;
  	align-items: center;
  	flex-direction: column;
}

#cartIcon:hover {
	transform: scale(1.2);
    z-index : 99;
    transition: transform 0.5s ease;
}

.inventoryQuantity {
	margin-left : 2vw;
	margin-right : 0.2vw;
	width : 4em;		
}

.inventoryAddToCart {
	border-radius : 5px;
	border : 0;
	background-color : var(--checkout-button-color);
	color : white;
	font-family : 'raleway';
	height : 30px;
	
}


.cartPage {
	background-color : white;
	width : 95%;
	margin-left : auto;
	margin-right : auto;
	min-height : 50vh;
	font-family : NotoSans;
	color : black;
	border-radius : 5px;
	padding : 1em;
}

#shoppingCartTable {
	width : 100%;
	text-align : left;
}

#shoppingCartTable th {
	text-align : left;
}


#shoppingCartTable th:nth-child(1) {
	width : 40%;
	min-width : 40%;
	max-width : 40%;
}

#shoppingCartTable th:nth-child(2) {
	width : 15%;
	min-width : 15%;
	max-width : 15%;
}

#shoppingCartTable th:nth-child(3) {
	width : 20%;
	min-width : 20%;
	max-width : 20%;
}

#shoppingCartTable th:nth-child(4) {
	width : 15%;
	min-width : 15%;
	max-width : 15%;
}

#shoppingCartTable th:nth-child(5) {
	width : 9%;
	min-width : 9%;
	max-width : 9%;
}



#emptyBasket {
	margin-left : auto;
	margin-right: auto;
	background-color : red;
	color : white;
	font-family : PTSerif;
	font-size : 2em;
	width : 70%;
	max-width : 70%;
	padding : 1em;
	margin-top : 2em;
}

.inventoryCartQuantity {
	width : 6vh;
}

.inventorySelectContainer {
	width : 100%;
	margin-left : auto;
	margin-right : auto;	
	display: flex;
    flex-wrap: wrap;
  	justify-content: center;
  	align-items: center;
}

.inventorySelectA  { 
	width : 45%;
	margin : 1em;
	
}

.inventorySelect  {
	height : 10vh;
  	flex-direction: row;
	border-radius : 10px;
	filter : drop-shadow(5px 5px 5px black);
  	background-color : var(--secondary);
  	border : 1px solid black;
  	overflow : hidden;
  	width : 100%;
}

.inventorySelect:hover {
    transform: scale(1.1);
    z-index : 99;
    transition: transform 0.5s ease;
	filter : drop-shadow(5px 5px 5px #aaa);
}

.inventorySelectMod0 {
		transform: rotate(-1deg);
		aborder-radius : 0 33% 33% 0;
}

.inventorySelectMod1 {
		transform: rotate(1deg);
		aborder-radius : 33% 0 0 33%;
}


.inventorySelectLink {
	display: flex; 
	height : 100%;
	align-items: center;
	font-size : 2em;
	margin-left : 1em;
	margin-right: 1em;
	color : var(--title-yellow);
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;	
	filter : drop-shadow(5px 5px 5px black);
}

.inventorySelectThumb {
	position : absolute;
	height : 110%;
	min-height : 100%;
	width : 50%;
	padding : 0.5em;
	background-repeat : no-repeat;
	background-size: 100% 100%;
    border-radius: 5%;
	filter : drop-shadow(5px 5px 5px black);
	top : -0.5vh;
}

.inventorySelectThumbMod0 {
	left : 150%;
}

.inventorySelectThumbMod1 {
	left : -1vw;

}

.inventorySelectLinkMod0 {
	float : left;

}

.inventorySelectLinkMod1 {
	float : right;
}

.smallText {
	font-size : 0.8em;
}


.checkoutButtons {
	border-radius : 5px;
	background-color : var(--checkout-button-color);
	color : white;
	font-family : 'raleway';
	height : 30px;
	border : 0;
}


#payment-form #submit {
	margin-right : auto;
	margin-left : auto;
}

#goCheckout {
	float : right;
}


.printsInventory {
	display : flex;
	flex-flow: row wrap;
	justify-content: space-between;
	border-radius : 5px;
	border : 1px dotted black;
	text-align : center;
	font-size : 0.8em;
	color : #444;
	padding : 0.5em;
	background-color : #fdffe5;
}


.printsInventoryItem {
	flex :  1 1;
}

.cartPrintRow {
	text-align : center;
}



.printsInventoryItemName {
	font-weight : bold;
	height : 2em;
	max-height : 2em;
	display : block;
	line-height : 1em;

}



.inventoryPrintQuantity {
	width : 4em;		
}


.inventoryPrintsAddToCart {
	font-size : 0.8em;
	margin-left : auto;
	margin-right : auto;
		
}

@media only screen and (max-device-width: 767px) {
	
	body {
		font-size: 15pt;
		line-height: 1.6em;
	}
	
	.cookieWarn {
		min-height: 10vh;
		background-color: gray;
		text-align: center;
		color: white;
		position: absolute;
		z-index: 99999;
	}
	
	.gdprCookie {
		border-radius: 5px;
		border: 2px solid black;
	}
		
	#mainContent {
		min-width: 95%;
		padding: 1em;
	}
	
	.inventoryCard {
		width : 80%;
		font-size : 1.4em;
		line-height : 1.5em;
	}
	
	.inventoryTile {
		width : 40%;
 	}
	
	
	.printsInventoryItemName { 
		height : 4em;
		max-height : 4em;
	}

	.inventoryPrintQuantity {
		width : 4em;	
		font-size : 1em;	
	}


	.inventoryPrintsAddToCart {
		font-size : 0.8em;
		margin-left : auto;
		margin-right : auto;
		height : 3em;
			
	}
	
	#cartIcon {
		left : 83%;
		width : 12%;
		top : 5%;
	}
	
	#shoppingCart {
	font-size : 0.6em;
	}
	
	.inventorySelectA  { 
		width : 95%;
		margin : 1em;
	
	}
	
	
	
	.inventorySelectLink {
	 font-size : 3em;
	}
	
}


@keyframes spinAndExpand {
  0% {
    transform: scale(0.1) rotate(0deg);
  }

  100% {
   transform: scale(1) rotate(2160deg);
  }
}



.cartAdminNote {
	font-family : fixed;
	font-size : 0.6em;
	color : gray;
}