/**
* Theme Name: Blankslate Child
* Description: Child theme for the blankslate theme
* Author: Isaac Nicholas
* Template: blankslate
*/

pre {
	font-size: 12px;
	color: #e4e4e4;
	line-height: 14px;
}

.fixedwidth {
	font-family: 'Fira Sans','Courier New', Courier, monospace;
	font-variant-numeric: tabular-nums;
}

.parcel-views .grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 640px) {
	.parcel-views .grid {
		grid-template-columns: repeat(2, 1fr);
		margin-left: 1em;
    margin-right: 1em;
	}
}
@media screen and (min-width: 640px) and (max-width: 1000px) {
	.parcel-views .grid {
		grid-template-columns: repeat(4, 1fr);
		margin-left: 1em;
    margin-right: 1em;
	}
}

.row {
	margin-left: 0;
	margin-right: 0;
}
@media screen and (max-width: 479px) {
	.row {
		margin-left: 1em;
		margin-right: 1em;
	}
}

/* Force sticky header on mobile BEFORE scroll */
.header-area {
    position: sticky !important;
    top: 0 !important;
    z-index: 999;
}


.col {
	padding-right: 0;
	padding-left: 0;
}
/* @media screen and (max-width: 479px) { */
	/* .col { */
		/* padding-right: 1em; */
		/* padding-left: 1em; */
	/* } */
/* } */
.col>p:last-child {
	margin-bottom: 20px;
}

#site-footer .vc_custom_heading {
	margin: 0;
}
#site-footer .wpb_button, #site-footer .wpb_content_element, #site-footer ul.wpb_thumbnails-fluid > li {
	margin-bottom: 0;
}

.parcel-container {
	border:4px solid #999;
	margin-bottom: 30px;
	
}


.parcel-container h1 {
	font-size: 42px;
	margin-top:20px;
	margin-bottom: 0;
}

.parcel-container h2 {
	font-size: 32px;
	color: #009347;
	margin-top:0;	
}

.view-toolbar {
	display: flex;
	flex-wrap: wrap;
	background-color: #f3f6f9;
	margin: 2em 0;
	padding: 1em 0;

  position: relative;
}

.view-toolbar form {
	flex-wrap: wrap;
	display: flex;
}
.view-toolbar form input, .view-toolbar form select {
	color: #465b63;
	border-radius: 0px;
	transition: all .5s;
	background-color: #f7f7f7; /* makes the dropdown indicator invisible, commenting out for now */
	border: 1px solid #c4c4c4;
	height: 50px;
	font-size: 16px;
	margin: 0;
	padding: 12px;
	outline: none;
	display: inline;
	width: auto;
	margin-left: 10px;
	/* font-family: Rubik; */
	/* font-style: normal; */
}
.view-toolbar form select {
	padding-right: 35px;
}
.view-toolbar form input:focus {
	background-color: #fff;
	border-color: #919191;
	color: #919191;
}
.view-toolbar form .form-input {
	display: inline;
	margin: 15px 10px;
}

.view-buttons {
	display: flex;
	flex-direction: row;
	width: 30%;
	justify-content: space-between;
}
.view-button {
	display: flex;
	flex-direction: column;
	text-transform: uppercase;
	margin: 0 15px;
}
.view-button svg {
	fill: #858585;
	margin: auto;
	max-height: 51px;
	max-width: 51px;
}
.view-button.active svg {
	fill: #444;
}
.view-button {
	color: #858585;
	font-size: 14px;
}
.view-button.active {
	color: #444;
}
.view-button:hover {
	color: #444;
}
.view-button svg:hover {
	fill: #444;
}

.parcel-views {
	position: relative;
}

.parcel-list-view {
	width: 100%;
	height: 0;
	overflow: hidden;
}
@media screen and (max-width: 1000px) {
	.parcel-list-view {
		margin-left: 1em;
		margin-right: 1em;
	}
}
.parcel-list-view.view-show {
	width: auto;
	height: auto;
}

#map {
    height: 500px;
    width: 100%;
}

/* .parcel-views .parcel-list-view {
	position: absolute;
} */

