.heritage_header {
	display: flex;
	background-color: rgb(49, 65, 75, .75);
	padding: 15px;
}
.heritage_header .heritage_search { flex: 1 }
.heritage_header .heritage_search input {
	background-color: transparent;
	outline: 0;
	border: none;
	font-size: 28px;
	color: rgb(255, 255, 255, .75);
	width: 100%;
}
.heritage_header .heritage_search input::placeholder { color: rgb(255, 255, 255, .55) }

.heritage_header .heritage_filters {
	flex: 1;
	display: flex;
	padding: 0 15px;
}
.heritage_header .heritage_filters>* {
	max-width: 300px;
	margin-right: 15px;
}
.heritage_header .heritage_filters .nice-select {
	background-color: #31414b;
	border-color: rgb(49, 65, 75, .75);
	color: rgb(255, 255, 255, .75);
}
.heritage_header .heritage_filters .nice-select .list {
	background-color: rgb(49, 65, 75, .85);
	color: rgb(255, 255, 255, .75);
}
.heritage_header .heritage_filters .nice-select .option.focus, 
.heritage_header .heritage_filters .nice-select .option.selected.focus, 
.heritage_header .heritage_filters .nice-select .option:hover {
	background-color: #31414b;
}
.heritage_header .heritage_filters .district_id .option { display: none }
.heritage_header .heritage_filters .district_id .option.active { display: list-item }

.heritage_header .heritage_view {
	display: flex;
	align-items: center;
}
.heritage_header .heritage_view .heritage_view_tab {
	display: flex;
	align-items: center;
	border-radius: 15px;
	overflow: hidden;
	background-color: rgb(255, 255, 255, .5);
}
.heritage_header .heritage_view .heritage_view_tab a {
	cursor: pointer;
	padding: 5px 15px;
}
.heritage_header .heritage_view .heritage_view_tab a.current:hover,
.heritage_header .heritage_view .heritage_view_tab a.current { background-color: #e9920f }
.heritage_header .heritage_view .heritage_view_tab a:hover { background-color: rgb(233, 146, 15, .2) }

.heritages_wrap {
	display: flex;
	flex-wrap: wrap;
}
.heritages_wrap .heritage_box {
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}
.heritages_wrap .heritage_box .heritage_image {
	display: flex;
	position: relative;
	background-color: #13191d;
}
.heritages_wrap .heritage_box .heritage_image img { max-width: 100% }
.heritages_wrap .heritage_box:hover .heritage_image .image {
	transform: scale(1.25);
	-webkit-transform: scale(1.25);
}
.heritages_wrap .heritage_box .heritage_image .image {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	max-width: 100%;
	z-index: 1;
	-webkit-transition: all .3s cubic-bezier(.455,.03,.515,.955);
	-moz-transition: all .3s cubic-bezier(.455,.03,.515,.955);
	-ms-transition: all .3s cubic-bezier(.455,.03,.515,.955);
	-o-transition: all .3s cubic-bezier(.455,.03,.515,.955);
	transition: all .3s cubic-bezier(.455,.03,.515,.955);
}
.heritages_wrap .heritage_box .heritage_meta {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
	height: 140px;
	padding: 0 15px 15px;
	color: #ddd;
	background: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.8)));
	background: -webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.8));
	background: -moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.8));
	background: -ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.8));
	background: -o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.8));
}
.heritages_wrap .heritage_box .heritage_meta .heritage_region {
	font-size: 14px;
}
.heritages_wrap .heritage_box .heritage_meta .heritage_title {
	font-family: 'Alice', serif;
	font-size: 24px;
	color: #fff;
}
.heritages_wrap .heritage_box .heritage_meta .heritage_description { }
.heritages_wrap .map_box.hide { display: none }

.heritage_main_page {
	flex: 1;
	position: relative;
	display: flex;
	justify-content: center;
}
.heritage_main_page .heritage_bg_image {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
}
.heritage_main_page .main_page_overlay {
	background-image: linear-gradient(to left,rgba(0,0,0,.2),rgba(0,0,0,.65));
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
}

.heritage_main_page .heritage_main_info {
	z-index: 5;
	display: flex;
	flex-direction: column;
	margin-top: 55px;
	min-width: 900px;
	color: #fff;
}
.heritage_main_page .heritage_main_info .heritage_main_title {
	font-size: 56px;
	font-family: 'Alice', serif;
	border-bottom: 1px solid #fff;
}
.heritage_main_page .heritage_main_info .heritage_main_region {
	font-size: 28px;
	font-weight: 300;
	margin-top: 5px;
	opacity: .75;
}
.heritage_main_page .heritage_main_info .heritage_main_meta {
	display: flex;
	flex-direction: column;
	margin-top: 25px;
}
.heritage_main_page .heritage_main_info .heritage_main_meta .meta_row {
	display: flex;
	flex-direction: column;
	border-bottom: 1px dotted rgb(255, 255, 255, .75);
	margin: 15px 0;
	width: 30%;
}
.heritage_main_page .heritage_main_info .heritage_main_meta .meta_row .meta_name {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	opacity: .75;
}
.heritage_main_page .heritage_main_info .heritage_main_meta .meta_row .meta_value {
	font-size: 20px;
	font-weight: 300;
	padding: 5px 0;
}

