@media (max-width: 220px) {
	.accept-btn {
		background: #2EE5C2;
		border: none;
		border-radius: 5px;
		white-space: nowrap;

		color: #5637D7;
		text-align: center;
		font-size: 20px;
		font-style: normal;
		font-weight: 700;
		line-height: 25px;

		display: flex;
		width: 79px;
		height: 39px;
		padding: 2px 12px;
		justify-content: center;
		align-items: center;
		gap: 10px;
		flex-shrink: 0;
	}
}

@media (min-width: 220px) and (max-width: 768px) {
	.accept-btn {
		background: #2EE5C2;
		border: none;
		border-radius: 5px;
		white-space: nowrap;

		color: #5637D7;
		text-align: center;
		font-size: 20px;
		font-style: normal;
		font-weight: 700;
		line-height: 25px;

		display: flex;
		width: 79px;
		height: 39px;
		padding: 2px 12px;
		justify-content: center;
		align-items: center;
		gap: 10px;
		flex-shrink: 0;
	}
}

@media (min-width: 768px) and (max-width: 1919px) {
	.accept-btn {
		background: #2EE5C2;
		border: none;
		border-radius: 5px;
		white-space: nowrap;

		color: #5637D7;
		text-align: center;
		font-size: 20px;
		font-style: normal;
		font-weight: 700;

		display: flex;
		width: 93px;
		padding: 2px 12px;
		justify-content: center;
		align-items: center;
		gap: 10px;
	}
}

@media (min-width: 1919px) {
	.accept-btn {
		background: #2EE5C2;
		border: none;
		border-radius: 5px;
		white-space: nowrap;

		color: #5637D7;
		text-align: center;
		font-size: 20px;
		font-style: normal;
		font-weight: 700;

		display: flex;
		width: 93px;
		padding: 2px 12px;
		justify-content: center;
		align-items: center;
		gap: 10px;
	}
}
	
.cookie-popup {
	position: fixed;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	max-width: 1200px;
	min-width: 365px; 
	background: rgba(29, 4, 90, 0.80);
	color: #fff;
	padding: 12px 25px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	z-index: 9999;
}
.cookie-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	flex-wrap: nowrap; 
}
.cookie-container p {
	margin: 0;
	font-size: 16px;
	line-height: 24px;
	flex: 1;  
}
.cookie-container a {
	color: #2EE5C2;
	text-decoration: underline;
}
