:root {
	--border: rgb(3, 169, 244);
	--g1: rgb(51, 102, 153);
	--g2: rgb(51, 102, 153);
	--g3: rgb(0, 0, 0);
}

body {
	background-color: #000;
	height: 100vh;
	margin: 0px;
	padding: 0px;
}

a, a:active, a:hover, a:visited {
	color: white;
}

.banner {
	height: 150px;
	margin-bottom:20px;
}

#image {
	position:absolute;
	top:0px;
	left:50%;
	transform:translate(-50%,0%);
	height:150px;
}

.cards {
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
}

.card {
	border: 0.5vmin solid var(--border);
	position: relative;
	width: 90vmin;
	margin-bottom:5vmin;
}

.card-content {
	background-image: radial-gradient(
		rgba(255, 255, 255, 0.2) 8%, 
		transparent 8%
	);
	background-position: 0% 0%;
	background-size: 5vmin 5vmin;
	height: calc(100% - 10vmin);
	padding: 5vmin;
	position: relative;
	z-index: 2;
}

h3, p {
	color: white;
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;
	margin: 0px;
}

h3 {
	font-size: 6vmin;
}

.disclaimer {
	font-size: 2vmin;
	color: white;
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;
	margin: 0px;
}

.availability {
	font-size: 2vmin;
	color: white;
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;
	margin: 0px;
}

p {
	font-size: 3vmin;
	margin-top: 2vmin;
	margin-bottom: 4vmin;
}

.indent {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 5vmin;
	font-size: 3vmin;
	color: white;
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;
}

.center {
	margin: 0 auto;
	text-align:center;
}

input[type="text"], input[type="email"], input[type="password"], select, textarea {
	-webkit-text-size-adjust: none;
	box-sizing: inherit;
	font-family: "Anek Latin", sans-serif;
	font-weight: 300;
	line-height: 1.65em;
	font-size: 12pt;
	appearance: none;
	background-color: #f8f8f8;
	border-radius: 6px;
	border: solid 1px #e5e5e5;
	color: black;
	display: inline-block;
	outline: 0;
	padding: 0 1em;
	text-decoration: none;
	width: 100%;
	height: 3em;
	margin-bottom: 0;
}

input[type="checkbox"],
input[type="radio"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: block;
	float: left;
	margin-right: -2em;
	opacity: 0;
	width: 1em;
	z-index: -1;
}

	input[type="checkbox"] + label,
	input[type="radio"] + label {
		text-decoration: none;
		color: white;
		cursor: pointer;
		display: block;
		font-size: 1em;
		font-weight: 300;
		padding-top: 0.3em;
		padding-left: 2.55em;
		padding-right: 0.75em;
		position: relative;
	}

		input[type="checkbox"] + label:before,
		input[type="radio"] + label:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-style: normal;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
			text-transform: none !important;
			font-family: 'Font Awesome 5 Free';
			font-weight: 900;
		}

		input[type="checkbox"] + label:before,
		input[type="radio"] + label:before {
			background: #f8f8f8;
			border-radius: 6px;
			border: solid 1px #e5e5e5;
			content: '';
			display: inline-block;
			font-size: 0.8em;
			height: 2.25em;
			left: 0;
			line-height: 2.25em;
			position: absolute;
			text-align: center;
			top: 0;
			width: 2.25em;
		}

	input[type="checkbox"]:checked + label:before,
	input[type="radio"]:checked + label:before {
		background: var(--border);
		border-color: var(--border);
		color: #ffffff;
		content: '\f00c';
	}

	input[type="checkbox"]:focus + label:before,
	input[type="radio"]:focus + label:before {
		border-color: var(--border);
		box-shadow: 0 0 0 1px var(--border);
	}
	
	input[type="checkbox"]:disabled + label:before,
	input[type="radio"]:disabled + label:before {
		background: #303030;
		border-color: #303030;
		color: #ffffff;
		content: '\f00d';
	}
	
	input[type="radio"].timeDelay:disabled + label:before {
		background: #303030;
		border-color: #303030;
		color: #ffffff;
		content: '\f05e';
	}

