/* Tebex stuff */
.alert {
	position: relative;
	padding: 0.75rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: 50rem; }
  
.alert-heading {
	color: inherit; }

.alert-link {
	font-weight: 700; }

.alert-dismissible {
	padding-right: 4rem; }
.alert-dismissible .close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0.75rem 1.25rem;
	color: inherit; }

.alert-primary {
	color: #201433;
	background-color: #a262ff;
	border-color: #543385; }
.alert-primary hr {
	border-top-color: #482c73; }
.alert-primary .alert-link {
	color: #09060e; }

.alert-secondary {
	color: #232426;
	background-color: #aeb2bc;
	border-color: #5a5d62; }
.alert-secondary hr {
	border-top-color: #4e5055; }
.alert-secondary .alert-link {
	color: #0b0b0b; }

.alert-success {
	color: #102a0e;
	background-color: #4ed344;
	border-color: #296e23; }
.alert-success hr {
	border-top-color: #225b1d; }
.alert-success .alert-link {
	color: #010401; }

.alert-info {
	color: #052025;
	background-color: #17a2b8;
	border-color: #0c5460; }
.alert-info hr {
	border-top-color: #094049; }
.alert-info .alert-link {
	color: black; }

.alert-warning {
	color: #33250a;
	background-color: #ffbb32;
	border-color: #85611a; }
.alert-warning hr {
	border-top-color: #705116; }
.alert-warning .alert-link {
	color: #080602; }

.alert-danger, .alert.alert-error:not(.alert-light) {
	color: #330b11;
	background-color: #ff3757;
	border-color: #851d2d; }
.alert-danger hr, .alert.alert-error:not(.alert-light) hr {
	border-top-color: #701826; }
.alert-danger .alert-link, .alert.alert-error:not(.alert-light) .alert-link {
	color: #090203; }

.alert-light {
	color: #323232;
	background-color: #f8f9fa;
	border-color: #818182; }
.alert-light hr {
	border-top-color: #747475; }
.alert-light .alert-link {
	color: #191919; }

.alert-dark {
	color: #040508;
	background-color: #151827;
	border-color: #0b0c14; }
.alert-dark hr {
	border-top-color: #020204; }
.alert-dark .alert-link {
	color: black; }

.alert-muted {
	color: #212224;
	background-color: #a6a8b5;
	border-color: #56575e; }
.alert-muted hr {
	border-top-color: #4a4b51; }
.alert-muted .alert-link {
	color: #090909; }

.alert-white {
	color: #333333;
	background-color: white;
	border-color: #858585; }
.alert-white hr {
	border-top-color: #787878; }
.alert-white .alert-link {
	color: #1a1a1a; }



:root {
	--blue: #005DFF;
	--blue_20: rgba(0, 93, 255, 0.2);
	--blue_50: rgba(0, 93, 255, 0.5);
	--darkblue: #131A28;
	--ldarkblue: #182133;
	--font: 'Rubik', sans-serif;
	--key-background-gtop: rgb(35, 35, 35);
    --key-background-gbottom: rgb(50, 50, 50);
}

body {
	margin: 0;
	color: white;
	background-color: var(--darkblue);
	display :flex; 
	flex-direction: column; 
	min-height: 100vh;
	overflow: overlay;
}

/* Due to tebex footer beeing weird without */
div {
	box-sizing: border-box;
}

@media screen and (max-width: 770px) {
	body {
		overflow: visible;
	}
}

/* Links */
a:link {
	color: var(--blue);
}

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

/* Selected */
::-moz-selection {
	background-color: rgba(50, 155, 255, 0.7);
}

::selection {
	background-color: rgba(50, 155, 255, 0.7);
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 1em;
}

::-webkit-scrollbar-thumb {
	background-color: rgba(50, 50, 50, 0.6);
	border-radius: 0.25rem;
}

::-webkit-scrollbar-thumb:hover {
	background-color: rgba(50, 50, 50, 0.9);
}

@media screen and (min-width: 770px) {
	.only-on-phone {
		display: none;
		width: 0;
	}
}

@media screen and (max-width: 770px) {
	.not-on-phone {
		display: none;
		width: 0;
	}
}

#wrapper {
	flex:1;
}

.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto; 
	max-width: 90vw; 
}

@media only screen and (min-width: 1200px)  {
	.container {
		max-width: 1100px; 
	}
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px; 
}

.background-image {
	top: 0;
	position: absolute;
	background-size: contain;
	width: 100%;
	z-index: -1;
	text-align: center;
	height: 40em;
	mask-image: linear-gradient(180deg, #000, transparent);
	-webkit-mask-image: linear-gradient(180deg, #000, transparent);
}

.background-image.only-on-phone {
	background-size: initial;
	height: auto;
}

.background-image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.text {
	font-family: var(--font);
	color: white;
	margin: 0.5rem;
}

.large-text {
	font-family: var(--font);
	color: white;
	margin: 0.5rem;
	font-size: 1.25rem;
}

.small-text {
    font-family: var(--font);
	color: white;
	font-size: 1rem;
}

.title-text {
	font-size: 2.2rem;
	font-weight: 400;
}

.button {
	text-transform: uppercase;
	font-family: var(--font);
	cursor: pointer;
	background-color: var(--blue_20);
	border: 2px solid var(--blue);
	box-shadow :0 0 10px 0 var(--blue_50);
	outline: none;
	transition: background .2s ease;
	color: white;
	border-radius: 0.2rem;
	text-decoration: none;
}

.button:link {
	color: white;
}

.button:visited {
	color: white;
}

.button:hover {
	background-color: var(--blue);
	transition: none
}

.disable-select {
	user-select: none; /* supported by Chrome and Opera */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
}

.center {
	text-align: center;
}

.topnav {
	height: 5em;
	display: flex;
}

.logo {
	height: 5em;
	position: relative;
	z-index: 99;
}

.topnav-buttons {
	display: flex; 
	justify-content: end;
	align-items: center;
	margin-left: auto;
	order: 2;
}

.topnav-button {
	padding: 0.75em 1em;
	text-transform: uppercase;
	margin-left: 1.5em;
	height: 2vh;
	background-color: rgba(255, 255, 255, 0.225);
	font-family: var(--font);
	transition: background .2s ease;
	color: white;
	outline: none;
	cursor: pointer;
	text-decoration: none;
	border-radius: 0.25rem;
	z-index: 99;
}

.topnav-button:link {
	color: white;
}

.topnav-button:visited {
	color: white;
}

@media screen and (max-width: 770px) {
	.topnav-button {
		margin-right: 0.5rem;
	}
}

.topnav-button:hover {
	background-color: var(--blue);
	box-shadow: 0 0 10px 0 var(--blue_50);
	transition: none;
}

#phone-topnav {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	backdrop-filter: blur(.3em);
	-webkit-backdrop-filter: blur(.3em);
	z-index: 98;
	display: none;
}

#phone-topnav-container {
	margin-top: 12vh;
}

.phone-topnav-button {
	padding: 1rem 2rem;
	font-size: 1.5rem;
	margin: 1vh auto 2vh auto;
	display: block !important;
	text-align: center;
}

.row-container {
	display: flex;
}

.row-container > div {
	flex: auto;
}

/* Tooltip */
.basket-tooltip {
	position: relative;
	display: inline-block;
}

.basket-tooltip .basket-tooltip-text {
	visibility: hidden;
	background-color: var(--ldarkblue);
	color: white;
	text-align: center;
	font-family: var(--font);
	font-size: 0.875rem;
	text-transform: none;
	border-radius: 6px;
	white-space: nowrap;

	/* Position */
	position: absolute;
	z-index: 1;
	margin-top: .3rem;
	top: 100%;
	right: 0%;

	opacity: 0;
	transition: opacity 0.5s;

	padding: 0.5rem 1rem;
}

.basket-tooltip:hover .basket-tooltip-text {
	visibility: visible;
}

.basket-tooltip .basket-tooltip-text::after {
	content: " ";
	position: absolute;
	bottom: 100%;
	right: 11.25%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent #1E324B transparent;
}

.basket-tooltip:hover .basket-tooltip-text {
	opacity: 1;
}

#cta-container {
	margin-top: 20vh;
}

#cta-left {
	width: 30vw;
}

#cta-right {
	display: flex; 
	justify-content: end;
	align-items: center;
}

.welcome-text {
	font-size: 3rem;
	margin-bottom: 1rem;
}

@media screen and (max-width: 770px) {
	.welcome-text {
		font-size: 1.75rem;
	}
}

.desc-text {
	font-size: 1.5rem;
}

@media screen and (max-width: 770px) {
	.desc-text {
		font-size: 1rem;
		margin-bottom: 2rem;
	}
}

.cta-buttton {
	text-transform: uppercase;
	padding: 1.25rem 2.25rem;
	font-weight: 300;
	font-family: var(--font);
	font-size: 1.8rem;
	cursor: pointer;
	background-color: var(--blue_20);
	border: 2px solid var(--blue);
	box-shadow :0 0 10px 0 var(--blue_50);
	outline: none;
	transition: background .2s ease;
	color: white;
	float: right;
	border-radius: 0.25rem;
}

@media screen and (max-width: 770px) {
	.cta-buttton {
		font-size: 1.5rem;
		margin-left: 0.5rem;
		padding: 1rem 2rem;
		width: 100%;
	}
}

.cta-buttton:hover {
	background-color: var(--blue);
	transition: none
}

#showcase-container {
	margin-top: 20vh;
}

#showcase-title {
	text-align: center;
	width: 100%;
}

.showcase-grid {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
}

.showcase-grid-cat {
    margin-bottom: 5vh;
}

.card {
	max-width: 32%;
	min-width: 300px;
	aspect-ratio: 16 / 9;
	position: relative;
	background-size: cover;
	background-position: center;
	margin: 0.5em 0.5em 0.5em 0.5em;
	cursor: pointer;
	border-radius: 0.2rem;
	transition: .5s;
}

.card:hover {
	transform: scale(1.05);
}

@media screen and (max-width: 770px) {
	.card {
		max-width: 100%;
		min-width: 260px;
		aspect-ratio: 16 / 9;
		position: relative;
		background-size: cover;
		background-position: center;
		margin: 0.5em 0.5em 0.5em 0.5em;
		cursor: pointer;
	}
}

.card-info {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(0.1em);
	display: flex;
	border-radius: 0 0 0.2rem 0.2rem;
}

.card-text {
	margin: auto;
	margin-left: 0.5rem;
	font-family: var(--font);
	font-size: 1.35rem;
	align-items: center;
	justify-content: center;
	display: flex;
	color: white;
}

.view-button {
	font-size: 1.35rem;
	float: right;
	margin: 0.5rem 0.5rem 0.5rem auto;
	padding: 0.25rem 0.75rem 0.25rem 0.75rem;
	order: 2;
	text-align: center;
}

#view-more-button {
	padding: 1rem 2rem;
	font-size: 1.5rem;
	display: block;
	margin: 2vh auto 4vh auto;
}

.footer {
	padding-top: 2vh;
	padding-bottom: 2vh;
	background-color: var(--darkblue);
	border-top: 1px solid grey;
	text-align: center;
}

.link-text:link {
	color: white;
}

.link-text:visited {
	color: white;
}

/* Dropdown */
.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown .dropdown-item {
	color: white;
	background-color: var(--ldarkblue);
	font-family: var(--font);
	font-size: 0.875rem;
	text-transform: none;
	border-radius: 6px;
	white-space: nowrap;
	width: auto;

	/* Position */
	position: absolute;
	z-index: 1;
	margin-top: .15rem;
	top: 100%;
	right: 0%;

	visibility: hidden;
	opacity: 0;
	transition: opacity 0.5s;

	padding: 0.5rem 1rem;
	cursor: initial;
}

@media screen and (max-width: 770px) {
	.dropdown .dropdown-item {
		margin-top: -35vh;
	}
}

.dropdown:focus-within .dropdown-item {
	visibility: visible;
	opacity: 1;
}

.currency {
	display: block;
	background-color: rgba(0, 0, 0, 0.0);
	border: 0;
	font-size: 1rem;
	cursor: pointer;
	font-family: var(--font);
	color: white;
	padding: 0.5rem;
}

.currency:hover {
	color: var(--blue);
}

.basket-item {
	display: flex; 
	justify-content: space-between;
}

.basket-inner {
	margin-left: 1.5vw;
	display: flex;
	align-items: center;
}

.basket {
	background-color: rgba(0, 0, 0, 0.0);
	border: 0;
	font-size: 1.25em;
	font-family: var(--font);
	color: white;
	padding: 0.5em;
}

.basket-link {
	cursor: pointer;
}

.basket-link:hover {
	color: var(--blue);
}

.basket-btn {
	padding: 0;
	cursor: pointer;
	color: white;
	font-size: 1.25rem;
	padding: 0;
	border: none;
	background: none;
}

.basket-btn:hover > .fas {
	color: var(--blue);
}

#basket-info {
	padding-top: 1vh;
	margin-top: 0.75vh;
	border-top: 1px solid grey;
	display: flex;
}

.basket-total {
	margin: 0;
	margin-right: 1rem;
	font-size: 1.25rem;
	flex: 1;
}

.basket-checkout {
	padding: 0.25rem 0.5rem;
	font-size: 1.25rem;
	float: right;
}

.basket-checkout:hover {
	background-color: var(--blue);
}

#category-title {
	margin-top: 5vh;
}

/* Package Page */
#package-left {
	margin-left: 0.5em;
	width: 25vw;
	aspect-ratio: 16 / 9;
	border-radius: 0.2rem;
	overflow: hidden;
}

#package-img {
	width: 100%;
	height: 100%;
}

#package-img:hover {
	-webkit-transform:scale(1.5); /* Safari and Chrome */
	-moz-transform:scale(1.5); /* Firefox */
	-ms-transform:scale(1.5); /* IE 9 */
	-o-transform:scale(1.5); /* Opera */
	transform:scale(1.5);
}

#package-video {
	display: none;
	width: 100%;
	height: 100%;
	border-radius: 0.2rem;
}

#package-title {
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 2.5rem;
}

#package-price {
	margin-top: 0;
	padding-top: 0;
	margin-bottom: 0.25rem;
	padding-bottom: 0;
	font-size: 1.45rem;
	text-transform: uppercase;
}

#package-reviews-showcase {
	display: block;
	margin-bottom: 2vh;
	text-decoration: none;
}

#package-reviews-showcase:link {
	color: white;
}

#package-reviews-showcase:visited {
	color: white;
}

.prs-thumb {
	display: inline;
	font-family: var(--font);
	font-size: 1.25rem;
	color: white;
	margin: 0;
	padding: 0;
	margin-left: 0.5rem;
}

#package-small-desc {
	font-size: 1.15rem;
}

#package-container {
	margin-top: 8vh;
	display: flex;
}

#package-right {
	width: 12vw;
	position: relative;
	margin-left: 1em;
}

.package-basket-container {
	position: absolute;
	bottom: 0;
	right: 0;
	height: 2.6rem;
	margin-right: 0.5em;
}

.package-basket-btn {
	font-size: 1.5rem;
	padding: 0.75rem 1.5rem 0.75rem 1.5rem;
}

.package-basket-remove-btn {
	font-size: 1.15rem;
	padding: 0.75rem 1.5rem 0.75rem 1.5rem;
}

.package-description {
	margin-bottom: 6vh;
	font-size: 1.05rem;
}

#p-package-img {
	margin-left: 0.5em;
	width: 95%;
	aspect-ratio: 16 / 9;
	border-radius: 0.2rem;
}

#p-package-video {
	display: none;
	margin-left: 0.5em;
	width: 95%;
	aspect-ratio: 16 / 9;
	border-radius: 0.2rem;
}

#p-package-title {
	margin-top: 2rem;
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 2.5rem;
}

#p-package-price {
	margin-top: 0;
	padding-top: 0;
	margin-bottom: 2vh;
	font-size: 1.45rem;
	text-transform: uppercase;
}

#p-package-small-desc {
	font-size: 1.15rem;
	margin-bottom: 4vh;
}

.p-package-basket-btn {
	font-size: 1.5rem;
	padding: 0.75rem 1.5rem 0.75rem 1.5rem;
	margin-left: 0.5rem;
}

.p-package-description {
	margin-top: 6vh;
	margin-bottom: 6vh;
	font-size: 1.05rem;
}

/* Thumbnails */
.thumbnail-grid {
	margin-top: 5vh;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: start;
	flex-wrap: wrap;
}

.thumbnail-card {
	min-width: 10vw;
	max-width: 10vw;
	min-width: calc(20% - 1em);
	max-width: calc(20% - 1em);
	aspect-ratio: 16 / 9;
	background-size: cover;
	background-position: center;
	margin: 0.5em 0.5em 0.5em 0.5em;
	cursor: pointer;
	border-radius: 0.2rem;
}

.p-thumbnail-card {
	min-width: 10vw;
	max-width: 10vw;
	min-width: calc(33% - 0.5em);
	max-width: calc(33% - 0.5em);
	aspect-ratio: 16 / 9;
	background-size: cover;
	background-position: center;
	margin: 0.25em 0.25em 0.25em 0.25em;
	cursor: pointer;
	border-radius: 0.2rem;
}

.thumbnail-card:hover .thumbnail-cover {
	background-color: rgba(0, 0, 0, 0.25);
	transition: none
}

.thumbnail-cover {
	width: 100%;
	height: 100%;
	transition: background .2s ease;
}

.thumbnail-icon {
	font-size: 2rem;
	/*color: rgba(255, 0, 0, 0.85);*/
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%)
}

