/*
Theme Name:         Cuyahoga Land Bank
Author:             Visia Marketing
License:            MIT License
License URI:        http://opensource.org/licenses/MIT
*/



/* ============================= */
/* 1. TOOLBAR & FILTER STYLES   */
/* ============================= */

.view-toolbar {
	display: flex;
	flex-wrap: wrap;
	background-color: #f3f6f9;
	background-color: #031892;
	margin: 0 0 20px;
	padding: 20px;
	position: relative;
}

.view-toolbar form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.view-toolbar label {
	color: #fff;
}

.view-toolbar form input,
.view-toolbar form select {
	color: #031892;
	border-radius: 0px;
	transition: all .5s;
	background-color: #f7f7f7;
	border: 1px solid #c4c4c4;
	height: 30px;
	font-size: 15px;
	margin: 0;
	padding: 8px;
	outline: none;
	display: inline;
	width: auto;
	margin-left: 10px;
}

.view-toolbar form select {
	padding-right: 25px;
}

.view-toolbar form input:focus {
	background-color: #fff;
	border-color: #919191;
	color: #919191;
}

.view-toolbar form .form-input {
	display: inline;
	margin: 15px 10px;
}

/* Filter Buttons */
.filter-button.search-button,
.filter-button,
a.link-button {
	margin-right: 10px;
	margin-top: 0;
}



/* View Buttons */
.view-buttons {
	display: flex;
	flex-direction: row;
	width: 25%;
	justify-content: space-between;
}

.view-button {
	display: flex;
	flex-direction: column;
	text-transform: uppercase;
	margin: 0 15px;
	color: #fff;
	font-size: 14px;
}

.view-button svg {
	fill: #fff;
	margin: 0 auto;
	max-height: 21px;
	max-width: 21px;
}

.view-button.active {
	color: #1475d7;
}

.view-button.active svg {
	fill: #1475d7;
}

.view-button:hover {
	color: #fff;
}

.view-button svg:hover {
	fill: #1475d7;
}

/* ============================= */
/* 2. PARCEL VIEWS / LIST TABLE */
/* ============================= */

.parcel-views {
	position: relative;
}

.parcel-views .no-properties {
	font-weight: 600;
	font-size: 20px;
	text-align: center;
}

.parcel-list-view {
	width: 100%;
	height: 0;
	overflow: hidden;
}

.parcel-list-view.view-show {
	width: auto;
	height: auto;
}

.parcel-list-view table thead {
	background: rgb(3 24 146 / 4%);
	color: #031892;
}

.parcel-list-view table tbody tr:nth-child(even) {
	background: rgb(3 24 146 / 4%);
	color: #031892;
}

.parcel-list-view table a {
	color: #1475d7;
	font-weight: 500;
	text-decoration: underline;
}

@media screen and (max-width: 1000px) {
	.parcel-list-view {
		margin-left: 1em;
		margin-right: 1em;
	}
}

/* ============================= */
/* 3. PARCEL GRID VIEW & CARDS  */
/* ============================= */

.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;
	}
}

@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-card {
	border: 1px solid rgb(3 24 146 / 4%);
	font-size: 14px;
	position: relative;
	height: 100%;
}

.parcel-card:hover {
	/*box-shadow: 0 0 3px 7px #ccc;*/
  /*border: 1px solid rgb(3 24 146 / 25%);*/
  border: 1px solid #F1983C;
}

.parcel-card>* {
	margin: 12px;
}

.parcel-card > div:first-child {
	margin: 0;
}

.parcel-image {
	margin: 0;
	height: 225px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.parcel-card img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.parcel-card p {
	
}

.parcel-card p span.parcel-card-label {
	font-weight: bold;
}

.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: #031892;
	padding: 0.5em 1em;
	margin-left: 0;
	margin-top: 1.25em;
}

/* ============================= */
/* 4. PARCEL DETAIL PAGES       */
/* ============================= */

.parcel-detail-header {
	margin-top: 0;
	margin-bottom: 1em;
}

.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 {
		width: auto;
	}
}

.parcel-detail-header>p {
	font-size: 48px;
	font-weight: bold;
}

@media screen and (max-width: 479px) {
	.parcel-detail-header,
	.parcel-detail-header>p {
		margin: 0;
		font-size: 42px;
	}
}

.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-detail-heading {
	align-items: baseline;
	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;
	}
}

.parcel-detail-detail-heading>p {
	font-size: 48px;
}

@media screen and (max-width: 479px) {
	.parcel-detail-detail-heading>p {
		font-size: 32px;
		margin: 0.5em;
	}
}

.parcel-detail-detail-heading .parcel-detail-detail-heading-links {
	display: flex;
	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: 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-main-columns {
	display: flex;
}

@media screen and (max-width: 1000px) {
	.parcel-detail-main-columns {
		flex-direction: column-reverse;
	}
}

.property-details.grid {
	display: 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-detail-label,
.parcel-detail-value,
.parcel-detail-labels {
	border-bottom: 1px solid rgb(3 24 146 / 23%);
	padding: .6rem 0;
	margin: 0;
	font-weight: bold;
}

.parcel-detail-value {
	font-weight: normal;
}

.parcel-detail-images-wrapper {
	width: 100%;
	overflow: auto;
}

.parcel-detail-main-image>img {
	width: 100%;
}

#parcel-detail-map {
	margin-top: 2em;
	margin-bottom: 2em;
}

.additional-information {
	margin: 1rem 0;
}

.additional-information {
	margin: 1rem 0 3rem;
}

.additional-information .parcel-detail-label,
.additional-information .parcel-detail-value,
.additional-information .parcel-detail-labels {
  border-bottom: none;
}

@media screen and (max-width: 1000px) {
	.additional-information {
		
	}
}

.center-content.link-buttons {
  padding: 3rem 0;
}

/* ============================= */
/* 5. SHARED / GENERAL STYLES   */
/* ============================= */

#map {
	height: 500px;
	width: 100%;
}

.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;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	height: 100%;
	object-fit: cover;
}

.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%;
}

.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;
}



.carousel-shortcode {
    width: 100%;
    margin: 0 auto;
}
.carousel-shortcode .slide {
    text-align: center;
    aspect-ratio: 4 / 2.5; 
}
.carousel-shortcode img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-shortcode .slick-arrow {
    position: absolute;
    top: calc(100% - 3.5rem);
    left: 0;
    border: 2px solid #031792;
    width: 2.5rem;
    height: 2.5rem;
    margin-top: 0;
    z-index: 99;
    background: #fff;
}
.carousel-shortcode .slick-next{
  left: 5rem;
}
.carousel-shortcode .slick-next:before {
    content: "\f061";
    font-family: "FontAwesome";
    color: #031792;
}
.carousel-shortcode .slick-prev{
  left: 1.5rem;
}
.carousel-shortcode .slick-prev:before{
    content: "\f060";
    font-family: "FontAwesome";
    color: #031792;
}



