/***** MAIN */
:root {
	--color-main: #f4bc5f;
	--color-shop-badge: #f4bc5f;
}
.px-main {
	    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 1300px) {
    .px-main {
        max-width: 1450px;
    }
}

.btn-main {
	background-color: #f4bc5f;
	border-color: #f4bc5f;
}
.btn-main:hover {
	background-color: #f8d59d;
	border-color: #f4bc5f;
	color: #000;
}

.btn-outline-main {
	background-color: transparent;
	border-color: #f4bc5f;
	color: #f4bc5f;
}

.btn-outline-main:hover {
	background-color: #f4bc5f;
	border-color: #f4bc5f;
	color: #000;
}

main {
	padding-top: 50px;
	padding-bottom: 100px;
}

#eventorga_overview_container {
	padding-top: 20px;
	width: 100%;
	max-width: 1000px;
}

#eventorga_overview_container .event {
	position: relative;
	padding: 1rem;
	box-shadow: 0px 0px 10px #eee;
	display: flex;
	border-radius: 18px;
}
#eventorga_overview_container .event .badge-ausgebucht {
	position: absolute;
	top: -6px;
	right: 11px;
	background-color: #dc3545;
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 10px;
	font-weight: bold;
}

#eventorga_overview_container .event .img {
	width: 260px;
	height: 200px;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	margin-right: 2rem;
}
#eventorga_overview_container .event .content {
	flex: 1;
	padding-top: 10px;
	padding-bottom: 10px;
}
#eventorga_overview_container .event .head h3 {
	margin-bottom: 20px;
}
#eventorga_overview_container .event .head svg {
	color: var(--color-main);
}

#eventorga_overview_container .event .body {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #eee;
	height: 90px;
}
#eventorga_overview_container .event .body p {
	max-height: 72px;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 1rem;
}

@media (max-width: 767px){
	#eventorga_overview_container .event {
		flex-direction: column;
	}
	#eventorga_overview_container .event .img {
		margin-bottom: 1.5rem;
	}
	#eventorga_overview_container .event .body {
		height: auto;
	}
	#eventorga_overview_container .event .body p {
		max-height: none;
		margin-bottom: 1rem !important;
	}
}

@media (max-width: 575px){
	#eventorga_overview_container .event .img {
		width: 100%;
		height: 200px;
	}
}