html {
	background-color : black;
}

:root {
	--cart-gold : #c5a76c;
	--title-yellow : #fce8a3;
	--checkout-yellow : #fea702;
	--link-color : #f96c3f;
	--main-font : 'Mystery';

}

.inventorySelectLink {
	font-size : 2em;
}

#emptyBasket {
	font-size : 2em
}

@font-face {
	font-family: 'Mystery';
	font-weight: 100;
	font-style: normal;
	src: url('fonts/MysteryQuest-Regular.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;
}

@font-face {
	font-family: SCQuest;
	font-weight: 100;
	font-style: normal;
	src: url('fonts/Superclarendon-Regular.ttf') format("truetype");
	font-display: swap;
}


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

body {
	font-family: var(--main-font), serif;
	color: white;
	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: white;
	text-shadow: -0.5px -0.5px 0 black, 0.5px -0.5px 0 black, -0.5px 0.5px 0
		black, 0.5px 0.5px 0 black;
	background-color: #ea001d;
	border-radius: 5px;
	padding: 0.5vh;
	font-weight : bold;
	display: table;
}

h2 {
	font-size: 1.2em;
	color: white;
	text-shadow: -0.5px -0.5px 0 black, 0.5px -0.5px 0 black, -0.5px 0.5px 0
		black, 0.5px 0.5px 0 black;
	background-color: #ea001d;
	border-radius: 5px;
	padding: 0.5vh;
	font-weight : bold;
	display: block;
	
}

h3 {
	color: #ea001d;
}

#logo {
	position : absolute;
	top : 93%;
	left : 9%;
	width: 12%;
	font-size : 0.8em;
}

hr {
	color: red;
	border: 2px solid #ea001d;
	border-radius : 10px;
	opacity : 0.5;
}

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;
}

#background-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: fill; /* Ensures the video covers the entire background */
	z-index: -1; /* Places the video behind the content */
}

.banner {
	padding: 0;
	width: 100%;
	height: 20%;
	margin: 0;
	margin-left: auto;
	margin-right: auto;
}

#container {
	position: absolute;
	left: 12%;
	min-width: 76.5%;
	max-width: 76.5%;
	top: 14%;
	height: 72vh;
	padding: 0;
	background-image:url(/currentTheme/css/images/trans_bgs/black_transparentbg_50.png);
	overflow-y: scroll;
	border-radius: 10px;
	transform: rotate(-0.2deg);
	overflow-x : hidden;
}

#container::-webkit-scrollbar {
	width: 10px;
	background: black;
	border-radius: 5px;
}

#container::-webkit-scrollbar-thumb {
	background-color: red;
	border-radius: 5px;
	border: 2px solid #f1f1f1;
}

#container::-webkit-scrollbar-thumb:hover {
	background-color: #ff6c6c;
}

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

#mainContent {
	padding: 1em;
	scrollbar-color: red #f1f1f1;
	scrollbar-width: thin;
}

.pageFooter {
	text-align: center;
}

.footer {
	position: absolute;
	top: 80%;
	text-align: center;
	color: #777;
}

.footer a:link,footer a:visited {
	color: #777;
	text-decoration: none;
}

.footer a:hover {
	color: white;
}

.footer a:visited:hover {
	color: white;
}

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

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

ol {
	line-spacing: 2em;
}

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

.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: 78%;
	left: 81%;
	z-index: 99;
	width: 19%;
	height: 19%;
	overflow : hidden;
	background-image: url(images/ajax_loader_static.gif);
	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;
	
}

.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: 'NotoSans';
	padding : 1em;
	margin-top : 1em;
	font-size : 0.8em;
}

.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;
    cursor: zoom-out;		
    background-color : black;
}


#cartIcon {
	width : 6%;
	height : 10%;
	min-width : 6%;
	min-height : 9%;
	position : absolute;
	background : url('images/cart.png');
	background-size : contain;
	background-repeat : no-repeat;
	z-index : 99;
	top : 4%;	
	left : 90%;
	font-size : 1em;
	font-family : NotoSans;
	text-align : center;
	padding-top : 1em;
	color : red;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

#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;
	background-color : var(--checkout-yellow);
	color : black;
}


.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 : var(--main-font);
	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 : red;
  	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;
	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 {
	background-color : var(--checkout-yellow);
	border-radius : 5px;
}


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

#goCheckout {
	float : right;
}

@media only screen and (max-device-width: 767px) {
	
	body {
		font-size: 25pt;
	}
	
	.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%;
	
	}
	
	#cartIcon {
		left : 83%;
		width : 12%;
		top : 92%;
	}
	
	#shoppingCart {
	font-size : 0.6em;
	}
	
	.inventorySelectA  { 
		width : 95%;
		margin : 1em;
	
	}
	
	
	
	.inventorySelectLink {
	 font-size : 1.5em;
	}

}


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

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


body {
    transform: scale(0.1) rotate(0deg);
    transform-origin: center center;
  	animation: spinAndExpand 0.75s forwards;
}

body {
    transform: scale(1.5);
}

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