.messekalender-wrap {
	margin-top: 20px;
		font-family: "oaks", sans-serif;
font-weight: 300;
	  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	
}

.messekalender__tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 0;
	margin-bottom: 6px;
	position: relative;
	z-index: 2;
		font-family: "oaks", sans-serif;
font-weight: 300;
	  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	margin-left:30px;
	&::-webkit-scrollbar {
    display: none;
  }

  /* Scrollbar für Firefox ausblenden */
  scrollbar-width: none;

  /* Scrollbar für Internet Explorer und ältere Edge-Versionen ausblenden */
  -ms-overflow-style: none;
}

.messekalender {

	border: 1px solid #6f9198;
	border-top-left-radius:40px;
	border-bottom-left-radius:40px;
	padding: 20px;
	margin-top: -1px;
	position: relative;

}

.messekalender__tab {
	border: 1px solid #6f9198;
	background: transparent;
	color: #5b7f87;
	border-radius: 14px 14px 0 0;
	padding: 6px 18px;
	font-size: 16px;
	line-height: 1.2;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.2s ease;
	margin-bottom: 0;
	border-bottom:0;
			font-family: "oaks", sans-serif;
font-weight: 300;
	  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.messekalender__tab.is-active {
	background: #fff;
	color: #ef7d82;
	border:0
}

.messekalender__panel {
	display: none;
}

.messekalender__panel.is-active {
	display: block;
}

.messekalender__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}



@media (min-width: 782px) {
	.messekalender__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

}




.messekalender__card {
	display: grid;
	grid-template-columns: 86px 1fr;
	background: #f5f5f5;
	min-height: 86px;
	overflow: hidden;
	border-top-left-radius:15px;
	border-bottom-left-radius:15px
}

.messekalender__card-city {
	background: #ef7d82;
	color: #ffffff;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	text-align: center;
	font-size: 14px;
}

.messekalender__card-content {
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.messekalender__card-date {
	color: #5b7f87;
	font-size: 15px;
	margin-bottom: 0px;
}

.messekalender__card-title {
	color: #ef7d82;
	font-size: 18px;
	line-height: 1.2;
}


.messekalender__card.cta .messekalender__card-city{
	background-image:url(images/bastian-schmitte.png);
	background-position:center center;
	background-size:cover;
	border-right:1px solid #ccdfe3
}

.messekalender__card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.messekalender__card-link:visited,
.messekalender__card-link:hover,
.messekalender__card-link:active,
.messekalender__card-link:focus {
  color: inherit;
  text-decoration: none;
}



@media screen and (max-width: 767px) {
	
.messekalender {
	max-height:468px;
	overflow-y:auto
}	
}