/* Events Styling */
.event-filters {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.event-filters .event-filters__month {
	display: flex;
	flex-direction: row;
	gap: 20px;
	align-items: center;
	margin: auto;
	text-align: center;
}

.event-filters .event-filters_months_wrapper-arrow {
	display: inline-block;
	width: 80px;
	height: 19px;
	cursor: pointer;
}

.event-filters .event-filters_months_wrapper-arrow.scroll_left {
	background-image: url('../images/arrow-left.png');
}

.event-filters .event-filters_months_wrapper-arrow.scroll_right {
	background-image: url('../images/arrow-right.png');
}

.event-filters_months_wrapper {
	display: flex;
	flex-direction: row;
	gap: 20px;
}
.event-filters event-filters_months_wrapper>a {
	width: 140px;
	min-width: 140px;
	max-width: 140px;
	display: inline-block;
	text-align: center;
}
.event-filters__month-link--current {
	font-weight: bold !important;
	touch-action: none;
	pointer-events: none;
}

.event-filters__month a{
	font-family:Geologica;
	font-size:30px;
	color:var( --e-global-color-primary );
	font-weight:200;
}
.event-filters__month a:hover{
		color:var( --e-global-color-accent );
}

.event-filters__year {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}
.event-filters__year label[for="year-dropdown"] {
	font-family: Geologica;
	font-size: 30px;
	font-weight: 200;
	cursor: pointer;
	padding: 5px 20px;
	border-width: 1px;
	border-style: solid;
	border-color: var( --e-global-color-primary );
	color: var( --e-global-color-primary );
}
.event-filters__year input[type="checkbox"] {
	display: none;
}
.event-filters__year ul {
	list-style: none;
	display: none;
	flex-direction: column;
	gap: 4px;
	align-items: center;
	padding: 0;
	position: absolute;
	z-index: 10;
	margin-top: 40px;
	background: white;
	border-width: 1px;
	border-style: solid;
	border-color: var( --e-global-color-primary );
}
.event-filters__year input[type="checkbox"]:checked ~ ul {
	display: flex;
}
.event-filters__year ul li a {
	font-family: Geologica;
	font-size: 30px;
	font-weight: 200;
	cursor: pointer;
	color: var(--e-global-color-primary);
	padding: 4px 20px;
}
.event-filters__year label[for="year-dropdown"]::after {
	content: url('../images/arrow-down.png');
}
.event-filters__year input[type="checkbox"]:checked ~ label[for="year-dropdown"]::after {
	transform: rotate(180deg);
}

@media (max-width: 767px) {

	.event-filters_months_wrapper {
		display: flex;
		flex-direction: column;
	}
	.event-filters {
		flex-direction: column;
		gap: 20px;
	}
}