main
{
	display: flex;
}

a {
	text-decoration: none;
}

.map,
.map-holder
{
	min-height: 650px;
	width: 100%;
	flex: 1;
	display: flex;
	position: relative;
}

.map-controls
{
	margin:0;
	padding:0;
	list-style-type: none;
	background-color: rgba(0, 0, 0, 0.7);
	border-radius: 0 10px 10px 0;
	position: absolute;
	top: 90px;
	left: 0;
	display: none;
	width: 71px;
	height: auto;
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
}

.map-controls li
{
	width:100%;
	margin:0;
	padding: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.map-controls li.no-border
{
	border-top:none;
}

.map-controls li a
{
	color:#fff;
	background-repeat: no-repeat;
	background-position: 50% 14px;
	background-size: 24px 24px;
	width:100%;
	display:block;
	padding-top:46px;
	height:70px;
	box-sizing: border-box;
	text-align: center;
	font-size: 0.6em;
	font-weight: bold;
	cursor: pointer;
}

.map-controls li a.satellite-btn
{
	background-image: url('/img/explore/sat-icon-white.png');
	opacity: 0.5;
}

.map-controls li a.terrain-btn
{
	background-image: url('/img/explore/terrain-icon-white.png');
	opacity: 0.5;
}

.map-controls li a.pct-btn
{
	background-image: url('/img/explore/pct-icon-white.png');
	opacity: 0.5;
}

.map-controls li a.radius-btn
{
	background-image: url('/img/explore/radius-icon-white.png');
	background-size: 24px 11px;
	padding-top:38px;
}

.map-controls li a.active
{
	opacity: 1;
}

.map-target
{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 54px;
	height: 54px;
	margin-top: -27px;
	margin-left: -27px;
	border-radius: 27px;
	box-sizing: border-box;
	border: 5px solid #fff;
}

.map-results
{
	position: absolute;
	bottom:0;
	left:0;
	right:0;
	margin-left:auto;
	margin-right:auto;
	max-width: 900px;
	width: 90%;
	max-height: 30%;
	/*overflow: auto; implemented by simple-scroll plugin*/
	display: flex;
	flex-direction: column;
}

#pct-results
{
	padding-bottom:12px;
	margin-top: auto;
	height: fit-content;
}

a.close-btn
{
	position: fixed;
	display: block;
	right: 16px;
	top: 16px;
	width: 40px;
	height: 40px;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('/img/explore/close-btn-icon.png');
	cursor: pointer;
	border-radius: 20px;
	z-index:120;
}

.pct-result .searching-msg {
	padding:20px;
	margin: 0;
}

.pct-result
{
	background-color: rgba(0, 0, 0, 0.7);
	border-radius: 10px;
	color:#fff;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	height:auto;
	margin-bottom: 10px;
	margin-right: 12px;
	cursor: pointer;
	backdrop-filter: blur(5px);
}

.pct-result:hover
{
	background-color: rgba(0, 0, 0, 0.7);
}

.pct-result.no-results,
.pct-result.not-native
{
	cursor: auto;
}

.pct-result .color-tag
{
	min-width:16px;
	width:16px;
	border-radius: 10px;
	margin-left: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.pct-result .pct-info
{
	padding:16px 19px;
	font-size:0.9em;
	color:#BBBDBD;
	flex-grow: 2;
}

.pct-name {
	font-weight: bold;
	margin-bottom:6px;
	color:#fff;
}

.pct-text
{
	font-size:0.9em;
	margin-bottom:4px;
}

.pct-footnote {
	font-weight: bold;
	font-size: 0.9em;
	margin-bottom: 4px;
	color: #fff;
}

.pct-result .pct-link
{
	min-width:48px;
	width:48px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	background-image: url('/img/explore/chevron-right.png');
	background-size: 7px 11px;
	background-repeat: no-repeat;
	background-position: center center;
	display:block;
}

.pct-result-detail
{
	display: none;
	z-index:120;
	width: 90%;
	/*overflow: auto; implemented by simple-scroll plugin*/ 
	position: absolute;
	left:50%;
	padding:0 0 10px 0;
	transform: translate(-50%, 0);
	max-width: 900px;
	height:auto;
	bottom:0;
	top:0;
	right:0;
	margin-top:110px;
	border-radius: 10px 10px 0 0;
}

.pct-result.no-results
{
	justify-content: center;
	align-items: center;
}

.pct-result.no-results .searching-msg,
.pct-result.no-results .no-results-msg
{
	padding: 16px 19px;
	font-size: 0.9em;
	color: #BBBDBD;
}

.pct-result.no-results .searching-loader
{
	border: 2px solid transparent; 
	border-top: 2px solid #ffffff;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	animation: searching-loader-spin 0.75s linear infinite;
}

@keyframes searching-loader-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/***** Slider and search bar *****/
.find-container
{
	z-index: 1;
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 20px;
	background-color: transparent;
	width: 100vw;
	flex-wrap: wrap;
}

.feedback-container
{
	width: 334px;
	height: 48px;
	background-color: transparent;
	text-align: center;
	margin-left: 20px;
}

.feedback-button {
	width: 48px;
	height: 48px;
	position: relative;
	background-color: white;
	border-radius: 4px;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.map-slider
{
	height: 48px;
	color: black;
	text-align: center;
	border-radius: 4px;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}

.map-slider a
{
	color: black;
	text-decoration: none;
}

.map-slider-section
{
	height: 48px;
	width: 150px;
	float: left;
	position: relative;
	background-color: lightgrey;
	cursor: pointer;
}

.map-slider .active
{
	background-color: white;
	cursor: default;
}

.map-slider .slider-text
{
	font-size: 16px;
}

.map-slider .slider-text-sm
{
	font-size: 9px;
}


.pct-card-header
{
	position:relative;
	color: #fff;
	padding: 29px 36px;
	border-radius: 10px 10px 0 0;
	min-height: 67px;
}

.pct-section-title,
.pct-mini-title {
	font-size: 0.8em;
	line-height: 0.9em;
	text-transform: uppercase;
	font-weight: bold;
}

.pct-title {
	font-size: 1.5em;
	line-height: 1.4em;
	margin-top:0.5em;
	margin-bottom:0.6em;
}

.pct-card-sub-header
{
	background: #F7F7F7;
	color: #4D4D4F;
	padding: 20px 30px;
	border-bottom: 1px solid #fff;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.pct-card-sub-header .tree-icon
{
	min-width:54px;
	min-height:54px;
	width:54px;
	height:54px;
	border-radius: 27px;
	background-image: url('/img/tree-icon.png');
	background-repeat: no-repeat;
	background-size: 34px 32px;
	background-position: center center;
	margin-right:30px;
}

.pct-card-sub-header .pct-section-title,
.pct-card-section .pct-section-title
{
	color:#000;
	margin-bottom:12px;
}

.pct-card-section
{
	padding: 20px 30px;
}

.pct-result-detail .nsw-link-list,
.pct-result-detail .nsw-accordion
{
	list-style-type: none;
	margin: 5px 13px;
	padding:0;
	font-size: 14px;
}

.pct-result-detail .nsw-accordion__title button
{
	font-size: 14px;
}

.pct-result-detail .nsw-accordion__content,
.pct-result-detail .nsw-accordion__content .nsw-link-list
{
	padding: 0;
	margin: 0;
}

.pct-card-lgas ul
{
	list-style-type: disc;
	margin:15px;
	padding:5px;
}

.pct-card-lgas ul li
{
	padding:0;
	margin-bottom:0.3em;
}

@media (max-width: 1025px) {
	.find-container {
		justify-content: left;
	}

	.feedback-container {
		width: 48px;
	}

	.map-slider
	{
		margin-left: 20px;
		margin-bottom: 20px;
	}

	.search-bar
	{
		margin-left: 20px;
	}

	.map-controls
	{
		top: 150px !important;
	}

	.map,
	.map-holder
	{
		min-height: 800px;
	}

	.data-result .data-link
	{
		display: none;
	}
}

.find-bar-container
{
	height: 48px;
}

.center
{
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}

.search-bar
{
	height: 48px;
	background-color: white;
	color: black;
	text-align: center;
	border-radius: 4px;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
	margin-right: 20px;
	max-width: 334px;
}

.search-bar-icon {
	height: 48px;
	width: 70px;
	float: left;
	position: relative;
	border-right: #ECECEC 1px solid;
}

.fa-xmark
{
	cursor: pointer;
}

.search-bar-field
{
	height: 48px;
	width: 264px;
	float: left;
	position: relative;
}

.address-search
{
	width: 100%;
	border: none;
	padding-left: 16px;
	padding-right: 16px;
	font-size: 14px;
	height: 48px;
	font-family: 'Open Sans', Helvetica, sans-serif;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.address-search::-webkit-search-cancel-button {
	display: none;
}

.address-search:focus
{
	outline: none;
}

::placeholder
{
	color: #BDBDBD;
	opacity: 1;
}

.tt-input
{
	height: 48px;
}

.tt-suggestion
{
	padding: 0 !important;
}

.address-search-suggestion-label
{
	padding: 5px 10px;
	border-bottom: #ECECEC 1px solid;
	font-size: 14px;
	font-family: 'Open Sans', Helvetica, sans-serif;
}

.address-search-suggestion-label:hover
{
	background-color: #5897fb;
	color: white;
}

.tt-list
{
	width: 335px !important;
	right: 0 !important;
	top: 10px !important;
	border: none !important;
	border-radius: 4px;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}

@media all and (max-width: 600px) {
	
	.pct-result-detail {
		width: 100%;
		margin-top: 80px;
		max-width: 100%;
	}
	
	.pct-card-header
	{
		border-radius: unset;
	}

	#pct-results
	{
		padding-bottom:0;
	}

	.pct-result .pct-link
	{
		display: none;
	}

	.pct-result .pct-info {
		padding: 11px 14px;
		font-size: 0.8em;
	}
}


/***** mapbox control css overrides *****/

.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl-group {
	margin-right: 20px;
}

/***** other plugin css overrides *****/

.jquery-modal
{
	overflow:hidden;
	z-index:300; /* puts it above the map zoom.*/
}



.modal a.close-modal
{
	display: none;
}