@import url(../assets/fonts/icomoon/style.css);

html{
  --proprius-accent-color: #FF0000;
  --proprius-accent-contrast-color: #FFFFFF;
  --proprius-border-color: #DDD;
  --proprius-contrast-color: #FFFFFF;
  --proprius-color: #141313;
}

/*
.single-property .property-header .property-price{
  background-color: var(--proprius-color);
  color: var(--proprius-contrast-color);
  padding: 0 .25em;
}
*/

.proprius-wrapper {
	max-width: 960px;
	margin: auto;
}

.proprius-wrapper .room-details:empty, .proprius-wrapper .property-rooms-details[data-units="1"] .room-unit {
	display: none;
}

.proprius-wrapper .property-rooms-details tbody tr td {
	background-color: transparent;
	border-top: none;
	border-bottom: none;
}

.proprius-wrapper .property-rooms-details tbody tr td.room-unit,
  .proprius-wrapper .property-rooms-details tbody tr td.room-unit ~ td,
  .proprius-wrapper .property-rooms-details tbody tr td.room-level,
  .proprius-wrapper .property-rooms-details tbody tr td.room-level ~ td {
	border-top: solid 1px var(--proprius-border-color);
}

.proprius-wrapper .property-rooms-details tbody tr:last-child {
	border-bottom: solid 1px var(--proprius-border-color);
}

.proprius-wrapper .property-characteristic {
	break-inside: avoid;
}

.proprius-wrapper .property-characteristic .property-characteristic-type::after, .proprius-wrapper .property-evaluation .property-evaluation-label::after, .proprius-wrapper .property-expense .property-expense-label::after {
	content: ":";
}

.proprius-wrapper .property-characteristic .property-subcharacteristic:not(:last-child)::after {
	content: ", ";
}

.proprius-wrapper .property-characteristic .property-subcharacteristic-number::before {
	content: "(";
}

.proprius-wrapper .property-characteristic .property-subcharacteristic-number::after {
	content: ")";
}

.proprius-wrapper .property-money .property-money-currency {
	font-size: .6em;
	vertical-align: super;
}

.proprius-wrapper .property-expense {
	display: flex;
	justify-content: space-between;
}

.proprius-wrapper .property-expense .property-expense-info {
	display: none;
}

.proprius-wrapper .property-evaluation > div {
	display: flex;
	justify-content: space-between;
}

.proprius-wrapper .property-archive-header {
	margin: 10px;
}

.proprius-wrapper .property-grid {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}

.proprius-wrapper .property-grid .proprius-property {
	background-color: var(--proprius-contrast-color);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	flex-basis: calc(33.3333% - 20px);
	max-width: 450px;
	display: flex;
	flex-direction: column;
	padding: 10px;
	margin: 10px;
	transform: scale(1);
	transition: box-shadow 500ms, transform 500ms;
}

@media screen and (max-width: 767px) {
	.proprius-wrapper .property-grid .proprius-property {
		flex-basis: calc(50% - 20px);
	}
}

@media screen and (max-width: 499px) {
	.proprius-wrapper .property-grid .proprius-property {
		flex-basis: 100%;
	}
}

.proprius-wrapper .property-grid .property:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
	z-index: 5;
}

.proprius-wrapper .property-grid .proprius-property .property-address {
	color: inherit;
	display: flex;
	align-items: center;
	font-size: .8em;
	line-height: 1.2;
	min-height: 2.4em;
	margin-bottom: 8px;
}

.proprius-wrapper .property-grid .proprius-property .property-address::before {
	border-bottom: solid 2px var(--proprius-accent-color);
	color: var(--proprius-accent-color);
	font-size: 1.5em;
	margin-right: .25em;
}

.proprius-wrapper .property-grid .proprius-property .property-thumbnail img {
	display: block;
}

.proprius-wrapper .property-grid .proprius-property .property-price {
	background-color: var(--proprius-accent-color);
	color: var(--proprius-accent-contrast-color);
	line-height: 1.2;
	padding: 4px 8px;
}

.proprius-wrapper .property-grid .proprius-property .property-price .property-money {
	font-weight: bold;
}

.proprius-wrapper .property-grid .proprius-property .property-price a {
	color: inherit;
}

.proprius-wrapper .property-grid .proprius-property .property-description {
	padding-top: 10px;
	line-height: 1.2;
}

.proprius-wrapper .property-grid .proprius-property .property-id {
	border-top: solid 1px var(--proprius-border-color);
	border-bottom: solid 1px var(--proprius-border-color);
	color: inherit;
	line-height: 1.6;
	margin-top: 8px;
}

.proprius-wrapper .property-grid .proprius-property .property-address:hover,
  .proprius-wrapper .property-grid .proprius-property .property-id:hover {
	color: var(--proprius-accent-color);
}