.filter-button.search-button {
	border-color: #005284;
	background-color: #005284;
	color: #ffffff;
}
.filter-button.search-button:hover {
	background-color: #8cb7c7;
	border-color: #8cb7c7;
	color: #005284;
}

.filter-button, a.link-button {
		/* border-color: #005284; */
	color: #005284;
	background-color: transparent;
	text-transform: uppercase;
	font-weight: 500;

	font-size: 16px;
	padding: 17px 24px;
	border-radius: 0;

	transition: all .2s ease-in-out;
	border: 2px solid #005284;
	box-sizing: border-box;
	word-wrap: break-word;
	display: inline-block;

	text-align: center;
	vertical-align: middle;
	cursor: pointer;

	margin: 0 5px;

	align-self: center;
}
.filter-button:hover, a.link-button:hover {
	border-color: #005284;
	background-color: #005284;
	color: #ffffff;
}
.link-button.alt {
	border-color: #005284;
	background-color: #005284;
	color: #ffffff;
}
.link-button.alt:hover {
	background-color: #8cb7c7;
	border-color: #8cb7c7;
	color: #005284;
}
@media screen and (max-width: 479px) {
	.parcel-list-grid-view {
    grid-template-columns: repeat(1, 1fr) !important;
	}
}
@media screen and (min-width: 479px) and (max-width: 1000px) {
	.parcel-list-grid-view {
    grid-template-columns: repeat(2, 1fr) !important;
	}
}

.parcel-list-grid-view {
	grid-gap: 2em;
}
.parcel-list-grid-view.view-show {
	padding: 10px;
}
@media screen and (max-width: 1000px) {
	.parcel-list-grid-view {
		grid-gap: 1em;
	}
}

.parcel-list-grid-view .no-properties {
	font-family: Poppins;
	font-weight: 600;
	color: #005284;
	font-size: 20px;
	text-align: center;
}

