div.promo {
	height: 100px;
	margin: 0 0 0 0;
	border: 2px solid #222222;
	background-color: rgba(13, 13, 13, 0.50);
	backdrop-filter: blur(3px) saturate(70%);
	-webkit-backdrop-filter: blur(3px) saturate(70%);
	box-shadow: inset 0px 0px 10px #090909, 0px 0px 5px #000000, 0px 0px 20px #000000;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}

div.promo div.blocks {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 0;
}
div.promo div.blocks button.discord {
	position: absolute;
	top: calc(50% - 40px);
	left: 10px;
	width: 80px;
	height: 80px;
	padding: 0;
	background-color: transparent;
	filter: brightness(0.5);
	border: none;
	outline: none;
	cursor: pointer;
	transition: 80ms;
}
div.promo div.blocks button.discord:hover {
	filter: brightness(0.7);
}

div.promo div.blocks button.discord img {
	width: 80px;
	height: 30px;
	margin: 0 0 4px 0;
	object-fit: contain;
	filter: drop-shadow(0 0 5px rgba(0, 0, 0, 1));
	transition: transform 200ms ease;
}
/*div.promo div.blocks button.discord:hover img {
	transform: scale(1.1);
}*/

div.promo div.blocks button.discord span {
	height: 14px;
	color: #ffffff;
	line-height: 14px;
	font-size: 14px;
	font-weight: bold;
	text-shadow: 0 0 1px #000000, 0px 0px 5px #000000, 0px 0px 10px #000000;
}

#share-site,
#report-a-bug {
	position: absolute;
	top: calc(50% - 20px);
}

#share-site {
	right: 20px;
}

#report-a-bug {
	right: 170px;
}

.sales {
	position: absolute;
	left: calc(50% - 160px);
	bottom: 0;
	overflow: hidden;
	/*cursor: pointer;*/
}

.sales .title,
.sales .timer {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	transition: transform .1s ease, color 0.1s ease;
	/*transition: all 0.1s ease 0.1s;*/
	font-size: 14px;
	text-shadow: 0px 0px 3px #000000, 0px 0px 5px #000000, 0px 0px 10px #000000;
	z-index: 4;
	pointer-events: none;
}
.sales .title::after,
.sales .timer::after {
	content: "";
	position: absolute;
	z-index: -1;
	left: 50%;
	top: -4px;
	bottom: 0;
	width: 120%;
	height: 26px;
	background: #060606;
	border-radius: 50%;
	filter: blur(4px);
	transform: translateX(-50%);
}

.sales .title {
	bottom: 35px;
	font-weight: bold;
	color: #b3b0a1;
}

.sales .timer {
	bottom: 10px;
	color: #999999;
}

.sales .cards {
	position: relative;
	width: 320px;
	height: 140px;
	overflow: hidden;
	pointer-events: none;
}

.sales .card {
	position: absolute;
	width: 200px;
	transition: transform .1s ease;
	transform-origin: center;
}

.sales .card-1 {
	transform:
		translate(10px, 30px)
		rotate(-20deg);
	z-index: 3;
}

.sales .card-2 {
	transform:
		translate(50px, 18px)
		rotate(-5deg);
	z-index: 2;
}

.sales .card-3 {
	transform:
		translate(90px, 25px)
		rotate(10deg);
	z-index: 1;
}

.sales:hover .card-1 {
	transform:
		translate(-15px, 0px)
		rotate(-23deg);
	transition-delay: 0.4s;
}

.sales:hover .card-2 {
	transform:
		translate(50px, -20px)
		rotate(-5deg);
	transition-delay: 0.4s;
}

.sales:hover .card-3 {
	transform:
		translate(115px, -10px)
		rotate(13deg);
	transition-delay: 0.4s;
}

.sales:hover .title {
	color: #e6e2cf;
	transform: translateX(-50%) translateY(-15px);
	transition-delay: 0.4s;
}

.sales:hover .timer {
	color: #cccccc;
	transform: translateX(-50%) translateY(-10px);
	transition-delay: 0.4s;
}