.countdown-container {
	width: 100%;
	display: flex;
	justify-content: center;

	.countdown {
		display: flex;
		justify-content: center;
		align-items: center;
		/* max-width: 1600px; */
		width: 100%;
		column-gap: 40px;
		row-gap: 20px;
		/* background-image: linear-gradient(to right, #c3002f, #cb0050, #cb0d71, #c32c92, #b245b0); */
		background-color: black;
		color: white;
		flex-wrap: wrap;
		padding: 20px 0;
	}

	.countdown-timer {
		display: flex;
		justify-content: center;
		flex-direction: row;
		gap: 10px;
	}

	.countdown-timer>span {
		display: flex;
		flex-direction: column;
		width: 50px;
		align-items: center;
		border-right: 1px solid;
		padding-right: 10px;
	}

	.countdown-timer>span:last-child {

		border-right: none !important;
	}

	.countdown-title {
		font-weight: bolder;
		font-size: large;
		text-shadow: 2px 2px 5px #00000099;
		padding: 10px;
	}

}