.thumbnail-selected {
	outline-style: solid;
	outline-width: 0.2em;
}

/* Checkout */
#checkout-container {
	margin-top: 3vh;
	float: left;
	max-width: 50%;
}

@media screen and (max-width: 770px) {
	#checkout-container {
		margin-top: 2vh;
		max-width: 100%;
	}
}

#continue-shopping {
	font-size: 1.25rem;
	text-decoration: none;
}

#continue-shopping:link {
	color: white;
}

#continue-shopping:visited {
	color: white;
}

#continue-shopping:hover {
	color: var(--blue);
}

#checkout-title {
	margin-top: 1.5vh;
}

.checkout-button {
	font-size: 1.15rem;
	padding: 0.75rem 1.5rem 0.75rem 1.5rem;
	margin-top: 1rem;
	margin-left: 0.5rem;
}

.checkout-basket {
	background-color: var(--ldarkblue);
	text-transform: none;
	border-radius: 6px;
	padding: 0.5rem 1rem;
	white-space: nowrap;
	width: auto;
	margin-left: 0.5rem;
}

#coupon-title {
	font-size: 1.25rem;
	margin-top: 4vh;
}

#checkout-basket-title {
	font-size: 1.25rem;
	margin-top: 3vh;
}

#purchase-button {
	margin-top: 3vh;
}

