.packagelist-categorylist {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 10px;
}
.packagelist-category {
	margin: 0px 20px 10px;
	cursor: pointer;
	display: flex;
	align-items: flex-start;
}
.packagelist-category-count {
	margin-left: 5px;
}
.packagelist-category.disabled {
	display: none;
}
.packages-empty-box {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.packages-empty-text {
	margin-bottom: 30px;
}
.packages-empty-button .bh-font-arrow-right {
	margin-left: 10px;
}
.package-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
.package-item {
	width: calc(50% - 20px);
	max-width: 460px;
	margin-bottom: 50px;
	box-sizing: border-box;
}
.package-item-body {
	position: relative;
	height: 520px;
	box-sizing: border-box;
	width: 100%;
}
.package-item-body-inner {
	display: block;
	position: relative;
	overflow: hidden;
	height: 100%;
	width: 100%;
	padding: 0px;
	border-radius: 0px;
	line-height: inherit;
}
.package-item-picture {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0px;
	top: 0px;
	background: no-repeat center center;
	background-size: cover;
	transform: scale(1.1);
	transition: ease-out transform 0.5s;
}
.package-item:hover .package-item-picture {
	transform: scale(1);
	transition: ease-out transform 0.5s;
}
.package-item-content {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	width: 100%;
	padding: 30px;
	box-sizing: border-box;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.package-item-name h3 {
	margin-bottom: 0px;
}
.package-item-name {
	margin-bottom: 10px;
}
.package-item-subtext {
	margin-bottom: 30px;
}
.package-item-subtext.package-item-subtext-teaser {
	margin-bottom: 30px;
}
.package-item-button {
	display: block;
}
.package-item-price {
	position: absolute;
	height: 123px;
	width: 123px;
	border-radius: 100%;
	left: calc(50% - 61.5px);
	top: 40px;
	background: #D0A367;
	text-align: center;
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 0px;	
}

@media only screen and (max-width : 767px) {
	.package-item {
		width: 100%;
		padding: 0px;
		margin-bottom: 20px;
	}
	
	.package-item-name {
		margin: 0px;
		min-height: 0px;
	}
	.package-item-subtext {
		margin-bottom: 10px;
		font-size: 15px !important;
	}
	.package-item-subtext.package-item-subtext-teaser {
		margin-bottom: 10px;
		font-size: 13px !important;
		line-height: 18px;
	}
	.package-item-price {
		margin-bottom: 10px;
	}
}

.bh-state-mobile .el-packages {
	padding-left: 0px !important;
	padding-right: 0px !important;
}
.bh-state-mobile .package-item-body {
	height: 430px;
}
