.calendar-filters ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom:20px;
}
.calendar-filters li {
	margin: 0 10px 0 0;
	padding: 0 10px;
	white-space: nowrap;
	font-size: 10px;
	text-transform: uppercase;
	height: 33px;
	line-height: 33px;
	border-radius: 6px;
	color: var(--white);
	cursor: pointer;
	text-align: center;
	transition: all 0.5s ease;
	position: relative;
}
.calendar-filters li.selected-filter {
	padding-right: 35px;
}
.calendar-filters li.news-filter {
	background: var(--red);
}
.calendar-filters li.casino-filter {
	background:var(--dark-green-color);
}
.calendar-filters li.poker-filter {
	background:var(--green-color);
}
.calendar-filters li.player-filter {
	background:var(--orange-color);
}
.calendar-filters li.selected-filter::after {
	position: absolute;
	top: 50%;
	z-index: 100;
	transform: translateY(-49%);
	content: "";
	background: url(../../images/close_icon-white.svg);
	right: 6px;
	width: 20px;
	height: 20px;
	background-size: 100%;
	background-repeat: no-repeat;
}
.event-date-outer {
	display: flex;
	width: 100%;
	align-content: center;
	align-items: center;
	gap: 3px 20px;
	flex-wrap: wrap;
}
.event-date-outer .entry-date,
.event-date-outer .event-location {
	font-size: 14px;
	color: var(--black);
	font-family: var(--dmsans);
	position: relative;
}
.event-informtion a {
	font-size: 14px;
}
.event-date-outer .entry-date img {
	width: 14px;
	vertical-align: bottom;
	margin-right: 7px;
}
.event-date-outer .event-location {
	padding-left: 27px;
}
.event-date-outer .event-location::before {
	content: "";
	position: absolute;
	left: 0;
	width: 14px;
	height: 19px;
	background: url(../../images/location-icon-black.svg);
	background-size: 100%;
	top: -3px;
	background-position: center;
	background-repeat: no-repeat;
}
.event-date-outer .event-informtion::before {
	content: "";
	position: absolute;
	left: 0;
	width: 14px;
	height: 19px;
	background: url(../../images/info.svg);
	background-size: 100%;
	top: 0px;
	background-position: center;
	background-repeat: no-repeat;
}
.event-informtion {
	position: relative;
	padding-left: 24px;
}
.filter-posts p {
	color: var(--black);
	margin-top: 57px;
}
@media only screen and (max-width:767px) {
	.calendar-filters ul {
		margin-bottom:0;
	}
	.calendar-filters li {
		margin: 0 10px 10px 0;
	}
}