#reviews-container {
	margin-bottom: 2rem;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: start;
	flex-wrap: wrap;
}

.review-wrapper {
	width: 45%;
	width: calc(50% - 2.85rem);
	background-color: var(--ldarkblue);
	border: 0.15rem solid white;
	border-radius: 1rem;
	padding: 0.75rem;
	margin: 0.5rem 0.5rem 0.5rem 0.5rem;
}

.review-wrapper-special {
	border: 0.15rem solid var(--blue) !important;
	box-shadow :0 0 10px 0 var(--blue_50);
}

.review-top {
	height: 6vh;
	width: 100%;
	display: inline-flex;
	align-items: center;
}

.review-top div:last-child {
  margin-left: auto;
}

.review-avatar {
	height: 100%;
	max-width: 15%;
	border-radius: 50%;
}

.review-info {
    height: 95%;
	margin-left: 0.5rem;
}

.review-name {
	font-size: 1.25rem;
}

.review-date {
	font-size: 1rem;
	margin-left: 0;
}

.review-bottom {
	display: inline-flex;
	width: 100%;
}

.review-text {
	font-family: var(--font);
	color: white;
	margin: 0.75rem 0 0 0;
	width: 100%;
}

.review-source {
	font-family: var(--font);
	margin: 0.75rem 0 0 0.5rem;
	align-self: flex-end;
}
.review-source:link {
	color: white;
}
.review-source:visited {
	color: white;
}