.district_id .option { display: none }
.district_id .option.active { display: list-item }

.filter_box { overflow-x: unset!important }
.heritages_box.post_grid_box { margin-top: 25px }
#heritage_map {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 25px 5px 35px 10px;
}

.heritage_info_box {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid rgb(255, 255, 255, .3);
	width: 300px;
	background-color: #1c1d22;
	color: rgb(255, 255, 255, .75);
	box-shadow: 0 -3px 22px rgb(0, 0, 0, .5);
	font-size: 16px;
	padding: 5px;
}
.heritage_info_box .heritage_info_image img { max-width: 100% }

.heritage_info_box .heritage_info_meta  {
	display: flex;
	flex-direction: column;
	padding: 5px 0;
}

.heritage_info_box .heritage_info_meta .heritage_info_title {
	
}
.heritage_info_box a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

#heritages_page { height: 100% }
#heritages_page .header,
#heritages_page .footer {
	background-color: transparent;
	z-index: 4;
}
#heritages_page .footer { background-image: linear-gradient(1deg, rgba(28, 29, 34, 0.5) 0%, rgba(28, 29, 34, 0) 100%) }
#heritages_page .header { background-image: linear-gradient(180deg, rgba(28, 29, 34, 0.5) 0%, rgba(28, 29, 34, 0) 100%) }

.heritage_background {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: inset 0 0 0 1000px rgb(18, 20, 22, .6);
}
.heritage_page_box {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 35px 0;
	z-index: 2;
}
.heritage_page_box.more { align-items: flex-start }
.heritage_container {
	margin: 0 auto;
	width: 100%;
	height: 100%;
}
.heritage_container h1 {
	text-transform: uppercase;
	font-size: 2em;
	padding-bottom: 15px;
	border-bottom: 1px solid;
}
.tab_wrap,
.heritage_more { height: 100% }
.heritage_main {
	display: flex;
	flex-direction: column;
}
.heritage_main.hide { display: none }
.heritage_sections {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 35px 0;
}
.heritage_sections a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	min-height: 120px;
	font-size: 14px;
	margin: 10px;
	background-color: rgb(255, 255, 255, .05);
	border-radius: 5px;
	color: rgb(255, 255, 255, .95);
	cursor: pointer;
}
.heritage_sections a:hover {
	background-color: #7d8ddb;
	color: rgb(255, 255, 255, .75);
}
.heritage_sections a i {
	font-size: 32px;
	margin-bottom: 10px;
}
.more_tab { height: 40px }
.more_tab .tab_item {
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
}
.tab_content {
	display: none;
	flex-direction: column;
	padding: 25px 0;
	height: 100%;
}
.map_wrap { padding: 0 }
.map_wrap #heritage_map { margin: 15px 0 }
.tab_content.active { display: flex }
.info_single {
	display: flex;
	flex-direction: column;
	padding: 10px 0;
	margin-bottom: 10px;
	border-bottom: 1px dotted rgb(255, 255, 255, .15);
	max-width: 70%;
}
.info_single span:first-child {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	color: rgb(255, 255, 255, .45);
}
.info_single span:last-child {
	font-weight: 400;
	font-size: 18px;
	color: rgb(255, 255, 255, .75);
	padding: 5px 0;
}
.info_single span:last-child em {
	display: block;
	font-style: normal;
	padding-bottom: 10px;
	border-bottom: 1px solid rgb(255, 255, 255, .3);
}
.info_single span:last-child em:last-child {
	padding-bottom: 
	0;
	border-color: transparent;
}
.info_single .authors_box { display: flex }
.info_single .authors_box a {
	color: rgb(255, 255, 255, .45);
	text-decoration: none;
	padding-left: 10px;
}
.info_single .authors_box a:hover { color: rgb(255, 255, 255, .85) }

.photo_wrap { padding: 0 }
.photo_wrap .big_photo {
	flex: 1;
	display: flex;
	align-items: flex-end;
	width: 100%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin: 15px 0 0;
}
.photo_wrap .big_photo span {
	display: block;
	background-color: rgb(14, 21, 54, .4);
	padding: 10px 25px;
	margin: 0 auto;
}
.photo_wrap .small_photos {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 150px;
}
.photo_wrap .small_photos a {
	display: block;
	height: 100px;
	width: 100px;
	margin-right: 15px;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0 0 0 5px transparent;
	cursor: pointer;
}
.photo_wrap .small_photos a:hover { box-shadow: 0 0 0 5px rgb(255, 255, 255, .1) }
.photo_wrap .small_photos a.current { box-shadow: 0 0 0 5px #7d8ddb }