.proprius-wrapper .property-grid .proprius-property .property-view-details {
	color: var(--proprius-accent-color);
	flex-grow: 1;
	font-weight: bold;
	padding: 10px 0;
	text-transform: uppercase;
}

.proprius-wrapper .property-grid .proprius-property .property-view-details:hover {
	color: inherit;
}

.proprius-wrapper .property-grid .proprius-property .property-meta:empty {
	display: none;
}

.proprius-wrapper .property-grid .proprius-property .property-meta {
	background-color: #F9F9F9;
	border-top: solid 1px transparent;
	border-color: var(--proprius-border-color);
	margin: 0 -10px -10px;
	padding: 10px;
}

.proprius-wrapper .property-grid .proprius-property .property-meta .proprius-separator {
	display: none;
}

.proprius-wrapper .property-grid .proprius-property .property-meta span:not(:last-child) {
	margin-right: 1.5em;
}

.proprius-wrapper .property-grid .proprius-property .property-meta span::before {
	margin-right: .25em;
	vertical-align: middle;
}

.proprius-wrapper .property-grid + .navigation.pagination .nav-links {
	display: flex;
	justify-content: center;
	margin: 10px;
}

.proprius-wrapper .property-grid + .navigation.pagination .nav-links > * {
	border-radius: 2px;
	color: inherit;
	padding: 0px 12px;
}

.proprius-wrapper .property-grid + .navigation.pagination .nav-links > a:not(.prev):not(.next):hover {
	color: var(--proprius-accent-color);
}

.proprius-wrapper .property-grid + .navigation.pagination .next:hover,
  .proprius-wrapper .property-grid + .navigation.pagination .prev:hover,
  .proprius-wrapper .property-grid + .navigation.pagination .nav-links .current {
	border-color: var(--proprius-accent-color);
	background-color: var(--proprius-accent-color);
	color: var(--proprius-accent-contrast-color);
	font-weight: bold;
}

.proprius-wrapper .property-grid + .navigation.pagination .next,
  .proprius-wrapper .property-grid + .navigation.pagination .prev {
	border: 1px solid transparent;
	border-color: var(--proprius-border-color);
	color: var(--proprius-accent-color);
	font-size: 0;
	font-weight: bold;
}

.proprius-wrapper .property-grid + .navigation.pagination .next::before {
	font-size: 1rem;
	content: "\203A";
}

.proprius-wrapper .property-grid + .navigation.pagination .prev::before {
	font-size: 1rem;
	content: "\2039";
}

.single-proprius-property .proprius-wrapper .hentry.proprius-property {
	display: grid;
	grid-template-rows: repeat(3, auto);
	grid-template-columns: repeat(4, 20%);
}

.single-proprius-property .proprius-wrapper .hentry.proprius-property > * {
	padding: 10px;
}