.review-rating {
	
}

#write-review-header {
	font-size: 1.5rem;
}

.write-review-text {
	margin-bottom: 10vh;
}

@media screen and (max-width: 770px) {
	.review-container {
		width: 100%;
		margin-bottom: 0.75rem;
	}
	
	.review-rating {
		margin-top: 75%;
	}
	
	.review-source {
		font-size: 0.85rem;   
	}
}

/* Recent Payments Module */
#modules-container {
    margin-top: 7rem;
    width: 100%;
}

#payments-title {
    text-align: center;
}

#payments-container {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: start;
	flex-wrap: wrap;
}

.payments-wrapper {
	width: 26%;
	width: calc(33% - 2.6rem);
	background-color: var(--ldarkblue);
	border: 0.1rem solid white;
	border-radius: 1rem;
	padding: 0.75rem;
	margin: 0.5rem 0.5rem 0.5rem 0.5rem;
	
	height: 6vh;
	display: inline-flex;
	align-items: center;
}

.payments-avatar {
	height: 100%;
	border-radius: 50%;
}

.review-ign {
	font-size: 1.25rem;
	margin: 0;
	margin-left: 0.5rem;
}

.payment-name-wrapper {
    margin-left: auto;
    text-align: right;
}

.review-name {
	font-size: 1.25rem;
	margin: 0;
}

