/*
Theme Name: Pageking Child Theme
Theme URI: https://www.pageking.nl
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: Pageking theme
Author URI: https://www.pageking.nl
template: bb-theme
*/

/* Add your custom styles here... */

.fl-animated.fl-fade-up {
  animation: fl-fade-up 1s ease;
  -webkit-animation: fl-fade-up 1s ease;
}
@-webkit-keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fl-animated.fl-fade-down {
  animation: fl-fade-down 1s ease;
  -webkit-animation: fl-fade-down 1s ease;
}
@-webkit-keyframes fl-fade-down {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-down {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.archive-container {
  padding: 0 1.25rem;
  width: 100%;
  margin: 103px auto auto;
  max-width: 1100px;
}

.archive__title {
  padding-top: 1rem;
  font-weight: 700;
}

.form {
  padding-top: 1.5rem;
}

.search > p {
  color: #ed694b;
}

.search__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.search__links > a {
  padding: 0.25rem 1rem;
  border-radius: 50px;
  color: white;
  background-color: #ed694b;
}

.search__links > a.active {
  background-color: #8a1328;
}

.search__fields {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.form__select {
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
}

.search__settings {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.display,
.datesort {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.datesort {
  gap: 2rem;
}

.datesort__item > a {
  color: #a8a8a8;
}

.datesort__item > a.active,
.display__button.active {
  color: #ed694b;
}

.display__icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2em;
}

.card {
  width: 100%;
  border: 0;
}

.card__inner {
  position: relative;
  margin: 0 0 1rem 0;
  background-color: white;
  transition: 0.22s ease-out;
  transition-property: transform, box-shadow;
  border: 2px solid var(--color-lightgrey);
  border-bottom-right-radius: 3rem;
}

.card__status {
  position: absolute;
  padding: 0.275rem 0.675rem;
  font-size: 1rem;
  color: white;
  background-color: #ed694b;
  z-index: 1;
}

.card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.card__photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  aspect-ratio: 16/9;
}

.card__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card__detail {
  padding: 0.375rem 0 0 0;
}

.card__detail > div {
  font-size: 1rem;
  color: #ed694b;
  margin-bottom: 0.24rem;
}

.card__detail > h3 {
  font-family: 'radikal-bold', Verdana, Arial, sans-serif;
  font-size: 1.5rem;
  color: #ed694b;
  margin-bottom: 0.125rem;
}

.card__detail > p {
  color: #a8a8a8;
  font-size: 0.875rem;
}

.form .pagination {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.no-results {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .search__fields,
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .search__settings {
    flex-direction: row;
  }

  .datesort {
    flex-grow: 1;
  }

  .display {
    align-self: flex-end;
  }

  .search__fields,
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.single-container {
  overflow-x: visible;
}

.single__block {
  margin-top: 3rem;
}

.photos {
  position: relative;
}

.photos__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.photos__show {
  position: absolute;
  display: block;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  background-color: white;
  bottom: 2rem;
  right: 1rem;
}

.photos__show:hover {
  color: white;
  background-color: #8a1328;
}

.photos__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
}

.photos__image {
  position: relative;
  aspect-ratio: 16/9;
}

.photos__image:not(:first-child) {
  display: none;
}

.details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: start;
  font-weight: 500;
}

.details__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}

.details__item > img {
  margin-bottom: 1rem;
  height: 40px;
  width: 40px;
}

.details__item span {
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #ed694b;
}

.details__item span:last-child {
  font-weight: 700;
}

.description__content {
  position: relative;
  max-height: 300px;
  overflow: hidden;
  margin-top: 1rem;
  transition: all 300ms ease;
}

.description__fade {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding-top: 5rem;
  background-image: linear-gradient(to bottom, transparent 10%, white 90%);
  transition: max-height 0.15s ease-out;
}

.description__more {
  display: inline-block;
  padding: 3rem 0;
}

.table {
  display: table;
  width: 100%;
  margin-top: 2.5rem;
  margin-left: 0.5rem;
  border-collapse: collapse;
  table-layout: fixed;
}

.table__title {
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.table__row {
  display: table-row;
  border-top: 1px solid #bcbcbc;
  border-bottom: 1px solid #bcbcbc;
}

.table__cell {
  display: table-cell;
  padding: 0.375rem;
}

.brochures__list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.875rem;
}

.brochures__item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 0.25rem;
  box-shadow: 0 10px 20px rgba(0, 44, 81, 0.1);
}

.brochures__detail {
  flex-grow: 1;
}

.brochures__download {
  padding: 1rem;
}

.map {
  width: 100%;
}

@media (min-width: 720px) {
  .brochures__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .photos__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .photos__image {
    grid-column: span 4;
  }

  .photos__image:first-child {
    grid-column: span 8;
    grid-row: span 3;
  }

  .photos__image:nth-of-type(n + 2) {
    display: unset;
  }

  .photos__image:nth-of-type(n + 5) {
    display: none;
  }
}

/* Google Maps */

.search-map {
  margin: 0 0.5em 2em 0.5em;
}

#google-map {
  margin-top: 1rem;
  width: 100%;
  height: 600px;
  border-radius: 4px;
  box-shadow: 0 0 4px 0 #999;
}

#google-map .gm-style-iw
/* Info Windows */

a {
  font-size: 120%;
  font-weight: bold;
  text-decoration: none;
}

#google-map .gm-style-iw img {
  float: left;
}

#google-map .gm-style-iw .address {
  float: left;
  margin-left: 1em;
  min-width: 200px;
  line-height: 1.5;
}

/* View helpers */

.archive-container .visible-map {
  display: none;
}

.archive-container.map .visible-map {
  display: block;
}

/* Loading View styles */

.search-load-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  display: none;
}

.search-loading .search-load-overlay {
  display: block;
}

.search-loading .results-container {
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.comparables {
  margin-top: 1rem;
}

.comparables.owl-carousel {
  overflow: visible;
}

.comparables .owl-stage-outer {
  overflow: initial;
}

.comparables .owl-item {
  opacity: 0.3;
  transition: all 300ms;
}

.comparables .owl-item.active {
  opacity: 1;
}







.status_fields{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}