.single-proprius-property .property-header {
	grid-column: 1 / span 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.single-proprius-property .property-header .property-address {
	flex-basis: 100%;
	font-size: 1.25em;
	margin: .25em 0;
}

.single-proprius-property .property-header .property-address .property-unit::before {
	content: "#";
}

.single-proprius-property .property-header .property-address .property-unit::after {
	content: " - ";
}

.single-proprius-property .property-header .property-address .property-street::after {
	content: ", ";
}

.single-proprius-property .property-header .property-price {
	font-size: 1.5em;
}

.single-proprius-property .property-header a {
	color: inherit;
	border-bottom: dotted 1px var(--proprius-color);
}

.single-proprius-property .property-header a:hover {
	color: var(--proprius-accent-color);
	border-bottom-color: var(--proprius-accent-color);
}

.single-proprius-property .property-gallery {
	grid-column: 1 / span 3;
}

.single-proprius-property .property-gallery .swiper-button-next,
  .single-proprius-property .property-gallery .swiper-button-prev {
	color: var(--proprius-contrast-color);
	text-shadow: 0 0 10px var(--proprius-color);
}

.single-proprius-property .property-gallery .property-gallery-thumbnails {
	margin-top: 10px;
}

.single-proprius-property .property-gallery .property-gallery-thumbnails .property-gallery-image {
	cursor: pointer;
}

.single-proprius-property .property-gallery .property-gallery-image img {
	display: block;
}

.single-proprius-property .property-gallery .property-gallery-image .property-gallery-image-description,
  .single-proprius-property .property-gallery .property-gallery-image .property-gallery-image-zoom {
	position: absolute;
	background-color: var(--proprius-color);
	color: var(--proprius-contrast-color);
}

.single-proprius-property .property-gallery .property-gallery-image .property-gallery-image-zoom:hover {
	position: absolute;
	background-color: var(--proprius-accent-color);
	color: var(--proprius-accent-contrast-color);
}

.single-proprius-property .property-gallery .property-gallery-image .property-gallery-image-zoom {
	top: 10%;
	left: 0;
	padding: 0 .5em 0 .25em;
	border-top-right-radius: .75em;
	border-bottom-right-radius: .75em;
}

.single-proprius-property .property-gallery .property-gallery-image .property-gallery-image-zoom::before {
	content: "\e987";
}

.single-proprius-property .property-gallery .property-gallery-image .property-gallery-image-description {
	bottom: 0;
	right: 0;
	padding: 0 .25em;
	font-size: .75em;
}

.single-proprius-property .property-description {
	grid-column: span 2;
}

.single-proprius-property .property-remarks {
	margin-bottom: 10px;
}

.single-proprius-property .property-room-summary {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.single-proprius-property .property-room-summary > div::before {
	margin-right: .5em;
}

.single-proprius-property .property-dimensions .property-dimension, .single-proprius-property .property-evaluation > * {
	border-bottom: var(--proprius-border-color) dotted 1px;
	display: flex;
}

.single-proprius-property .property-dimensions .property-dimension .property-dimension-label {
	flex-grow: 1;
}

.single-proprius-property .property-dimensions .property-dimension .property-dimension-unit {
	padding-left: .25em;
}

.single-proprius-property .property-details {
	grid-column: span 5;
}

.single-proprius-property .tabs [name="active_tab"] {
	display: none;
}

.single-proprius-property .tabs .tab-content {
	display: none;
}

.single-proprius-property .tabs .tab-name {
	background-color: var(--proprius-contrast-color);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-weight: bold;
	padding: 10px;
	margin-bottom: 10px;
	transform: scale(1);
	transition: box-shadow 500ms, transform 500ms;
}

.single-proprius-property .tabs .tab-name:hover {
	transform: translateY(-4px) scale(1.01);
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
	color: var(--proprius-accent-color);
}

.single-proprius-property .tabs .tab-name:hover:before {
	border-left-color: var(--proprius-accent-color);
}

.single-proprius-property .tabs .tab-name::before {
	content: "";
	width: 0;
	height: 0;
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
	border-left: 6px solid var(--proprius-color);
	margin: 0 6px;
	border-radius: 2px;
	transform-origin: center;
}

.single-proprius-property .tabs [name="active_tab"]:checked + .tab-name::before {
	transform: rotate(90deg);
}

.single-proprius-property .tabs .tab-content {
	padding: 10px;
	margin-top: -10px;
	margin-left: 18px;
}

.single-proprius-property .tabs [name="active_tab"]:checked + .tab-name + .tab-content {
	display: block;
}

.proprius-wrapper .proprius-property [class*="rooms-washrooms"]::before,
  .proprius-wrapper .proprius-property [class*="rooms-bathrooms"]::before,
  .proprius-wrapper .proprius-property [class*="rooms-total"]::before,
  .proprius-wrapper .proprius-property [class*="rooms-bedrooms-total"]::before,
  .proprius-wrapper .proprius-property .property-gallery .property-gallery-image .property-gallery-image-zoom::before,
  .proprius-wrapper .proprius-property .property-address::before,
  .proprius-wrapper .proprius-property .property-view-details::after,
  .proprius-wrapper .proprius-property .property-meta span::before,
  .proprius-wrapper .property-category > a::before {
    /* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
    /* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.proprius-wrapper .proprius-property [class*="rooms-washrooms"]::before {
	content: "\e900";
}

.proprius-wrapper .proprius-property [class*="rooms-bathrooms"]::before {
	content: "\e901";
}

.proprius-wrapper .proprius-property .property-address::before {
	content: "\e947";
}

.proprius-wrapper .proprius-property [class*="rooms-total"]::before {
	content: "\ea13";
}

.proprius-wrapper .proprius-property [class*="rooms-bedrooms-total"]::before {
	content: "\e902";
}

.proprius-wrapper .proprius-property .property-view-details::after {
	content: "\ea34";
}

.proprius-wrapper .property-category > a[href*="_proprius_code=C"]::before {
	content: "\e904";
}

.proprius-wrapper .property-category > a[href*="_proprius_code=F"]::before {
	content: "\e906";
}

.proprius-wrapper .property-category > a[href*="_proprius_code=I"]::before {
	content: "\e907";
}

.proprius-wrapper .property-category > a[href*="_proprius_code=M"]::before,
  .proprius-wrapper .property-category > a[href*="_proprius_code=P"]::before {
	content: "\e905";
}

.proprius-wrapper .property-category > a[href*="_proprius_code=R"]::before {
	content: "\e909";
}

.proprius-wrapper .property-category > a[href*="_proprius_code=T"]::before {
	content: "\e908";
}