.parcel-card {
	border: 1px solid #ebebeb;
	font-size: 14px;
	position: relative;
	height: 100%;
}
.parcel-card:hover {
	/* filter: drop-shadow(30px 10px 4px #4444dd); */
	box-shadow: 5px 5px 7px #ccc;
}
.parcel-card>* {
	margin: 0.5em 1em;
}
.parcel-image {
	margin: 0;
	height: 225px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.parcel-card img {
    /* min-width: 100%;
    min-height: 100%;
    height: auto;
    width: auto; */
		height: 100%;
    width: 100%;
    object-fit: cover;
		object-position: center;
}
.parcel-card p {
	color: #465b63;
}

.parcel-detail-main-columns {
	display: flex;
}
@media screen and (max-width: 1000px) {
	.parcel-detail-main-columns {
		flex-direction: column-reverse;
	}
}
.property-details.grid {
	grid-template-columns: repeat(2, 1fr);
	min-width: 450px;
	margin-right: 25px;
}
@media screen and (max-width: 479px) {
	.property-details.grid {
		min-width: 100%;
		margin-right: 0;
	}
}

.parcel-card .parcel-card-overlay, .parcel-detail-image-overlay {
	display: none;
}
.parcel-card .parcel-card-overlay.show, .parcel-detail-image-overlay.show {
	display: block;
	position: absolute;
	color: #ffffff;
	background-color: #005284;
	padding: 0.5em 1em;
	margin-left: 0;
	margin-top: 1.25em;
}
.parcel-card p span.parcel-card-label {
	font-weight: bold;
}

.parcel-detail-header {
	margin-top: 3em;
	margin-bottom: 1em;
	line-height: 1;
}
@media screen and (max-width: 479px) {
	.parcel-detail-header {
		margin: 1.5em;
	}
}
.parcel-detail-header .link-button {
	position: relative;
	margin-top: 0;
	width: -webkit-fill-available;
}
@media screen and (min-width: 479px) {
	.parcel-detail-header .link-button {
		/* position: absolute; */
		/* margin: 0; */
		width: auto;
	}
}
@media screen and (min-width: 1200px) {
	.parcel-detail-header .link-button {
		position: absolute;
		margin: 0;
		width: auto;
	}
}
.parcel-detail-header>p {
	font-size: 48px;
	font-weight: bold;
	/* text-align: center; */
}
@media screen and (max-width: 479px) {
	.parcel-detail-header>p {
		font-size: 42px;
	}
}
.parcel-detail-detail-heading {
	align-items: baseline;
	/* position: relative; */
	min-height: 100px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}
@media screen and (max-width: 479px) {
	.parcel-detail-detail-heading {
		flex-direction: column;
		/* align-items: center; */
	}
}
.parcel-detail-detail-heading>p {
	font-size: 48px;
	/* text-align: center; */
	/* margin-top: 2em; */
	/* margin-bottom: 1em; */
}
@media screen and (max-width: 479px) {
	.parcel-detail-detail-heading>p {
		font-size: 32px;
		margin: 0.5em;
		/* margin-top: 0.5em; */
		/* margin-left: 0.5em; */
    /* margin-right: 0.5em; */
	}
}
.parcel-detail-detail-heading .parcel-detail-detail-heading-links {
	/* position: absolute; */
	/* right: 0; */
	/* top: 0; */
	display: flex;
	/* align-content: center; */
	align-items: center;
}
@media screen and (max-width: 479px) {
	.parcel-detail-detail-heading .parcel-detail-detail-heading-links {
		flex-direction: column;
		align-items: baseline;
		width: 100%;
	}
	.parcel-detail-detail-heading .parcel-detail-detail-heading-links a {
		margin-left: 1.5em;
	}
	/* .parcel-detail-detail-heading .parcel-detail-detail-heading-links a.link-button { */
		/* margin-right: unset; */
		/* margin: 0 auto; */
	/* } */
}

.parcel-detail-detail-heading .parcel-detail-detail-heading-links a.link-button {
	margin-right: 0;
}
@media screen and (max-width: 479px) {
	.parcel-detail-detail-heading .parcel-detail-detail-heading-links a.link-button {
		margin: 1.5em;
		width: 90%;
	}
}


.parcel-detail-header .row {
	flex-direction: column;
	width: 100%;
	margin-left: 1em;
	margin-right: 1em;
}
@media screen and (min-width: 640px) {
	.parcel-detail-header .row {
		flex-direction: row;
		width: 50%;
		margin: 0 auto;
	}
}

.parcel-detail-images-wrapper {
	width: 100%;
	overflow: auto;
}

.parcel-detail-main-image>img {
	width: 100%;
}

/* div.loop { */
	/* height: 150px; */
	/* margin: 2em 0; */
/* } */

.glightbox {
	cursor: pointer;
}

.mySwiper {
	position: relative;
	width: 100%;
	overflow: hidden;
}
@media screen and (max-width: 1000px) {
	.mySwiper {
		margin: 0 1em;
	}
}
.swiper {
	width: 100%;
	height: 100%;
	position: relative;
}

.swiper-slide {
	height: 150px;
	margin: 2em 0;

	text-align: center;
	font-size: 18px;
	background: #fff;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	/* width: 100%; */
	height: 100%;
	object-fit: cover;
}

.parcel-detail-label, .parcel-detail-labels {
	font-weight: bold;
}
@media screen and (max-width: 1000px) {
	.additional-information {
		margin: 0 1em;
	}
}

#parcel-detail-map {
	margin-top: 2em;
	margin-bottom: 2em;
}

.interested-in-buying-wrapper {
	background-color: #f3f6f9;
	margin: 2em 0;
	padding: 1em 0;

  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

	text-align: center;

	margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
	.interested-in-buying-wrapper {
		padding: 1em;
	}
}
.interested-in-buying-wrapper>div {
	margin: 2.5em auto;
}
.interested-in-buying-wrapper .interested-in-buying-header {
	margin-bottom: 1.5em;
	font-size: 48px;
	line-height: 1;
}

div.center-content {
	margin: 0 auto;
	text-align: center;
}
a.link-button {
	margin: 1.5em;
	min-width: 290px;
}
@media screen and (max-width: 479px) {
	a.link-button {
		margin: 1.5em auto;
		min-width: 75%;
	}
}

.disclaimer-text {
	font-size: 12px;
	max-width: 75%;
}