.payments-date {
	font-size: 1rem;
	margin-top: 0.4rem;
	margin-left: 0.5rem;
}

@media screen and (max-width: 770px) {
	.payments-wrapper {
	    width: 100%;
	}
	
	#modules-container {
	    margin-top: 5rem;
	}
}


/* FAQ */
#faq-container {
    margin-top: 5rem;
    margin-bottom: 5rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#faq-title {
    text-align: center;
}

.accordion {
    background-color: var(--ldarkblue);
	border: 0.1rem solid white;
	border-radius: 0.2rem;
    margin: 0.5rem 0.5rem 0.5rem 0.5rem;
}

.accordion-button {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    cursor: pointer;
}

.accordion-button:hover {
    background-color: var(--blue_50);
}

.accordion-question {
    margin: 0;
    padding: 0;
    margin-left: 1rem;
}

.accordion-question:after {
    content: '+';
    font-size: 1.5rem;
    margin-top: -0.35rem;
    margin-right: 1rem;
    float: right;
}

.accordion-question-active:after {
    content: '-';
}

.accordion-icon {
    margin-right: 1rem;
    float: right;
}

.accordion-body {
    display: none;
    border-top: 0.1rem solid white;
}

.accordion-answer {
    margin: 1rem 1rem 1rem 1rem;
}

.discord-container {
	width: 60vw;
}

.discord-button {
    padding: 0.25rem 0.5rem;
}

kbd {
    display: inline;
	display: inline-block;
	min-width: 1vh;
	padding: 0.25vh 0.5vh;
    font-size: 1.25vh;
	text-align: center;
	text-decoration: none;
	border-radius: .3em;
	border: none;
	cursor: default;
	user-select: none;
	font-family: var(--font);
    background: linear-gradient(var(--key-background-gtop), var(--key-background-gbottom));
    text-shadow: -1px -1px 0 rgb(70, 70, 70);
	box-shadow: inset 0 0 1px rgb(100, 100, 100), inset 0 -.05em .4em rgb(50, 50, 50), 0 .1em 0 rgb(10, 10, 10), 0 .1em .1em rgba(0, 0, 0, .3);
}