input[type="checkbox"] + label:before {
	border-radius: 6px;
}

input[type="radio"] + label:before {
	border-radius: 100%;
}

.break {
	font-size:1vmin;
}

#priceTotal {
	font-size:10vmin;
	margin-top: 0;
	margin-bottom: 0;
	color: white;
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;
}

input[type="reset"], input[type="submit"] {
	-webkit-text-size-adjust: none;
	list-style: none;
	box-sizing: inherit;
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;
	font-size: 16pt;
	letter-spacing: -0.015em;
	appearance: none;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	background-color: var(--border);
	border-radius: 6px;
	border: 0;
	color: #ffffff;
	cursor: pointer;
	display: inline-block;
	font-weight: 400;
	height: 3em;
	line-height: 3em;
	padding: 0 2em;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}

input[type="reset"].alt, input[type="submit"].alt {
	-webkit-text-size-adjust: none;
	list-style: none;
	box-sizing: inherit;
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;
	font-size: 16pt;
	letter-spacing: -0.015em;
	appearance: none;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	border-radius: 6px;
	border: 0;
	cursor: pointer;
	display: inline-block;
	font-weight: 400;
	height: 3em;
	line-height: 3em;
	padding: 0 2em;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	box-shadow: inset 0 0 0 2px var(--border);
	color: white;
}

.notAvailable {
	text-decoration: line-through !important;
}

.container {
	width:205px;
	margin:0 auto;
	text-align:center;
}

.orderHistory {
	border-collapse:collapse;
}

table.orderHistory th {
	border:1px solid var(--border);
	background-color: var(--border);
	border-left:0;
	border-right:0;
	color: white;
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;
	font-size: 2.5vmin;	
	padding:1vmin 0;
}

table.orderHistory td {
	border:1px solid var(--border);
	border-left:0;
	border-right:0;
	color: white;
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;
	font-size: 2vmin;
	text-align:center;
	padding:1vmin 0;
}

.errorMessage {
	background-color:#980000;
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;
	font-size: 2vmin;
	padding:5px;
	text-align:center;
	margin-bottom:2vmin;
}

.errorHighlight {
	background-color:#980000;
}

.loginFacebookButton {
	width:262px;
	line-height:1em !important;
	height:2em !important;
	background-color: #1a73e8 !important;
	text-align:left !important;
	padding-left:2vmin !important;
}

.facebook-icon {
	background-color:white;
	top: -63px;
	right: -49px;
	color: #1a73e8;
	font-size: 2.8vmin;
	margin: 5vmin;
	position: absolute;
	transition: color 250ms ease;
	z-index: 2;
	padding:6px 10px;
	border: 2px solid #1a73e8;
	border-radius:0px 6px 6px 0px;
}

.paymentSubtitle {
	font-size: 1.5vmin;
	color: white;
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;
	margin: 0px;
}

.scrollableTableContainer {
	max-height:300px;
	overflow-y:auto;
}

/* slideout components */
.slideboxShade {
	z-index: 40;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border:1px solid red;
}

.slidebox {
	height: 100%;
	width: 400px;
	transform: translateX(-100%);
	position: fixed;
	z-index: 50;
	top: 0;
	left: 0;
	background-color: var(--border);
	overflow-x: hidden;
	transition: 0.5s;
	padding:10px;
	padding-top: 60px;
	color:white;
}

.visibleBox {
	transform: translateX(0);
}

.slidebox .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
	text-decoration:none;
}

.slideboxHeader {
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;
	font-size: 2.5vmin;
	margin-bottom:1vmin;
}

.slideboxContent {
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;
	font-size: 2vmin;
}

@media screen and (max-height: 450px) {
	.slidebox {
		padding-top: 15px;
	}
}