.calendar_block{
	padding: 100px 0;
	position: relative;
	gap: 50px;
	display: flex;
	flex-direction: column;
}
.calendar_block__title{
	font-family: FranzGrotesque;
	/*font-size: 48px;*/
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 62.4px */
}
.calendar_block__inner{
	display: flex;
	gap: 100px;
	position: relative;
}
body{
	overflow-x: hidden;
}
.new_excursion_show_more_container .only_show_more{
	display: none;
}
.show_more_active .new_excursion_show_more_container .only_show_more{
	display: flex;
}
.show_more_active .new_excursion_event_show_more{
	display: none;
}
.new_excursion_event_show_more{
	display: flex;
	justify-content: center;
}
.new_excursion_event_show_more div{
	cursor: pointer;
	width: fit-content;
	display: flex;
	padding: 20px 60px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--black, #000);
	color: var(--black, #000);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
	text-decoration: none;
	transition-duration: 0.3s;
}
.new_excursion_event_show_more div:hover{
	background: var(--black, #000);
	color: white;
}
.calendar_event_container__text{
	text-decoration: none;
	transition-duration: 0.3s;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.calendar_event_container__text:hover{
	opacity: 0.5;
}
.calendar_event_container__btn_container{
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.calendar_event_container__btn_container a{
	padding: 7px 20px;
	border-radius: 30px;
	border: 1px solid black;
	text-decoration: none;
	transition-duration: 0.3s;
}
.calendar_event_container__btn_container a:hover{
	opacity: 0.5;
}
.calendar_event_container__title{
	color: black;
	/* h3 */
	font-family: "Casus Pro";
	font-size: 26px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 41.6px */
}
.calendar_block:before{
	content:"";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100lvw;
	left: -26px;
	z-index: -1;
	background: var(--gray, #F0F0F0);
}
@media screen and (min-width: 1400px) {
	.calendar_block:before{
		content:"";
		position: absolute;
		top: 0;
		bottom: 0;
		width: 100lvw;
		left: calc( calc(100lvw - 1296px) / -2);
		z-index: -1;
		background: var(--gray, #F0F0F0);
	}
}
.calendar_event_container{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
}
.calendar_event_container__item{
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 50px;
	padding-bottom: 30px;
    border-bottom: 1px solid black;
}
/*.calendar_event_container .calendar_event_container__item:nth-last-child(2){
	border-bottom: 1px solid transparent;
}*/
.calendar_event_container__infos{
	display: flex;
	gap: 10px;
}
.calendar_event_container__infos div{
	border-right: 1px solid black;
	padding-right: 10px;
}
.calendar_event_container__infos div:last-child{
	border-right: 0;
}
.calendar_event_container__museum_color{
	height: 12px;
	width: 12px;
	border-radius: 100%;
}
.calendar_event_container__museum{
	display: flex;
	align-items: center;
	gap: 10px;
}
.calendar_block__title_table.calendar_block__title{
	display: none;
}
.calendar_event_mobile{
	display: none;
}
@media screen and (max-width: 1200px) {
	.calendar_block__inner{
		flex-wrap: wrap;
		justify-content: center;
		gap: 50px;
	}
	.calendar_event_container{
		width: 100%;
	}
	.calendar_block{
		padding: 50px 0;
		gap: 50px;
	}
	.calendar_block__title{
		font-size: 40px;
		display: none;
	}
	.calendar_block__title_table.calendar_block__title{
		display: flex;
        text-align: left;
        width: 100%;
        align-items: center;
	}
	.calendar_event_container__title{
		font-size: 28px;
	}
	.calendar_event_show_more{
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.calendar_event_mobile{
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.calendar_event_mobile_item{
		color: black;
		padding: 20px;
		margin-right: 20px;
		display: flex;
		flex-direction: column;
		gap: 10px;
		height: 100%;
	}
	.calendar_event_mobile_name{
		text-decoration: none;
		gap: 10px;
		color: black;
		/* mobile/h3 */
		font-family: "Casus Pro";
		font-size: 19px;
		font-style: normal;
		font-weight: 400;
		line-height: 130%; /* 24.7px */
	}
	.calendar_event_mobile_age{
		border-radius: 1000px;
		width: fit-content;
		padding: 4px 10px;
		background: white;
		color: black;
		/* mobile/small text-2 */
		font-family: "Open Sans";
		font-size: 11px;
		font-style: normal;
		font-weight: 400;
		line-height: 130%; /* 14.3px */
	}
	.calendar_event_mobile_btn{
		margin-top: auto;
		width: 100%;
		text-decoration: none;
		border-radius: 30px;
		border: 1px solid black;
		padding: 7px 12px 5px 12px;
		color: black;
		text-align: center;
		/* button/super small */
		font-family: FranzGrotesque;
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: 150%; /* 19.5px */
	}
	.calendar_event_container{
		display: none;
	}
	.calendar_block__title{
		text-align: center;
	}
	.calendar_block__title{
		display: flex;
	}
	.calendar_block__title_table.calendar_block__title{
		display: none;
	}
}
.only_show_more{
	display: none;
}
.show_more_active .only_show_more{
	display: flex;
}
.show_more_active .calendar_event_show_more{
	display: none;
}
