.modalPromoContainer {
	position: fixed;
	z-index: 99;
	width: 100dvw;
	height: 100dvh;
	background-color: rgb(0, 0, 0, 0.5);
	overflow-x: hidden;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}
.modalPromoContainer * {
	font-family: Arial, Helvetica, sans-serif;
}
.modalPromo {
	display: flex;
	flex-direction: column;
	width: max-content;
	padding: 10px;
	/* padding-top: 25px; */
	max-width: 500px;
	background-color: rgb(34, 34, 34);
	border-radius: 5px;
	scale: 1.5;
}
.promoList1 {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.promoItemOnline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	background: #232d33;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 7px;
	padding: 8px;
}
.onlineCount {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.onlineCount > span {
	display: block;
	font-style: normal;
	font-weight: 300;
	font-size: 8px;
	line-height: 12px;
	color: #00ff92;
}
#onlinik,
#users {
	font-style: normal;
	font-weight: 900;
	font-size: 8px;
	color: #ffffff;
	text-align: center;
}
.promoItemTg {
	background: #232d33;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 7px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	height: 39px;
	width: 39px;
	transition: 0.3s all;
}
.promoItemTg:hover {
	opacity: 0.8;
}
.promoList2 {
	margin-top: 5px;
	display: flex;
	gap: 5px;
}
.modalCloserDiv {
	width: 100%;
	display: flex;
	justify-content: end;
	margin-bottom: 5px;
}
#modalCloser {
	background-color: transparent;
	border-radius: 0;
	outline: none;
	border: 0;
	cursor: pointer;
}
.hid {
	display: none;
}
@media (width <= 450px) {
	.modalPromo {
		scale: 1;
	}
}
