:root {
	--primary: #1a202c;
	--primary-dark: #111827;
	--nav-bg: #2C3549;
	--accent: #38b2ac;
	--accent-hover: #319795;
	--accent-soft: rgba(56, 178, 172, 0.1);
	--text-main: #2d3748;
	--text-muted: #718096;
	--bg-main: #f7fafc;
	--bg-card: #ffffff;
	--border-color: #e2e8f0;
	--radius: 12px;
	--radius-lg: 24px;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--font-body: 'Inter', sans-serif;
	--font-heading: 'Montserrat', sans-serif;
	--hero-bg: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
	--glass-bg: rgba(255, 255, 255, 0.85);
	--glass-border: rgba(255, 255, 255, 0.3);
}

/* horizontal-search hero styles are defined in the HORIZONTAL SEARCH section below */

.horizontal-search h1 {
	color: white !important;
	font-size: 3.8rem;
	margin-bottom: 25px;
	font-weight: 800;
	letter-spacing: -1px;
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.horizontal-search #search_area {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 50px;
	border-radius: var(--radius-lg);
	max-width: 1100px;
	margin: 50px auto 0;
	border: 1px solid var(--glass-border);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

article.item {
	background: var(--bg-card);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid var(--border-color);
	margin-bottom: 30px;
	padding: 0 !important;
	position: relative;
}

article.item:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
}

article.item .picture {
	height: 240px;
	overflow: hidden;
	position: relative;
}

article.item .picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

article.item:hover .picture img {
	transform: scale(1.08);
}

article.item .card-info {
	padding: 25px;
}

article.item li.title a {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--primary);
	display: block;
	margin-bottom: 12px;
	line-height: 1.2;
}

article.item .price-tag {
	background: var(--accent);
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
	color: white;
	padding: 8px 16px;
	border-radius: 8px;
	font-weight: 700;
	display: inline-block;
	margin-top: 15px;
	box-shadow: 0 4px 12px var(--accent-soft);
}

.scrollbar {
	overflow-y: auto;
	overflow-x: hidden;
}

.scrollbar:not(.scrollbar_no-padding) {
	padding-right: 10px;
}

.scrollbar_horizontal {
	overflow-y: hidden;
	overflow-x: auto;
}

.scrollbar_horizontal:not(.scrollbar_no-padding) {
	padding-right: 0;
	padding-bottom: 10px;
}

.scrollbar::-webkit-scrollbar {
	background: rgba(0, 0, 0, 0.1);
	width: 4px;
	height: 4px;
	border-radius: 2px;
}

.scrollbar::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background: rgba(56, 178, 172, 0.4);
}

.scrollbar:hover::-webkit-scrollbar-thumb {
	background: rgba(56, 178, 172, 0.8);
}

article.item .title-row {
	margin-bottom: 8px;
}

article.item .listing-title {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 1.15rem;
	color: var(--primary);
	line-height: 1.3;
}

article.item .fields-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 15px;
}

article.item .field-value {
	font-size: 0.85rem;
	color: var(--text-muted);
	background: var(--bg-main);
	padding: 2px 8px;
	border-radius: 4px;
}

article.item .bottom-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
	border-top: 1px solid var(--border-color);
}

article.item .price-tag {
	margin-top: 0;
	font-size: 1.1rem;
}

article.item .favorite.add {
	cursor: pointer;
	width: 20px;
	height: 20px;
	background: url('../img/gallery.png') -8px -436px no-repeat;
	opacity: 0.6;
	transition: opacity 0.2s ease;
}

article.item .favorite.add:hover {
	opacity: 1;
}

.table-cell {
	display: flex;
}

.table-cell.wide-field {
	flex-direction: column;
}

.table-cell:not(.small)>* {
	line-height: 26px;
}

.table-cell>.name {
	color: #888888;
	font-size: 1em;
	word-wrap: break-word;
}

.table-cell>.name:after {
	content: ':';
}

.table-cell>.name>div {
	display: inline;
}

.table-cell:not(.wide-field)>.name {
	min-width: 35%;
	flex-basis: 35%;
}

@media screen and (min-width: 768px) {
	.table-cell:not(.wide-field)>.name {
		min-width: 160px;
		flex-basis: 160px;
	}
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
	.table-cell:not(.wide-field)>.name {
		min-width: 120px;
		flex-basis: 120px;
	}
}

.table-cell:not(.wide-field)>.name+.value {
	padding-left: 8px;
}

.table-cell.small {
	line-height: 22px;
}

@media screen and (min-width: 768px) {
	.table-cell.small:not(.wide-field)>.name {
		min-width: 110px;
		flex-basis: 110px;
	}
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
	.table-cell.small:not(.wide-field)>.name {
		min-width: 85px;
		flex-basis: 85px;
	}
}

.table-cell>.value {
	font-size: 1em;
	word-wrap: break-word;
	overflow: hidden;
}

.table-cell .checkboxes>* {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.table-cell .checkboxes>*:not(.active) {
	color: #9e9e9e;
	text-decoration: line-through;
}

.table-cell .checkboxes>* svg {
	width: 17px;
	height: 12px;
}

.table-cell .checkboxes>*:not(.active) svg {
	visibility: hidden;
}

.table-cell .checkboxes>*.active svg {
	fill: red;
}

.listing-fields>div:not(.no-group) div.body>div>.table-cell.textarea:only-child>.name {
	display: none;
}

/*** COMMON STYLES ***/
body,
html {
	height: 100%;
}

body {
	margin: 0px auto;
	background: var(--bg-main);
	font-size: 15px;
	color: var(--text-main);
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.6;
	overflow: visible !important;
	/* Critical for sticky sidebar */
}

input,
select,
option,
p,
form,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
td,
img,
table {
	margin: 0;
	padding: 0;
	border: 0;
}

::selection {
	background: #707070;
	color: white;
}

::-moz-selection {
	background: #707070;
	color: white;
}

.clearfix:before,
.clearfix:after {
	display: table;
	content: " ";
}

.clearfix:after {
	clear: both;
}

.clearfix {}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	font-family: var(--font-heading);
	color: var(--text-muted);
}

ul li {
	list-style: none;
}

body.static-page section#controller_area ul li,
section.side_block.html-block ul li,
section.content_block.html-block ul li {
	list-style: inherit;
}

body.static-page section#controller_area ul,
body.static-page section#controller_area ol,
section.side_block.html-block ul,
section.side_block.html-block ol,
section.content_block.html-block ul,
section.content_block.html-block ol {
	padding: 10px 0 10px 40px;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

table.fixed {
	table-layout: fixed;
}

img {
	vertical-align: middle;
}

label {
	user-select: none;
}

b,
strong {
	font-weight: 600;
}

.shrink-fix {
	min-width: 0;
}

.show {
	display: block !important;
}

.grid-icon-fill,
.details-icon-fill {
	fill: #4bb088 !important;
}

.header-usernav-icon-fill {
	fill: #f2f2f2 !important;
}

.hide {
	display: none;
}

.hidden {
	visibility: hidden;
}

.invisble {
	opacity: 0;
}

.clear {
	clear: both;
}

.fleft {
	float: left;
}

.fright {
	float: right;
}

.ralign {
	text-align: right !important;
}

.lalign {
	text-align: left !important;
}

.align-center {
	text-align: center;
}

.relative {
	position: relative;
}

.nowrap {
	white-space: nowrap;
}

/* links */
a:link,
a:visited,
.link {
	color: var(--accent);
	text-decoration: none;
	font-size: 1em;
	cursor: pointer;
	transition: color 0.2s ease;
}

a:hover,
a:active,
.link:hover {
	color: var(--accent-hover);
}

a.active {
	color: #444444;
}

/* links end */

/* fonts */
.link-large {
	font-size: 1.143em !important;
	font-weight: 400 !important;
}

span.text-notice,
div.text-notice {
	padding-bottom: 10px;
}

.close,
.red {
	color: #e44848 !important;
}

.close:hover,
.red:hover {
	color: #ff5d5d !important;
}

.red.margin {
	padding-left: 10px !important;
	cursor: pointer;
}

.date {
	font-size: 0.857em;
	color: #949494;
}

.notice,
.notice_message {
	color: #c95265;
	font-size: 0.929em;
}

.notice_message {
	padding-top: 5px;
}

/* fonts end */

/* h1 */
h1 {
	color: #333333;
	font-size: 2.143em;
	margin: -8px 0 28px 0;
	font-weight: normal;
	padding: 0;
	font-weight: 300;
	overflow: hidden;
}

#controller_area>h1 {
	margin-bottom: 22px;
}

.h1-nav h1 {
	overflow: hidden;
	margin-top: 0;
}

.h1-nav nav {
	float: right;
	vertical-align: top;
}

.h1-nav nav>a.icon {
	display: none !important;
}

/* h1 end */

/* global style items */
.hlight {
	background: var(--bg-card);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	border: 1px solid var(--border-color);
	padding: 20px;
	margin-bottom: 20px;
}

.hborder {
	border-color: var(--border-color);
}

/* global style items end */

/* inputs */
input[type=text],
input[type=search],
input[type=password],
input[type=number],
textarea,
select,
span.pills,
.select2-selection--single,
.select2-selection--multiple,
.select2-dropdown {
	height: 44px;
	background: white;
	border: 1px var(--border-color) solid;
	color: var(--text-main);
	font-size: 15px;
	font-family: var(--font-body);
	font-weight: 400;
	padding: 0 14px;
	border-radius: 8px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: all 0.2s ease;
}

input:focus,
select:focus,
.select2-selection--single:focus,
.select2-container--open .select2-selection--single {
	border-color: #9d9d9d;
}

textarea {
	line-height: normal;
	height: auto;
	padding: 8px 10px 8px;
	width: 100%;
}

select.disabled,
select[disabled=disabled],
input[disabled=disabled],
.select2-container--disabled .select2-selection--single {
	cursor: not-allowed;
	color: #959595;
	background: #dedede;
	border-color: #dedede;
}

select,
.select2-container:not(.select2-container--disabled) .select2-selection__arrow {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M1 4l5 5 5-5z'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 10px center !important;
	background-size: 10px !important;
	background-color: white !important;
	padding-right: 25px;
}

input[type=number] {
	background: url('../img/gallery.png') right -1259px no-repeat white;
	padding-right: 25px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input[type=number] {
	-moz-appearance: textfield;
	margin: 0;
}

option {
	padding: 2px 0;
}

input[type=submit],
input[type=button],
.file-input span,
a.button,
.btn {
	background: var(--accent);
	height: 44px;
	padding: 0 24px;
	color: white;
	font-size: 15px;
	font-weight: 500;
	font-family: var(--font-body);
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 8px;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

input[type=submit]:hover,
input[type=button]:hover,
a.button:not(.disabled):hover,
.file-input span:hover,
.btn:hover {
	background: var(--accent-hover);
}

a.button {
	display: inline-block;
	line-height: 36px;
}

a.button.disabled,
input[type=submit][disabled=disabled],
input[type=button][disabled=disabled],
input[type=submit].disabled,
input[type=button].disabled {
	cursor: not-allowed;
	background: #b1b1b1 !important;
	color: #e6e6e6;
	box-shadow: none;
}

input[type=submit].low,
input[type=button].low,
a.button.low {
	height: 28px;
	line-height: 26px;
	font-size: 0.929em;
	padding: 0 11px;
	white-space: nowrap;
}

.button.warning:not(.disabled) {
	background: #c51c1c;
	border: none;
}

.button.warning:not(.disabled):hover {
	background: #d62c2c !important;
}

input[type=checkbox]:not(.default),
input[type=radio]:not(.default) {
	opacity: 0;
	position: absolute;
	width: 22px;
	height: 22px;
}

input[type=checkbox]:not(.default)+label,
input[type=radio]:not(.default)+label {
	max-width: 100%;
	padding-top: 1px;
	display: inline-block;
	cursor: pointer;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: top;
}

input[type=checkbox]:not(.default)+label>span,
input[type=radio]:not(.default)+label>span {
	width: 22px;
	height: 22px;
	display: inline-block;
	background: url('../img/gallery.png') 0 -1177px no-repeat;
	vertical-align: top;
	margin: -1px 5px 0 0;
}

input[type=radio]:not(.default)+label>span {
	background-position: 0 -1098px;
}

input[type=checkbox]:not(.default):hover+label>span {
	background-position: 0 -1153px;
}

input[type=radio]:not(.default):hover+label>span {
	background-position: 0 -1072px;
}

input[type=checkbox]:not(.default):checked+label>span,
input[type=radio]:not(.default):checked+label>span {
	background-position: 0 -1201px;
}

input[type=checkbox]:not(.default):checked+label,
input[type=radio]:not(.default):checked+label {
	color: #1c1c1c;
}

input[type=radio]:not(.default):checked+label>span {
	background-position: 0 -1124px;
}

input[type=radio].multiline+label,
input[type=checkbox].multiline+label {
	height: auto;
	text-align: center;
	color: #268d64;
	font-size: 0.929em;
}

input[type=radio].multiline:checked+label,
input[type=checkbox].multiline:checked+label {
	color: #010101;
}

input[type=checkbox].multiline:not(.default)+label>span,
input[type=radio].multiline:not(.default)+label>span {
	display: block;
	margin: 0 auto 5px;
}

input[type=radio][disabled=disabled]+label>span {
	opacity: 0.5;
}

input[type=radio][disabled=disabled]+label {
	color: #707070;
}

input[type=checkbox].inline+label {
	display: inline;
}

input[type=checkbox].inline+label>span {
	margin: 0;
}

input.search,
input.search:hover {
	background-image: url('../img/gallery.png');
	background-position: 12px -430px;
	width: 0;
}

/* Switcher */
label.switcher input[type=checkbox] {
	display: none;
}

label.switcher>input[type=checkbox]+span:not(.status) {
	margin-top: -1px;
	display: inline-block;
	width: 34px;
	height: 18px;
	background: #969696;
	position: relative;
	cursor: pointer;
	vertical-align: middle;
	transition: background-color 0.4s, opacity 0.4s;
	opacity: 0.7;
}

label.switcher>input[type=checkbox]+span:not(.status):after {
	content: "";
	position: absolute;
	top: 2px;
	right: 2px;
	width: 14px;
	height: 14px;
	background: #fff;
	transition: transform 0.4s;
	z-index: 2;
}

label.switcher>input[type=checkbox]+span:not(.status):before {
	content: "";
	position: absolute;
	top: 5px;
	right: 5px;
	width: 8px;
	height: 8px;
	background: url(../img/gallery.png) -8px -699px no-repeat;
	transition: transform 0.4s;
	z-index: 3;
}

label.switcher:hover>input[type=checkbox]+span:not(.status) {
	opacity: 1;
}

label.switcher>input[type=checkbox]:checked+span:not(.status) {
	background: #52b600;
	transition: background-color 0.4s;
}

label.switcher>input[type=checkbox]:checked+span:not(.status):after {
	transform: translateX(-16px);
}

label.switcher>input[type=checkbox]:checked+span:not(.status):before {
	transform: translateX(-16px);
	background-position: 0 -699px;
}

label.switcher>input[type=checkbox]~.status {
	margin-left: 10px
}

label.switcher>input[type=checkbox]:checked~.status:before {
	content: attr(data-enabled);
}

label.switcher>input[type=checkbox]:checked~.status:before {
	content: attr(data-disabled);
}

::-webkit-input-placeholder {
	color: #b9b9b9;
}

:-moz-placeholder {
	color: #b9b9b9;
}

::-moz-placeholder {
	color: #b9b9b9;
}

:-ms-input-placeholder {
	color: #b9b9b9;
}

*:focus {
	outline: none;
}

input[type=text].error,
input[type=password].error,
textarea.error {
	background: #fff2f4;
	color: #c92a44;
	border-color: #f79d9d;
}

div.field.error label {
	color: #c92a44;
}

select.error,
select.error+.select2-container .select2-selection--single {
	background-color: #fff3f5;
	border-color: #ffccd4;
	color: #c92a44;
}

.image-field-preview {
	margin-bottom: 10px;
}

.image-field-preview>div.relative {
	width: 100%;
}

.file-input {
	position: relative;
	overflow: hidden;
	display: inline-block;
	vertical-align: middle;
}

.file-input input.file {
	position: absolute;
	right: 0;
	height: 40px;
	opacity: 0;
}

.file-input input.file-name {
	width: 200px;
	position: relative;
}

.file-input span {
	display: inline-block;
	vertical-align: top;
	line-height: 36px;
	margin-left: 3px;
}

.file-input+em {
	margin: 0 10px;
}

span.pills {
	white-space: nowrap;
	display: inline-block;
	vertical-align: top;
	padding: 0;
}

span.pills>label>span {
	display: none !important;
}

span.pills>label {
	padding: 0 15px !important;
	height: 34px !important;
	line-height: 32px;
	border-right: 2px #c2c2c2 solid;
	display: inline-block;
	text-align: center;
}

span.pills>label:last-child {
	border: 0;
}

span.pills input[type=radio]:checked+label {
	background: #c2c2c2;
	text-decoration: none;
	cursor: default;
}

span.pills>input[type=radio]:not(:checked)+label {
	cursor: pointer;
	color: #4bb088;
}

span.pills>input[type=radio]:not(:checked)+label:hover {
	text-decoration: underline;
}

/* inputs end */
/*** COMMON STYLES END ***/

/*** PAGE HEADER ***/
header.page-header section.main-menu>.point1 {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px;
}

header.page-header {
	height: auto;
	top: 0;
}

header.page-header div.top-navigation {
	display: none !important;
}

header.page-header section.main-menu {
	height: 70px;
	min-height: 70px;
	background: var(--nav-bg);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 100;
	display: flex;
	align-items: center;
}

header.page-header section.main-menu div.point1 {
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
}

header.page-header>div>*>* {
	margin: 0 auto;
}

div#logo {
	width: 200px;
	height: 50px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	position: relative;
	overflow: visible;
}

div#logo a {
	display: flex;
	height: 100%;
	align-items: center;
	width: 100%;
}

div#logo img {
	height: 50px !important;
	max-width: 100% !important;
	width: auto !important;
	object-fit: contain;
	display: block;
}

/* Sticky state - same as normal menu, just fixed position + shadow */
header.page-header.fixed-menu {
	height: auto !important;
}

header.page-header.fixed-menu section.main-menu {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

header.page-header.fixed-menu div.top-navigation {
	display: none !important;
}


div#header-banner tr.banner-here>td {
	box-shadow: inset 0 0 0 1px #aed0c4;
	color: #92bfaf;
	background: #d5f1e7;
}

div.banner-space {
	box-shadow: inset 0 0 0 1px #b2aead;
	color: #b2aead;
	font-size: 1.286em;
}

div.banner-in-grid>div.banner-space {
	height: 90px !important;
	margin-bottom: 30px;
	max-width: 780px;
}

/* top navigation */
.circle {
	color: white;
	font-size: 13px;
	position: relative;
	user-select: none;
	display: inline-block;
	vertical-align: top;
	height: 44px;
	border: 0;
	z-index: 103;
}

.circle>.default {
	padding: 0 15px;
	line-height: 39px;
	cursor: pointer;
	display: inline-block;
	position: relative;
}

.circle>.default>span {
	vertical-align: top;
}

.cir.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.circle>.default:after {
	content: '';
	display: inline-block;
	width: 10px;
	height: 7px;
	margin-left: 10px;
	background: url('../img/gallery.png') 0 -314px no-repeat;
	opacity: 0.7;
}

.circle:not(.circle_opened):hover>.default:after {
	opacity: 1;
}

.circle_opened>.default:after {
	background-position: -13px -314px;
}

.circle_opened>.content {
	display: inline-block;
	background: var(--primary-dark);
	padding: 12px 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	min-width: 100%;
	position: absolute;
	z-index: 20;
	left: 0;
	top: 40px;
	margin-top: 4px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

div.fleft>.circle,
div.fright>.circle {
	float: left;
}

div.top-navigation div.fright,
div.top-navigation div.fleft {
	border-left: 1px rgba(255, 255, 255, 0.1) solid;
	border-right: 1px rgba(255, 255, 255, 0.1) solid;
}

div.fright>.circle_opened>.content {
	left: auto;
	right: 0;
}

.circle_opened {
	border-color: rgba(255, 255, 255, 0.2);
	background: var(--primary-dark);
	color: white;
	border-radius: 6px 6px 0 0;
}

.circle ul>li {
	height: 32px;
	line-height: 32px;
	white-space: nowrap;
	transition: padding-left 0.2s ease;
}

.circle ul>li:hover {
	padding-left: 4px;
}

.circle .content a:not(.button) {
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.2s ease;
}

.circle .content a.active,
.circle .content a:not(.button):hover {
	color: var(--accent);
}

#user-navbar>span.default:before {
	content: '';
	display: inline-block;
	background: url('../img/gallery.png') 0 -244px no-repeat;
	width: 18px;
	height: 18px;
	vertical-align: middle;
	margin: -1px 10px 0 0;

	opacity: 0.7;
}

#user-navbar.circle:not(.circle_opened):hover>span.default:before {
	opacity: 1;
}

#user-navbar.circle_opened>span.default:before {
	opacity: 0.7;

	background-position: right -244px;
}

#user-navbar>span.default>span.logged-in {
	background-position: -19px -255px;
	width: 14px;
	height: 20px;
	margin: 8px 0 0 0;
}

#user-navbar.notify>span.default:before {
	background-position: left -533px;
}

#user-navbar.notify>span.default:before {
	animation: blinker 2.0s infinite ease-in-out;
}

@-webkit-keyframes blinker {
	0% {
		opacity: .2;
	}

	50% {
		opacity: .8;
	}

	100% {
		opacity: .2;
	}
}

@keyframes blinker {
	0% {
		opacity: .2;
	}

	50% {
		opacity: .8;
	}

	100% {
		opacity: .2;
	}
}

.user-navbar-container {
	display: inline-block;
	padding: 10px 0;
	min-width: 218px;
}

#user-navbar span.content.a-menu {
	padding: 13px 20px;
}

#user-navbar ul>li {
	padding-right: 25px;
	position: relative;
}

#user-navbar ul>li>a {
	white-space: nowrap;
}

#user-navbar ul>li>a.active {
	color: white;
}

#user-navbar ul>li>a.logout {
	color: #f25353;
}

#user-navbar ul>li>a.logout:hover {
	color: #ff7e7e;
}

#user-navbar a.counter,
.account-menu-content a.counter {
	color: #fb6a5c;
	padding: 0;
	font-weight: 400;
	display: inline-block;
	line-height: initial;
	position: absolute;
	right: 0;
	top: 5px;
}

.user-navbar-container .remember-me label {
	color: white !important;
}

/* top navigation end */

/* main menu */
section.main-menu nav.menu {
	display: flex;
	align-items: center;
	height: 100%;
	margin-left: auto;
}

section.main-menu nav.menu>div {
	display: flex;
	align-items: center;
	height: 100%;
	gap: 24px;
}

section.main-menu ul.menu {
	display: flex;
	gap: 28px;
	margin: 0;
	padding: 0;
	height: 100%;
	align-items: center;
	list-style: none;
}

section.main-menu ul.menu>li {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
}

section.main-menu ul.menu>li.more {
	display: none !important;
}

section.main-menu ul.menu>li>a {
	color: rgba(255, 255, 255, 0.85);
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 8px 0;
	display: inline-block;
	position: relative;
	white-space: nowrap;
}

section.main-menu ul.menu>li.active>a,
section.main-menu ul.menu>li>a:hover {
	color: var(--accent);
}

section.main-menu ul.menu>li>a:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateX(-50%);
	border-radius: 2px;
}

section.main-menu ul.menu>li.active>a:after,
section.main-menu ul.menu>li>a:hover:after {
	width: 100%;
}

ul.menu>li.mobile-only-listing,
.mobile-only-listing,
li.mobile-only-listing,
section.main-menu nav.menu ul.menu>li.mobile-only-listing {
	display: none !important;
}

section.main-menu a.add-property.button {
	background: var(--accent);
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
	color: white !important;
	border-radius: 50px;
	height: 40px;
	line-height: 40px;
	padding: 0 24px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(56, 178, 172, 0.3);
	border: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

section.main-menu a.add-property.button:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 8px 25px rgba(56, 178, 172, 0.4);
	filter: brightness(1.05);
}

section.main-menu a.add-property.button:active {
	transform: translateY(0) scale(0.98);
}

.register-btn {
	background: #2C3549 !important;
	color: white !important;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(44, 53, 73, 0.2);
}

.register-btn:hover {
	background: #1a202c !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(44, 53, 73, 0.3);
}

.vertical-auth {
	display: flex !important;
	flex-direction: column !important;
	gap: 20px;
}

.vertical-auth .auth-section {
	width: 100%;
}

.auth-fields-row {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.auth-fields-row .auth-field {
	flex: 1;
	min-width: 200px;
}

.auth-divider {
	display: flex;
	align-items: center;
	text-align: center;
	margin: 20px 0;
	color: var(--text-muted);
}

.auth-divider hr {
	flex: 1;
	border: none;
	border-top: 1px solid var(--border-color);
	margin: 0;
}

.auth-divider span {
	padding: 0 15px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.85em;
}

.vertical-auth .caption {
	margin-bottom: 15px !important;
}

.vertical-auth input[type="text"],
.vertical-auth input[type="password"] {
	box-sizing: border-box;
}

/* header actions (user navbar + lang selector) */
.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	margin-left: 24px;
}

/* user navbar in header - dark nav bg */
.header-actions .circle {
	color: rgba(255, 255, 255, 0.85);
	height: auto;
	z-index: 103;
}

.header-actions .circle>.default {
	padding: 6px 12px;
	line-height: 1.4;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.header-actions .circle>.default:after {
	background: none;
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid rgba(255, 255, 255, 0.5);
	margin-left: 4px;
	opacity: 1;
	transition: transform 0.2s ease;
}

.header-actions .circle:hover>.default {
	border-color: var(--accent);
	color: var(--accent);
}

.header-actions .circle_opened {
	background: transparent;
	border-color: transparent;
	color: white;
}

.header-actions .circle_opened>.default {
	border-color: var(--accent);
	background: rgba(56, 178, 172, 0.15);
}

.header-actions .circle_opened>.default:after {
	transform: rotate(180deg);
}

.header-actions .circle_opened>.content {
	background: var(--bg-card) !important;
	border: 1px solid var(--border-color);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	border-radius: 8px;
	padding: 12px 16px;
	top: calc(100% + 6px);
	left: auto;
	right: 0;
	margin-top: 0;
}

.header-actions .circle .content a:not(.button) {
	color: var(--text-main) !important;
}

.header-actions .circle .content a.active,
.header-actions .circle .content a:not(.button):hover {
	color: var(--accent) !important;
}

.header-actions #user-navbar>span.default:before {
	background: var(--accent);
	border-radius: 50%;
	width: 28px;
	height: 28px;
	content: '';
	display: inline-block;
	margin: 0;
	opacity: 1;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
	background-size: 16px;
	background-repeat: no-repeat;
	background-position: center;
}

.header-actions .circle_opened #user-navbar>span.default:before,
.header-actions #user-navbar.circle_opened>span.default:before {
	background-color: var(--accent-hover);
}

.header-actions .circle ul>li {
	height: 32px;
	line-height: 32px;
}

.header-actions .circle ul>li:hover {
	padding-left: 4px;
}

.header-actions #user-navbar ul>li>a {
	color: var(--text-main) !important;
}

.header-actions #user-navbar ul>li>a:hover,
.header-actions #user-navbar ul>li>a.active {
	color: var(--accent) !important;
}

.header-actions #user-navbar ul>li>a.logout {
	color: #e53e3e !important;
}

.header-actions #user-navbar ul>li>a.logout:hover {
	color: #c53030 !important;
}

.header-actions .user-navbar-container {
	background: transparent;
}

.header-actions .user-navbar-container .remember-me label {
	color: var(--text-main) !important;
}

/* main menu end */
/*** PAGE HEADER END ***/

/*** LISTING DETAILS - Full width + floating seller ***/
.inside-container>.row.flex-row-reverse {
	display: block !important;
	position: relative;
	clear: both;
	overflow: visible !important;
}

.inside-container>.row.flex-row-reverse::after {
	content: "";
	display: table;
	clear: both;
}

.inside-container>.row.flex-row-reverse>aside.left {
	position: sticky !important;
	top: 120px;
	float: right;
	width: 320px !important;
	max-width: 320px !important;
	z-index: 100;
	margin-left: -320px;
	margin-bottom: 30px;
	height: auto;
}

.inside-container>.row.flex-row-reverse>aside.left>.side_block {
	height: auto;
	margin-bottom: 20px;
}

.inside-container>.row.flex-row-reverse>section#content {
	width: 100% !important;
	float: left;
}

.inside-container>.row.flex-row-reverse>aside.left>.side_block {
	border-radius: var(--radius);
	border: 1px solid var(--border-color);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.inside-container>.row.flex-row-reverse>aside.left>.side_block>div {
	padding: 20px;
}

.inside-container>.row.flex-row-reverse .seller-short .picture img {
	border-radius: 50%;
}

@media screen and (max-width: 991px) {
	.inside-container>.row.flex-row-reverse {
		display: flex !important;
		flex-direction: column !important;
	}

	.inside-container>.row.flex-row-reverse>aside.left {
		position: static !important;
		float: none !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 20px 0 0 0 !important;
		order: 2;
	}

	.inside-container>.row.flex-row-reverse>aside.left>.side_block>div {
		padding: 15px;
	}

	.inside-container>.row.flex-row-reverse>section#content {
		order: 1;
		width: 100% !important;
	}
}

@media screen and (min-width: 992px) {
	.content_block.get_more_details {
		padding-right: 350px !important;
		box-sizing: border-box !important;
	}
}

/*** LISTING DETAILS END ***/

/*** PAGE CONTENT ***/
body>div.main-wrapper {
	overflow: visible !important;
	min-height: 100%;
	position: relative;
}

/* Removed redundant header-banner padding to eliminate white space */


section#controller_area:empty {
	padding-bottom: 0 !important;
}

section#main_container {
	position: relative;
	overflow: visible !important;
	/* Critical for sticky */
}

section#main_container>div.inside-container {
	margin: 0 auto;
	position: relative;
	padding: 20px 0 40px;
	overflow: visible !important;
	/* Critical for sticky */
}

body.bc-exists section#main_container>div.inside-container {
	padding-top: 0;
}

section#content {
	vertical-align: top;
}

aside.bottom>section:last-child {
	margin-top: 0;
	margin-bottom: 0;
}

/* bread crubmbs */
#bread_crumbs {
	margin: 0 auto;
	background: var(--bg-main);
	border-bottom: 1px solid var(--border-color);
}

#bread_crumbs>ul {
	margin: 0 auto;
	min-height: 42px;
	padding-bottom: 13px;
}

#bread_crumbs>ul>* {
	display: inline-block;
	font-size: 0.929em;
	padding-top: 10px;
	color: var(--text-muted);
}

#bread_crumbs>ul li a {
	color: var(--accent);
}

#bread_crumbs>ul>*:not(:last-child):after {
	content: attr(accesskey);
	padding: 0 6px;
	color: #737373;
}

/* bread crubmbs end */

/* content/side blocks */
section.content_block,
section.side_block {
	position: relative;
	margin-bottom: 30px;
}

section.content_block>h3,
section.side_block>h3 {
	color: var(--primary);
	font-size: 1.5em;
	font-weight: 600;
	font-family: var(--font-heading);
	display: inline-block;
	vertical-align: top;
}

section.content_block>div,
section.side_block>div {
	position: relative;
}

section.content_block>div h3,
section.side_block>div h3 {
	font-size: 1.571em;
	margin-top: -5px;
	margin-bottom: 25px;
}

section.content_block:not(.no-header)>div,
section.side_block:not(.no-header)>div {
	margin: 19px 0 0 0;
}

section.content_block:not(.no-style)>div {
	padding: 30px 30px;
}

section.content_block:not(.no-style)>div,
section.side_block:not(.no-style)>div {
	background: var(--bg-card);
	border-radius: var(--radius);
	border: 1px solid var(--border-color);
}

aside.middle {
	margin-bottom: 30px;
}

aside.middle section.content_block:last-child {
	margin-bottom: 0;
}

section.contact-seller-bottom {
	margin-top: 30px;
	padding-bottom: 0 !important;
}

section.contact-seller-bottom>div {
	background: var(--accent-soft) !important;
}

/* content/sidebar block end */

/* sidebar search block */
.horizontal-search .search-block-content {
	padding: 6px 30px 20px;
}

.horizontal-search .search-block-content form {
	margin-left: -15px;
	margin-right: -15px;
}

.search-block-content form div.search-form-cell {
	width: 25%;
}

section.side_block_search div.search-item {
	padding-bottom: 15px;
}

section.side_block_search div.search-item:last-child {
	padding-bottom: 0;
}

section.side_block_search div.field {
	padding: 0 0 4px 0;
	min-height: 8px;
}

.search-button {
	padding-top: 15px;
}

.search-button>a {
	margin-left: 20px;
	white-space: nowrap;
}

/* single */
.search-item.single-field>select,
.search-item.single-field>input[type=text],
.search-item.single-field .two-inline input[type=text] {
	width: 100%;
}

/* two */
.search-item.two-fields>select,
.search-item.two-fields>input[type=text] {
	width: 48%;
	margin-right: 4%;
}

.search-item.two-fields>select:last-child,
.search-item.two-fields>input[type=text]:last-child {
	margin-right: 0;
}

.search-item.two-fields>.custom-input,
.search-item.couple-field>.custom-input {
	width: 50%;
	display: inline-block;
}

/* three */
.search-item.three-field>select,
.search-item.three-field>span {
	width: 24%;
	margin-right: 4%;
}

.search-item.three-field>input {
	width: 34%;
	margin-right: 4%;
}

.search-item.three-field>span,
.search-form-cell.three-field>div>div>span {
	text-overflow: ellipsis;
	overflow: hidden;
	display: inline-block;
	padding-top: 9px;
	vertical-align: top;
}

.three-field>select.multicat {
	width: 31%;
	margin-right: 3.5%;
}

.search-item.three-field>*:last-child {
	margin-right: 0;
}

/* checkbox */
.search-item.checkbox-field {
	margin-bottom: -10px;
}

.search-item.checkbox-field>.custom-input {
	display: inline-block;
	width: 50%;
}

.search-item.checkbox-field>.custom-input {
	padding: 0 0 10px 0;
}

.search-item.checkbox-field>.custom-input>label {
	padding-right: 5px;
}

.search-item.checkbox-field div.field,
.search-item.couple-field div.field {
	padding-bottom: 8px;
}

.search-item span.divider {
	padding: 0 10px;
}

/* sidebar search block end */

/* search form elements */
.search-form-cell {
	display: inline-block;
	vertical-align: top;
}

.search-form-cell>div {
	margin: 10px 15px 0;
}

.search-form-cell>div>span {
	color: #555555;
	font-size: 0.929em;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 6px;
	height: 24px;
	white-space: nowrap;
}

.search-form-cell.vertical-middle>div>div {
	padding-top: 8px;
}

.search-form-cell.numeric-field>div>span {
	max-width: 120px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.search-form-cell>div>div input[type=text],
.search-form-cell>div>div input[type=number],
.search-form-cell>div>div select {
	width: 100%;
}

.search-form-cell.three-field>div>div input[type=text],
.search-form-cell.three-field>div>div input[type=number] {
	width: 33%;
	vertical-align: top;
}

.search-form-cell.three-field>div>div select {
	width: 28%;
	vertical-align: top;
}

.search-form-cell.three-field>div>div>*:not(:last-child) {
	margin-right: 3%;
}

.search-form-cell.two-fields>div>div select {
	width: 48%;
	margin-right: 3%;
}

.search-form-cell.two-fields>div>div select:last-of-type {
	margin-right: 0;
}

.search-form-cell .two-inline input.wauto {
	width: 100% !important;
}

/* search form elements end */
/*** PAGE CONTENT END ***/

/*** PAGE FOOTER ***/
footer.page-footer {
	background: #2c3549;
	color: white;
	padding: 40px 0;
	margin-top: 40px;
	border-top: 4px solid var(--accent);
}

footer.page-footer a {
	color: rgba(255, 255, 255, 0.7);
}

footer.page-footer a:hover {
	color: white;
}

footer.page-footer>div {
	padding: 30px 0 40px;
	margin: 0 auto;
	position: relative;
}

footer.page-footer span.scroll-top {
	width: 34px;
	height: 34px;
	position: absolute;
	top: -50px;
	left: -34px;
	background: rgba(88, 190, 150, .8);
	cursor: pointer;

	transition: background 0.3s ease;
}

footer.page-footer span.scroll-top:hover {
	background: rgba(88, 190, 150, 1);
}

footer.page-footer span.scroll-top:before {
	content: '';
	width: 16px;
	height: 18px;
	position: absolute;
	top: 8px;
	left: 9px;
	background: url('../img/gallery.png') left -40px no-repeat;
}

nav.footer-menu {
	position: relative;
	float: left;
	width: 75%;
	padding-right: 30px;
}

nav.footer-menu>ul {
	margin-top: -3px;
}

nav.footer-menu>ul>li {
	display: inline-block;
	width: 33.33%;
}

nav.footer-menu a {
	text-decoration: none;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 1.071em;
	padding: 0 10px 8px;
	vertical-align: top;
	display: inline-block;
}

nav.footer-menu li.active a {
	color: var(--accent);
}

.footer-data {
	font-size: 0.929em;
	color: var(--text-muted);
	overflow: hidden;
}

.footer-data .icons a svg {
	width: 24px;
	height: 24px;
	fill: #7a7a7a;
}

.footer-data .icons a:hover svg {
	fill: #4bb088;
}

/*** PAGE FOOTER END ***/

/*** PAGINATION ***/
ul.pagination {
	margin: 30px 0 0;
	height: 37px;
	text-align: right;
}

ul.pagination>li {
	display: inline-block;
	height: 37px;
	vertical-align: top;
	font-size: 0.929em;
}

ul.pagination>li.transit {
	padding: 0 20px;
}

ul.pagination>li.transit input {
	min-width: 45px;
	width: auto;
	margin: 0 5px;
}

ul.pagination>li.navigator a {
	padding-left: 15px;
	padding-right: 15px;
	font-size: 28px;
	line-height: 32px;
}

/*** PAGINATION END ***/

/*** MISCELLANEOUS ***/
.two-inline {
	display: flex !important;
}

.two-inline>*:first-child {
	flex: 0 0 auto;
}

.two-inline>*:last-child {
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

.two-inline:not(.left) {
	flex-direction: row-reverse;
}

.text-overflow {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.mass-actions {
	padding: 15px 0 0 0;
}

.qtip-content {
	font-weight: 300 !important;
}

div.textarea_counter_default,
div.textarea_counter_warning {
	font-size: 0.857em;
	text-align: right;
	display: inline-block;
}

div.textarea_counter_warning {
	color: #a81818;
}

/* enlarge media */
span.media-enlarge {
	width: 46px;
	height: 46px;
	position: absolute;
	right: 0;
	top: 0;
}

span.media-enlarge:after {
	content: '';
	width: 18px;
	height: 18px;
	background: url('../img/gallery.png') 0 -389px no-repeat;
	position: absolute;
	left: 14px;
	top: 14px;

	opacity: 0.7;
}

span.media-enlarge:hover:after {
	opacity: 1;
}

/* enlarge media end */

/* keyword search in box */
.submit-cell .kws-block {
	padding-bottom: 10px;
}

.kws-block input[type=text] {
	width: 100%;
}

.kws-block>div:last-of-type {
	margin-top: 5px;
}

.kws-block .options ul {
	padding: 10px 0 5px;
}

.kws-block .options ul>li {
	padding: 0 0 7px 0;
}

.kws-block .options ul>li:last-child {
	padding: 0;
}

.kws-block a {
	margin-top: 10px;
	display: inline-block;
}

#area_keyword form.kws-block .two-inline {
	width: 70%;
}

/* keyword search in box end */

/* close bars */
div.close-black {
	width: 28px;
	height: 28px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
}

div.close-black:before {
	content: '';
	width: 8px;
	height: 8px;
	position: absolute;
	top: 10px;
	right: 10px;
	background: url('../img/gallery.png') 0 -287px no-repeat;
	opacity: 0.7;
}

div.close-black:hover:before {
	opacity: 1;
}

.close-red {
	width: 12px;
	height: 12px;
	display: inline-block;
	cursor: pointer;
	background: url('../img/gallery.png') -3px -11px no-repeat;
	opacity: 0.5;
}

.close-red:hover {
	opacity: 0.8;
}

img.remove {
	cursor: pointer;
	width: 10px;
	height: 12px;
	margin: 0 0 0 8px;
	background: url('../img/gallery.png') 0 -1460px no-repeat;
	opacity: 0.7;
}

img.remove:hover {
	opacity: 1;
}

/* close bars end */

#save_search {
	margin: 20px 0 0;
	display: inline-block;
}

.h1-nav nav>a:not(.button) {
	display: inline-block;
	height: 38px;
	margin-left: 5px;
	margin-top: 3px;
	opacity: 0.7;
}

.h1-nav nav>a:not(.button):not(.post_ad) {
	margin-top: 13px;
}

.h1-nav nav>a:hover {
	opacity: 1;
}

.h1-nav nav>a.post_ad {
	width: 38px;
	background: #4bb088;
	border-radius: 20px;
	position: relative;
	opacity: 1;
}

.h1-nav nav>a.post_ad:before,
.h1-nav nav>a.post_ad:after {
	content: '';
	position: absolute;
	width: 20px;
	height: 2px;
	top: 18px;
	left: 9px;
	background: white;
}

.h1-nav nav>a.post_ad:after {
	width: 2px;
	height: 20px;
	top: 9px;
	left: 18px;
}

.h1-nav nav>a.post_ad:hover {
	background: var(--accent-hover);
}

/* credit card styles */
img.cvc {
	width: 45px;
	height: 26px;
	background: url('../img/cc.png') 0 0 no-repeat;
	margin: 0 0 0 5px;
}

img#card_icon {
	width: 38px;
	height: 24px;
	background: url('../img/cc.png') 0 150px no-repeat;
	margin: 0 0 4px 6px;
}

img#card_icon.visa,
img#card_icon.visa_electron {
	background-position: 0 -122px;
}

img#card_icon.mastercard {
	background-position: 0 -98px;
}

img#card_icon.discover {
	background-position: 0 -50px;
}

img#card_icon.maestro {
	background-position: 0 -74px;
}

img#card_icon.amex {
	background-position: 0 -26px;
}

/* credit card styles end */
/*** MISCELLANEOUS END ***/

/*** TABS ***/
ul.tabs {
	height: 48px;
	white-space: nowrap;
	border-bottom: 2px solid var(--border-color);
	margin-bottom: 20px;
}

ul.tabs>li {
	display: inline-block;
	user-select: none;
	height: 48px;
	white-space: nowrap;
}

ul.tabs:not(.tabs-hash)>li {
	padding: 5px 0 0;
	height: 48px;
	font-size: 1em;
	font-weight: 500;
	cursor: pointer;
	position: relative;
	color: var(--text-muted);
	vertical-align: top;
	margin: 0 20px;
	transition: color 0.2s ease;
}

ul.tabs.tabs-hash>li a {
	display: inline-block;
	padding: 5px 0 0;
	height: 100%;
	font-size: 1em;
	font-weight: 500;
	cursor: pointer;
	position: relative;
	color: var(--text-muted);
	vertical-align: top;
	margin: 0 20px;
	text-decoration: none;
	transition: color 0.2s ease;
}

ul.tabs.tabs-hash>li:first-child>a,
ul.tabs>li:first-child {
	margin-left: 0;
}

ul.tabs.tabs-hash>li:last-child>a,
ul.tabs>li:last-child {
	margin-right: 0;
}

ul.tabs:not(.tabs-hash)>li.active {
	color: var(--accent);
	border-bottom: 3px var(--accent) solid;
	cursor: default;
}

ul.tabs.tabs-hash>li.active a {
	color: var(--accent);
	border-bottom: 3px var(--accent) solid;
	cursor: default;
}

ul.tabs>li.more {
	padding: 0;
	margin: 0;
	width: 40px;
	height: 42px;
	text-align: center;
	position: absolute;
	right: 15px;
	z-index: 40;
}

ul.tabs>li.more.opened {
	background: white;
	box-shadow: inset 0 2px 0 0px #aaaaaa, inset 2px 0 0 0px #aaaaaa, inset -2px 0 0 0px #aaaaaa;
	z-index: 42;
}

ul.tabs>li.more>span {
	width: 4px;
	height: 4px;
	background: #000000;
	display: inline-block;
	margin: 16px 2px 0 0;
	border-radius: 2px;
	vertical-align: top;
}

ul.tabs>li.more>span:last-child {
	margin-right: 0;
}

ul.tabs>li.overflowed {
	position: absolute;
	right: 15px;
	margin-top: -8px !important;
	padding: 0;
	display: none;
	z-index: 41;
}

ul.tabs>li.overflowed.opened {
	display: block;
}

ul.tabs>li.overflowed>ul {
	background: white;
	padding: 3px 0 5px;
	border: 2px #aaaaaa solid;
}

ul.tabs>li.overflowed>ul>li {
	padding: 0 18px;
	white-space: nowrap;
	line-height: 40px;
}

ul.tabs>li.overflowed>ul>li.active a {
	color: #2b2b2b;
}

ul.tabs.search_tabs {
	width: 100%;
	position: absolute;
	height: 34px;
	top: -34px;
	margin: 0;
	border: 0;
}

ul.tabs.search_tabs>li {
	height: 34px;
	border: 0;
	padding: 0;
	margin: 0;
	float: left;
}

ul.tabs.search_tabs>li:not(.more)>a {
	display: inline-block;
	height: 100%;
	line-height: 32px;
	margin: 0 10px 0 0;
	padding: 0 15px;
	border: 0;
	color: white;
	font-weight: 400;
	font-size: 0.929em;
	background: rgba(75, 176, 136, .9);
	position: relative;
}

ul.tabs.search_tabs>li:not(.more)>a:after {
	content: '';
	position: absolute;
	right: -10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 34px 0 0 10px;
	border-color: transparent transparent transparent rgba(75, 176, 136, .9);
}

ul.tabs.search_tabs>li.active>a {
	background: rgba(255, 255, 255, .9);
	color: #111111;
}

ul.tabs.search_tabs>li.active>a:after {
	border-color: transparent transparent transparent rgba(255, 255, 255, .9);
}

ul.tabs.search_tabs>li.overflowed {
	top: 32px;
}

/*** TABS END ***/

/*** ALPHABETIC SEARCH ***/
div.alphabetic-saerch {
	margin: 0 auto;
}

div.alphabetic-saerch>div {
	margin: 2px 0 0 2px;
}

div.alphabetic-saerch>div>a {
	width: 41px;
	height: 41px;
	border: 2px #d0d0d0 solid;
	display: inline-block;
	text-align: center;
	margin: -2px 0 0 -2px;
	line-height: 38px;
}

div.alphabetic-saerch>div>a.wide {
	width: 80px;
}

div.alphabetic-saerch>div>a:hover {
	background: #d0d0d0;
	color: #010101;
}

div.alphabetic-saerch>div>a.active {
	background: #707070;
	color: white;
}

/*** ALPHABETIC SEARCH END ***/

/*** SUBMIT FORM ELEMENTS ***/
.search-block-content {
	height: auto;
}

div.submit-cell {
	padding-bottom: 10px;
}

div.submit-cell:not(.hide):not(.disabled) {
	display: flex;
}

form>div.submit-cell:last-of-type {
	padding-bottom: 0;
}

div.submit-cell>div.name {
	max-width: 170px;
	flex: 1 0 170px;
	padding: 10px 10px 10px 0;
	display: flex;
}

div.submit-cell>div.field {
	min-height: 38px;
	flex: 1;
	min-width: 0;
}

div.submit-cell>div.field.checkbox-field,
div.submit-cell>div.field.inline-fields {
	padding-top: 10px;
	min-height: 28px;
}

div.submit-cell>div.field ul.tabs {
	margin: 0;
}

div.submit-cell.custom-padding {
	padding: 5px 0 10px 0;
}

div.submit-cell.custom-padding>div {
	min-height: 25px;
}

div.submit-cell ul.tabs {
	border: none;
	margin-bottom: 0;
	max-width: 100%;
	overflow: hidden;
}

div.submit-cell ul.tabs.tabs-ready {
	overflow: unset;
}

div.submit-cell.buttons {
	padding: 10px 0 0 0;
}

#modal_block div.submit-cell div.name {
	width: 120px;
}

#modal_block div.submit-cell div.field input[type=text],
#modal_block div.submit-cell div.field input[type=password] {
	width: 100%;
}

/* single */
.field.single-field>select {
	width: 250px;
}

.field.single-field>input[type=text] {
	width: 400px;
	min-width: 80px;
}

.field.single-field>textarea {
	max-width: 600px;
	display: block;
}

/* inline */
.field.inline-fields>span.custom-input {
	display: inline-block;
	padding: 0 30px 0 0;
}

/* two */
.field.two-fields>select,
.field.two-fields>input[type=text] {
	margin-right: 10px;
	min-width: 80px !important;
}

.field.two-fields>select:last-child,
.field.two-fields>input[type=text]:nth-child(2n) {
	margin-right: 0;
}

.field.two-fields>.custom-input,
.field.couple-field>.custom-input {
	display: inline-block;
	padding-top: 10px;
}

/* combo */
.field.combo-field>input {
	width: 150px;
	margin-right: 20px;
}

.field.combo-field>select {
	width: 80px;
}

/* three */
.field.three-field>select {
	width: 90px;
}

.field.three-field>input {
	margin-right: 10px;
}

.field.three-field>*:last-child {
	margin-right: 0;
}

/* checkbox */
.field.checkbox-field .custom-input {
	padding-bottom: 10px;
}

span.phone-field>select {
	width: 80px;
}

.field.two-fields input.date {
	width: 140px !important;
}

.field span.divider,
.search-form-cell span.divider {
	padding: 0 10px;
}

.form-buttons {
	display: block;
}

.form-buttons:not(.no-top-padding) {
	padding-top: 30px;
}

.form-buttons a:not(.button) {
	padding: 0 30px 0 0;
}

.wauto {
	width: auto !important;
	max-width: 100%;
}

.w120 {
	width: 120px !important;
}

.w210 {
	width: 210px !important;
}

/* qtip */
img.qtip {
	width: 18px;
	height: 18px;
	background: url('../img/gallery.png') 0 -467px no-repeat rgba(75, 176, 136, .7);
	margin: 2px 0 0 10px;
}

img.qtip:hover {
	background-color: rgba(75, 176, 136, 1);
}

div.qtip_cont {
	display: none;
}

div.qtip-defaults {
	max-width: 300px;
}

/* qtip end */

/* multilingual tabs */
div.ml_tabs_content {
	padding: 10px 0;
}

div.ml_tabs_content input[type=text] {
	width: 100%;
	max-width: 600px;
}

/* multilingual tabs end */
/*** SUBMIT FORM ELEMENTS END ***/

/*** MESSAGES ***/
img.account-picture {
	width: 200px;
	height: 100px;
	background-color: white;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('../img/no-account.png');
	object-fit: contain;
}

table.contacts-list {
	table-layout: auto !important;
}

table.contacts-list td.info {
	vertical-align: top;
}

table.contacts-list td.info .name {
	color: #494949;
}

table.contacts-list td.info .name>span:not(.new) {
	font-size: 0.929em;
	color: black;
}

table.contacts-list td.info .date {
	color: #949494;
	font-size: 0.929em;
	padding: 0 0 10px 0;
}

table.contacts-list div.picture {
	position: relative;
	display: inline-block;
}

table.contacts-list div.picture span {
	width: 10px;
	height: 10px;
	background: #60d400;
	position: absolute;
	border-radius: 7px;
	top: -5px;
	right: -5px;
}

table.contacts-list div.name span.new {
	width: 10px;
	height: 10px;
	background: #60d400;
	border-radius: 7px;
	border: 2px white solid;
	display: none;
}

table.contacts-list tr.header td.user {
	width: 5%;
}

div#messages_cont {
	max-height: 600px;
	margin-bottom: 20px;
}

ul#messages_area {
	margin-left: 13px;
}

ul#messages_area>li {
	border: 2px #e1e1e1 solid;
	padding: 15px 24px 15px 20px;
	margin: 0 40px 20px 0;
	position: relative;
}

ul#messages_area>li:last-child {
	margin-bottom: 0;
}

ul#messages_area>li.me {
	border-color: #f7fffc;
	background: #f7fffc;
	margin: 0 13px 20px 20px;
}

ul#messages_area>li.removed {
	opacity: 0.5;
}

ul#messages_area>li div.date {
	margin-top: 5px;
}

ul#messages_area>li:before,
ul#messages_area>li:after {
	content: '';
	position: absolute;
	width: 0px;
	height: 0px;
	left: -15px;
	bottom: -2px;
	border-style: solid;
	border-width: 0 0 14px 14px;
	border-color: transparent transparent #e1e1e1 transparent;
}

ul#messages_area>li:after {
	left: -10px;
	bottom: 0;
	border-width: 0 0 10px 10px;
	border-color: transparent transparent #f2f2f2 transparent;
}

ul#messages_area>li.me:after {
	display: none;
}

ul#messages_area>li.me:before {
	left: auto;
	right: -15px;
	border-width: 0 14px 14px 0;
	border-color: transparent transparent #f7fffc transparent;
}

ul#messages_area>li>span {
	width: 14px;
	height: 14px;
	position: absolute;
	top: 8px;
	right: 8px;
	background: url('../img/gallery.png') right -469px no-repeat;
	cursor: pointer;
	display: none;
	opacity: 0.5;
}

ul#messages_area>li>span:hover {
	opacity: 0.9;
}

ul#messages_area>li:hover>span {
	display: block;
}

div.send-controls {
	margin: 0 0 0 33px;
	text-align: right;
}

div.send-controls>div {
	display: inline-block;
	margin: 0 0 0 20px;
}

textarea#message_text {
	margin-bottom: 10px;
}

/*** MESSAGES ***/

/*** FEATURED LISTINGS BOX ***/
ul.featured>li {
	margin-bottom: 30px;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

ul.featured>li:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	border-color: var(--accent);
}

ul.featured:not(.row) {
	margin-left: -15px;
	margin-right: -15px;
}

section ul.featured:last-child {
	margin-bottom: -30px;
}

ul.featured>li>.picture {
	position: relative;
	width: 100%;
	padding-bottom: 66%;
	overflow: hidden;
	border-radius: var(--radius) var(--radius) 0 0;
}

ul.featured>li img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: url('../img/no-picture.png') center center no-repeat var(--bg-main);
	transition: transform 0.4s ease;
}

ul.featured>li:hover img {
	transform: scale(1.05);
}

.listing-fit-contain ul.featured>li img {
	object-fit: contain !important;
}

.listing-fit-contain ul.featured>li:not(.no-picture) img {
	background: #e9e9e9 !important;
}

ul.featured>li>ul {
	position: relative;
	padding: 12px 15px;
	background: var(--bg-card);
}

section.side_block:not(.no-style) ul.featured>li>ul,
section.content_block:not(.no-style) ul.featured>li>ul {
	padding-left: 0;
	padding-right: 0;
}

ul.featured>li>ul>li:not(:last-child) {
	margin-bottom: 8px;
}

ul.featured>li>ul>li a {
	font-weight: 400;
}

ul.featured .icons {
	display: flex;
	align-self: center;
	align-items: center;
}

ul.featured .icons .icon {
	width: 18px;
	height: 18px;
	display: block;
	cursor: pointer;
	opacity: .7;
}

ul.featured .icons .icon:hover {
	opacity: 1;
}

ul.featured .icons>*:not(:last-child) {
	margin-right: 10px;
}

ul.featured.list>li {
	position: relative;
}

ul.featured.list>li:before {
	content: '';
	width: 5px;
	height: 5px;
	position: absolute;
	background: #707070;
	border-radius: 4px;
	top: 8px;
}

ul.featured.list>li {
	display: block !important;
}

ul.featured.list>li>ul>li {
	padding: 0 0 5px 15px;
	position: relative;
	white-space: normal;
}

ul.featured.with-pictures ul.card-info>li.title {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

article.item:not(.no-image) ul.card-info>li.title,
article.item:not(.no-image) ul.card-info:not(.with-names)>li.fields {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-height: 45px;
}

article.item:not(.no-image) ul.card-info:not(.with-names)>li.fields {
	-webkit-line-clamp: 1;
}

article.item:not(.no-image) ul.card-info>li.fields:empty {
	display: none;
}

ul.card-info>li.fields>span:not(:last-child) {
	margin-right: 5px;
}

ul.card-info>li.fields>span:not(:last-child):after {
	content: ',';
}

ul.card-info>li.fields {
	color: #444444;
	font-size: 0.929em;
}

ul.card-info>li.price_tag>div>span,
ul.card-info .price-tag>span,
ul.card-info>li.system .type {
	font-weight: 400;
	font-size: 1.286em;
}

ul.card-info>li.price_tag {
	flex-wrap: wrap-reverse;
}

ul.card-info>li.price_tag>*:last-child {
	min-width: unset;
	overflow: visible;
	line-height: 28px;
	white-space: nowrap;
}

/*** FEATURED LISTINGS BOX END ***/

/*** FEATURED ACCOUNTS BOX ***/
.featured.accounts>li:not(.no-picture) img {
	object-fit: contain;
	background: #e9e9e9;
}

/*** FEATURED ACCOUNTS BOX END ***/

/*** GRID NAVIGATION BAR ***/
.grid_navbar {
	height: 40px;
	border-bottom: 1px #d4d4d4 solid;
	margin-bottom: 20px;
}

.grid_navbar .switcher {
	float: right;
	line-height: normal;
	height: 40px;
}

.grid_navbar .switcher>div {
	display: inline-block;
	height: 40px;
	line-height: 40px;
}

.grid_navbar .hook {
	vertical-align: top;
}

.grid_navbar .buttons>div {
	position: relative;
	width: 40px;
	height: 40px;
	display: inline-block;
	cursor: pointer;
	vertical-align: top;
	margin-left: 2px;
}

.grid_navbar .buttons>div.active {
	border-bottom: 3px #030303 solid;
}

.grid_navbar .buttons>div>div {
	width: 18px;
	height: 18px;
	position: absolute;
	top: 11px;
	left: 11px;
	line-height: 0;
	user-select: none;
}

.grid_navbar .buttons>div>div>span {
	display: inline-block;
	border: 2px #4bb088 solid;
	border-radius: 1px;
	vertical-align: top;
}

/* list view */
.grid_navbar div.list>div {
	top: 12px;
}

.grid_navbar div.list>div>span {
	width: 10px;
	height: 2px;
	margin: 0 0 2px 2px;
	border: 0;
	background: #4bb088;
}

.grid_navbar div.list>div>span:nth-child(3n+1) {
	width: 6px;
	height: 6px;
	border: 2px #4bb088 solid;
	background: none;
	margin: 0 0 4px 0;
}

.grid_navbar div.list>div>span:nth-child(3n) {
	width: 6px;
	height: 2px;
	float: right;
	margin: -6px 4px 0 0;
	border: 0;
	background: #4bb088;
}

/* grid view */
.grid_navbar div.grid>div>span {
	width: 8px;
	height: 8px;
}

.grid_navbar div.grid>div>span:nth-child(2n) {
	margin: 0 0 2px 2px;
}

.grid_navbar div.list.active>div>span {
	background-color: #030303;
}

.grid_navbar div.list:not(.active):hover>div>span {
	background-color: #0194a5;
}

.grid_navbar div.grid.active div>span,
.grid_navbar div.list.active div>span:nth-child(3n+1) {
	border-color: #030303;
	background: none;
}

.grid_navbar div.grid:not(.active):hover div>span,
.grid_navbar div.list:not(.active):hover div>span:nth-child(3n+1) {
	border-color: #0194a5;
	background: none;
}

/* map view */
.grid_navbar div.map>div {
	width: 14px;
	left: 13px;
}

.grid_navbar div.map>div>span {
	width: 14px;
	border: 0;
	height: 18px;
	background: url('../img/gallery.png') 0 -67px no-repeat;

	opacity: 0.7;
}

.grid_navbar div.map.active span {
	background: url('../img/gallery.png') -26px -67px no-repeat;
}

.grid_navbar div.map:hover span,
.grid_navbar div.map.active span {
	opacity: 1;
}

/* sorting */
.grid_navbar .sorting {
	display: inline-block;
	position: absolute;
	line-height: 40px;
}

.grid_navbar .sorting>div.current.disabled {
	cursor: default;
	background: #e2e2e2;
}

.grid_navbar .sorting>div.current.disabled span.link {
	color: inherit;
}

.grid_navbar .current {
	height: 40px;
	padding: 0 20px 0 18px;
	cursor: pointer;
	user-select: none;
}

.grid_navbar .current.active {
	background: white;
	z-index: 11;
	position: relative;
	box-shadow: 0 0 0 1px #aaaaaa;
	border-bottom: 0;
}

.grid_navbar .sorting span.arrow {
	width: 9px;
	height: 6px;
	display: inline-block;
	margin: 0 0 0 2px;
	background: url('../img/gallery.png') -22px -1280px no-repeat;
}

.grid_navbar .sorting .active span.arrow {
	background-position: -22px -1267px;
}

.grid_navbar ul.fields {
	z-index: 10;
	background: white;
	position: absolute;
	top: 38px;
	left: 0;
	display: none;
	padding: 3px 0 5px;
	min-width: 100%;
	border: 2px #aaaaaa solid;
}

.grid_navbar ul.fields>li {
	padding: 0 18px;
	white-space: nowrap;
}

.grid_navbar ul.fields>li a.active {
	color: #2b2b2b;
}

/*** GRID NAVIGATION BAR END ***/

/*** LISTINGS GRID ***/
/* grid view */
section#listings>article {
	position: relative;
}

section#listings div.picture {
	position: relative;
	width: 100%;
	padding-bottom: 66%;
}

section#listings div.picture>img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: url(../img/no-picture.png) center center no-repeat white;
}

.listing-fit-contain div.picture>img {
	object-fit: contain !important;
}

#accounts div.picture>img {
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.listing-fit-contain div.picture:not(.no-picture)>img {
	background: white !important;
}

section#listings div.picture>span {
	min-width: 21px;
	height: 20px;
	position: absolute;
	bottom: 4px;
	left: 8px;
	border: 2px #efefef solid;
	text-align: center;
	font-size: 0.857em;
	cursor: pointer;
	z-index: 2;
}

section#listings div.picture>span:after {
	content: attr(accesskey);
	width: 100%;
	height: 100%;
	position: absolute;
	background: #f1f1f1;
	left: -4px;
	top: -4px;
	box-shadow: 0 0 0 2px #f1f1f1;
	line-height: 18px;
}

section#listings ul.nav-column>li .icon {
	opacity: 0.7;
	width: 18px;
	height: 18px;
	position: absolute;
	left: 0;
	top: 5px;
	cursor: pointer;
}

section#listings ul.nav-column>li:hover .icon {
	opacity: 1;
}

.favorite span.icon {
	background: url('../img/gallery.png') 0 -94px no-repeat;
	display: block;
	width: 18px;
	height: 16px !important;
	cursor: pointer;
}

section#listings.grid .icon {
	top: 1px !important;
}

.favorite.remove span.icon {
	background-position: -22px -94px;
}

section#listings ul.card-info>li:not(:last-of-type) {
	margin-bottom: 8px;
}

section#listings div.stat-line {
	position: absolute;
	bottom: 0;
}

section#listings div.stat-line>li,
section#listings div.stat-line>span {
	display: inline-block;
	margin-right: 10px;
}

section#listings>article div.navigation-column {
	width: 190px;
	padding-left: 20px
}

section#listings>article div.navigation-column div.before-nav {
	margin-bottom: 10px;
}

section#listings>article div.navigation-column div.before-nav:empty {
	display: none;
}

/* featured */
article.featured div.picture>span {
	border-color: #fb6a5c !important;
}

article.featured div.picture>img {
	border: 2px solid #fb6a5c;
}

article.featured div.picture>span:after {
	box-shadow: 0 0 0 2px #fb6a5c !important;
	background-color: #fb6a5c !important;
	color: white;
}

article.featured div.picture>span {
	border-color: white;
}

article.featured div.picture>div.label {
	position: absolute;
	right: 0;
	top: 0;
	height: 25px;
	line-height: 25px;
	padding: 0 10px;
	background: #fb6a5c;
	font-size: 0.929em;
	text-align: center;
	color: white;
	font-weight: 300;
	z-index: 1;
}

section.my-listings article.featured div.picture>div.label {
	top: 0;
}

/* featured end */

/* list view */
section#listings:not(.list):not(.grid) {
	display: none;
}

section.list>article {
	margin: 0 0 30px 0;
	max-width: 100%;
	flex: 0 0 100%;
}

section.list>article:not(.no-image) {
	min-height: 95px;
}

section#listings.list>article:last-of-type {
	margin-bottom: 0;
}

section#listings.list div.picture {
	width: 240px;
	height: 160px;
	/* aspect ratio 3:2 */
	padding-bottom: 0;
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
	float: left;
}

section#listings.list ul.card-info {
	overflow: hidden;
}

section#listings ul.card-info>li.system>span:not(:last-child) {
	margin-right: 30px;
}

section#listings ul.card-info span.favorite {
	display: inline-block;
	vertical-align: middle;
}

section#listings.list ul.nav-column.stick-top {
	padding: 0;
}

section#listings.list ul.nav-column>li {
	cursor: pointer;
	position: relative;
	padding: 3px 0 8px 25px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	user-select: none;
}

/* list view end */

/* grid view */
section.grid>article {
	padding-bottom: 30px;
}

section#listings.grid ul.card-info>ol {
	display: none;
}

section#listings.grid>article div.picture {
	margin-bottom: 10px;
}

section#listings.grid>article:not(.no-image) ul.card-info>li.title,
section#listings.grid>article:not(.no-image) ul.card-info>li.fields {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

section#listings.grid ul.card-info>li:not(:last-of-type) {
	margin-bottom: 4px;
}

section#listings.grid>article div.navigation-column {
	position: absolute;
	width: auto;
	bottom: 28px;
	right: 16px;
	z-index: 1;
}

section#listings.grid>article div.navigation-column div.before-nav {
	display: none;
}

section#listings.grid ul.nav-column>li {
	display: inline-block;
	height: 18px;
	width: 18px;
	margin-left: 8px;
	position: relative;
}

section#listings.grid ul.nav-column>li:first-child {
	margin-left: 0;
}

section#listings.grid ul.nav-column>li span.icon {
	top: 0;
}

section#listings.grid ul.nav-column>a>span.link,
section#listings.grid ul.nav-column>li>a>span.link,
section#listings.grid ul.nav-column>li>span.link {
	display: none;
}

/* grid view end */

/* no image grid view */
section#listings.list.no-image {
	margin: 0;
	padding: 0;
}

section#listings.list.no-image>article {
	display: block;
	border-bottom: 2px #e6e6e6 solid;
	margin: 0 auto 20px;
	padding: 0 0 10px;
}

section#listings.list.no-image a.link-large {
	font-size: 1.125em !important;
}

section#listings.list.no-image li.fields {
	padding-top: 7px;
}

section#listings.list.no-image ul.card-info>li.title {
	padding-bottom: 0;
}

/* no image grid view end */

/* map view */
#listings_map,
#accounts_map {
	height: 65vh;
}

/* map view end */

.category-description {
	border: 2px #e9e9e9 solid;
	padding: 14px 18px;
	margin: 0 0 20px;
}

/*** LISTINGS GRID END ***/

/*** LISTING DETAILS ***/
div.listing-details {
	position: relative;
}

div.listing-details h1 {
	margin: 0 0 24px 0;
	font-size: 2.5em;
	font-weight: 700;
	font-family: var(--font-heading);
	color: var(--primary);
	line-height: 1.2;
}

/* top navigation */
div.listing-details div.top-navigation {
	height: 48px;
	padding: 0 20px;
	background: var(--bg-main);
	border: 1px solid var(--border-color);
	border-radius: var(--radius) var(--radius) 0 0;
	position: relative;
}

div.listing-details div.top-navigation div.icons a.button {
	white-space: nowrap;
	overflow: hidden;
	max-width: 100%;
	text-overflow: ellipsis;
	text-align: left;
}

div.listing-details div.top-navigation div.icons>*:not(.button) {
	width: 18px;
	height: 18px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	margin: 12px 10px 0;

	opacity: 0.7;
}

div.listing-details div.top-navigation div.icons>*:not(.button):hover {
	opacity: 1;
}

div.listing-details div.top-navigation div.icons>a.button {
	margin-top: 7px;
}

div.listing-details div.top-navigation div.icons>*>span {
	width: 18px;
	height: 18px;
	display: inline-block;
	vertical-align: top;
}

div.listing-details div.top-navigation div.icons>span.favorite {
	margin-top: 13px;
}

/* top navigation end */

div.listing-details {
	overflow: hidden;
}

div.listing-details div.price-tag>span {
	font-size: 1.714em;
	font-weight: 700;
	color: #2c3549;
	font-family: var(--font-heading);
}

#area_listing div.listing-fields>div.row {
	margin-bottom: 25px;
}

/* main info section end */

/* icons */
a.print>span {
	background: url('../img/gallery.png') right -389px no-repeat;
}

/* icons end */

/* content section */
div.listing-details .content-section {
	padding: 24px 30px 28px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-top: none;
	border-radius: 0 0 var(--radius) var(--radius);
}

div.listing-details .content-section div.details {
	overflow: hidden;
}

div.listing-details div.tab_area div.no-group+div:not(.no-group) {
	margin-top: 25px;
}

/* content section end */

/* seller info section */
.seller-short div.picture {
	margin: 0 20px 10px 0;
}

.seller-short ul.seller-info {
	overflow: hidden;
}

.seller-short div.button-exists ul.seller-info {
	padding-bottom: 45px;
}

.seller-short ul.seller-info>li.name {
	margin-top: -4px;
}

.seller-short ul.seller-info>li.name a {
	font-weight: 400;
}

.seller-short ul.seller-info .type {
	font-weight: 400;
	color: var(--text-muted);
	font-size: 0.929em;
	font-style: italic;
	padding-top: 3px;
}

.seller-short ul.seller-info>li.about {
	font-size: 0.929em;
	padding: 10px 0 0;
}

.seller-short:not(.no-pucture) a.low {
	position: absolute;
	bottom: 0;
}

.seller-short div.form {
	margin-top: 25px;
}

.seller-short form div.field {
	position: relative;
}

.seller-short form input[type=text]:not([name=security_code]) {
	width: 100%;
	padding-left: 37px;
}

.seller-short form input+span {
	position: absolute;
	left: 11px;
	top: 10px;
	width: 18px;
	height: 18px;
	background: url('../img/gallery.png') right -141px no-repeat;

	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.seller-short form input[name=contact_email]+span {
	background-position: right -159px;
	height: 16px;
	top: 11px;
}

.seller-short form input[name=contact_phone]+span {
	background-position: right -175px;
}

.seller-short form input:focus+span {
	opacity: 1;
}

.seller-short div.info-table:not(.no-top-gap),
.seller-short div.owner-details {
	margin-top: 25px;
}

/* masked fields */
h3.cd-caption {
	margin: 0 !important;
	padding-bottom: 10px;
}

h3.cd-caption+div.info-table:not(.no-top-gap) {
	margin-top: 0 !important;
}

.masked>h3 {
	font-size: 1.286em;
	margin-top: 0;
	margin-bottom: 10px;
}

.masked {
	position: relative;
	min-height: 90px;
}

.masked>*:not(.login-mask):not(h3) {
	filter: blur(2px)
}

.masked div.login-mask {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	background: rgba(255, 255, 255, .6);
	text-align: center;
	box-shadow: 0 0 6px 6px rgba(255, 255, 255, .6);
	display: flex;
}

.masked div.login-mask>div {
	width: 100%;
	align-self: center;
}

.restricted-content>span {
	display: inline-block;
	margin-top: 10px;
}

.masked div.login-mask p {
	text-shadow: 1px 0 0 white;
}

.restricted-content>span>span {
	padding: 0 10px;
}

/* seller info section */

/* map capture */
.map-capture {
	cursor: pointer;
	position: relative;
}

.map-capture>img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	background-color: #e9e9e9;
}

/* map capture end */
/*** LISTING DETAILS END ***/

/*** ACCOUNTS GRID ***/
section#accounts>article div.picture {
	margin-right: 15px;
	margin-bottom: 5px;
	float: left;
	width: 100%;
	max-width: 100%;
	position: relative;
	background-color: white;
	text-align: center;
}

section#accounts>article div.no-picture div.picture>a,
section#accounts>article div.picture>a>img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}

section#accounts>article div.no-picture div.picture {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
	background-image: url('../img/no-account.png');
}

section#accounts div.statistics {
	overflow: hidden;
	position: relative;
	height: 105px;
}

section#accounts div.statistics>ul>li.name {
	padding-bottom: 5px;
	word-break: break-word;
}

section#accounts div.statistics div.counter span:first-child {
	display: block;
	font-size: 1.286em;
	font-weight: 600;
}

section#accounts div.statistics div.counter span:last-child {
	font-size: 0.929em;
}

section#accounts ul.info>li {
	line-height: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
}

section#accounts ul.info>li.fields {
	font-size: 0.929em;
	line-height: 18px;
}

section#accounts ul.info>li.fields>span:not(:last-child):after {
	content: ',';
}

section#accounts ul.info>li.tel a {
	font-weight: 400;
}

section#accounts .landscape {
	position: relative;
	max-width: 100%;
}

section#accounts .landscape div.picture {
	margin-right: 0;
	margin-left: 0;
	float: none;
}

section#accounts .landscape div.statistics {
	height: auto;
	position: static;
}

section#accounts .landscape div.statistics>ul>li.name {
	padding-top: 5px;
}

section#accounts .landscape div.statistics>div.counter {
	top: 0;
	position: absolute;
	background: rgba(101, 90, 88, .8);
	height: 22px;
	line-height: 20px;
	padding: 0 5px;
	color: white;
	pointer-events: none;
}

section#accounts .landscape div.statistics>div.counter span:first-child {
	display: inline;
	font-size: 0.929em;
	font-weight: 400;
}

/*** ACCOUNTS GRID END ***/

/*** ACCOUNT DETAILS PAGE ***/
section.seller-short li.counter {
	padding: 15px 0 0 0;
}

section.seller-short li.counter span:first-child {
	font-size: 1.286em;
	font-weight: 600;
}

section.seller-short li.counter span:last-child {
	font-size: 0.929em;
}

.account-location .map-capture {
	border: 1px #e9e9e9 solid;
	margin: 15px -18px -18px;
}

/*** ACCOUNT DETAILS PAGE END ***/

/*** ACCOUNT AREA ***/
.fb-connect {
	width: 100%;
	display: inline-block;
	line-height: 36px;
	height: 38px;
	padding: 0 20px 0;
	color: white !important;
	font-size: 1.071em;
	background: #547fd8 !important;
	position: relative;
	margin-top: 1rem;
	vertical-align: top;
	transition: background 0.3s ease;
}

.fb-connect:before {
	content: 'f';
	position: absolute;
	width: 17px;
	height: 20px;
	line-height: 20px;
	left: 12px;
	top: 7px;
	font-size: 1.071em;
	border-right: 1px #547fd8 solid;
	text-align: left;
}

.fb-connect:hover {
	background: #759be9 !important;
}

.welcome {
	padding: 0 0 12px;
	font-size: 1.071em;
	color: rgba(255, 255, 255, 0.6);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: 8px;
}

ul.account-menu-content {
	display: inline-block;
}

ul.account-menu-content>li {
	padding: 4px 30px 4px 0;
	position: relative;
	border-radius: 4px;
	transition: background 0.2s ease;
}

ul.account-menu-content>li:hover {
	background: rgba(255, 255, 255, 0.05);
}

ul.account-menu-content>li:last-child {
	padding: 0;
}

div.attention:not(:empty) {
	padding: 0 0 15px;
}

div.attention span.red {
	padding: 0;
}

.login-page-form {
	max-width: 250px;
}

/*** ACCOUNT AREA END ***/

/*** TABLES ***/
/* submit table */
table.submit {
	table-layout: fixed;
}

table.submit td {
	height: 38px;
	padding: 0 0 10px;
}

table.submit td.name {
	width: 170px;
	padding-right: 10px;
}

table.submit td .name {
	padding: 5px 0 5px;
}

table.submit td.field input[type=text],
table.submit textarea {
	width: 100%;
}

table.submit td.button {
	padding: 10px 0 0 0;
}

table.submit a.close {
	padding-left: 20px;
}

/* submit table end */

/* table view table */
table.table {
	table-layout: fixed;
}

table.table td {
	min-height: 30px;
	padding: 5px 0;
	vertical-align: top;
}

table.table td.name {
	width: 215px;
	color: #949494;
	padding-right: 10px;
}

table.table td.value {
	color: #000000;
	word-wrap: break-word;
}

/* table view table end */

/* list table */
table.list {
	width: 100%;
	table-layout: fixed;
}

table.list span.text {
	color: #515151;
	font-size: 0.857em;
}

table.list>tbody>tr.header {
	border: 2px #e9e9e9 solid;
}

table.list>tbody>tr.header>td {
	font-size: 0.929em;
	padding: 0 0 0 30px;
	height: 40px;
}

table.list>tbody>tr.header>td:first-child {
	padding-left: 10px;
	width: 33px;
}

table.list tr.header td.divider {
	padding: 0;
	width: 5px;
	border: 0;
}

table.list>tbody>tr.body {
	border-bottom: 2px #e9e9e9 solid;
}

table.list>tbody>tr.body>td {
	padding: 20px 0 20px 30px;
	white-space: nowrap;
	text-overflow: ellipsis;
}

table.list>tbody>tr.body>td.info>a {
	white-space: normal;
}

table.list>tbody>tr.body>td:first-child {
	padding-left: 11px;
}

table.list>tbody td.no_padding {
	padding-left: 5px !important;
	padding-right: 5px !important;
}

table.list tr.body td.divider {
	border: 0;
}

table.list td.price div {
	width: 50px;
	background: red;
	color: #000000;
	font-size: 16px;
	line-height: 17px;
	padding: 5px 5px;
	margin-right: 10px;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: 600;
	overflow: hidden;
}

table.list span.name {
	text-transform: uppercase;
}

/* list table end */

div.list-table {
	display: table;
	width: 100%;
}

div.list-table>div {
	display: table-row;
	position: relative;
	margin: 0;
}

div.list-table>div:not(.header):hover {
	background: rgba(0, 0, 0, .05)
}

div.list-table>div:before,
div.list-table>div:after {
	content: none;
}

div.list-table>div.header {
	height: 28px;
}

div.list-table>div>div {
	display: table-cell;
	padding-right: 15px;
}

div.list-table>div>div:last-child {
	padding-right: 0;
}

div.list-table>div.header>div {
	vertical-align: top;
	font-size: 0.929em;
	color: #8e8e8e;
	border-bottom: 2px #e9e9e9 solid;
	text-transform: uppercase;
	font-weight: 400;
	white-space: nowrap;
}

div.list-table>div>div.center {
	padding-right: 0 !important;
}

div.list-table>div.row>div {
	vertical-align: top;
	padding-top: 11px;
	padding-bottom: 11px;
	color: #111111;
}

div.list-table>div.row>div>div.inline {
	display: inline;
}

div.list-table>div.row>div.text {
	padding-top: 22px;
}

div.list-table>div.row>div>table.table {
	margin-top: -5px;
}

div.list-table>div.row>div>table.table td.name {
	width: 150px;
}

div.list-table .text {
	color: #515151;
	font-size: 0.857em;
}

div.list-table span.title {
	display: none;
}

.mass-actions {
	padding: 15px 0 0 14px;
}

.mass-actions>a:not(:last-child):after {
	content: '|';
	padding: 0 10px;
	color: #5c5c5c;
	font-size: 0.929em;
}

.statuses .paid,
.statuses .unpaid,
.statuses .active,
.statuses .approval,
.statuses .incomplete,
.statuses .pending,
.statuses .expired {
	color: #63b53b;
	font-size: 0.929em;
}

.statuses .approval {
	color: #666666;
}

.statuses .incomplete {
	color: #2767b5;
}

.statuses .pending {
	color: #e88d22;
}

.statuses .expired {
	color: #fb0000;
}

.statuses .paid {
	color: #63b53b;
}

.statuses .unpaid {
	color: #fb0000;
}

.statuses .active:before,
.statuses .approval:before,
.statuses .incomplete:before,
.statuses .pending:before,
.statuses .expired:before {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	background: #63b53b;
	margin-right: 8px;
}

.statuses .approval:before {
	background: #666666;
}

.statuses .incomplete:before {
	background: #2767b5;
}

.statuses .pending:before {
	background: #e88d22;
}

.statuses .expired:before {
	background: #fb0000;
}

/*** TABLES END ***/

/*** FIELDSET ***/
div.fieldset {
	margin: 0 0 20px 0;
}

div.fieldset>header {
	padding: 0 0 8px;
	border-bottom: 2px #e1e1e1 solid;
	text-transform: uppercase;
	color: #8e8e8e;
	font-weight: 400;
	font-size: 0.929em;
}

div.fieldset>header>span.arrow {
	display: none;
}

div.fieldset>div.body>div {
	padding: 15px 0 5px;
}

#controller_area div.fieldset>header,
.content_block div.fieldset>header {
	border: 0;
	padding-bottom: 0;
}

#controller_area div.fieldset>header>span.arrow {
	width: 18px;
	height: 18px;
	display: inline-block;
	vertical-align: bottom;
	margin-right: 10px;
	cursor: pointer;
	opacity: 0.7;
	position: relative;
	background: url('../img/gallery.png') 0 -225px no-repeat;
}

#controller_area div.fieldset>header>span.arrow:hover {
	opacity: 1;
}

#controller_area div.fieldset>header>span.arrow.up {
	background-position: right -225px;
}

#controller_area div.fieldset>div.body>div {
	padding-top: 10px;
}

.row>div.fieldset.divider {
	padding-left: 15px;
	padding-right: 15px;
}

div.fieldset.divider {
	margin: 0 0 15px 0;
}

div.fieldset.divider>header {
	margin: 0;
}

/*** FIELDSET END ***/

/*** STEPS ***/
ul.steps {
	box-shadow: inset 0 0 0 2px #e1e1e1;
	height: 44px;
	margin: 0 0 25px 0;
	white-space: nowrap;
	overflow: hidden;
	display: flex;
}

ul.steps>li {
	display: inline-block;
	height: 44px;
	line-height: 44px;
	text-align: center;
	position: relative;
	flex: 1;
}

ul.steps>li a {
	cursor: default;
	padding: 0 0 0 15px;
}

ul.steps>li.past a {
	cursor: pointer;
}

ul.steps>li.past,
ul.steps>li.current {
	background: #e1e1e1;
}

ul.steps>li:not(.past) a {
	color: #5c5c5c;
}

ul.steps>li:not(:last-child):not(.past):after,
ul.steps>li:not(:last-child):not(.past):before {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

ul.steps>li:not(:last-child):not(.past):after {
	border-color: transparent;
	border-left-color: #f2f2f2;
	border-width: 20px 0 20px 10px;
	margin-top: -20px;
}

ul.steps>li:not(:last-child):not(.past):before {
	border-color: transparent;
	border-left-color: #e1e1e1;
	border-width: 24px 0 24px 13px;
	margin-top: -24px;
}

ul.steps>li.current:after {
	display: none;
}

/*** STEPS END ***/

/*** PAYMENT GATEWAYS ***/
ul#payment_gateways li {
	display: inline-block;
	width: 120px;
	height: 85px;
	text-align: center;
	padding: 15px 0 0 0;
	margin: 0 10px 10px 0;
	box-shadow: inset 0 0 0 2px #e9e9e9;
}

ul#payment_gateways li.active,
ul#payment_gateways li:hover {
	background: #e9e9e9;
}

ul#payment_gateways li p {
	padding: 5px 0 0 0;
}

ul#payment_gateways li input {
	opacity: 1;
	position: relative;
	width: auto;
	height: auto;
}

/* PAYMENT GATEWAYS END ***/

/*** REGISTRATION ***/
/* password strange control */
div.password_strength {
	padding: 0 0 0 10px;
}

div.password_strength div.scale {
	background: #dfdfdf;
	width: 71px;
	height: 7px;
	position: relative;
}

div.password_strength div.scale div.color {
	height: 7px;
	width: 0;
}

div.password_strength div.scale div.red {
	background: #ed2f0b;
}

div.password_strength div.scale div.green {
	background: #23a50c;
}

div.password_strength div.scale div.yellow {
	background: #ebcc00;
}

div.password_strength div.scale div.shine {
	width: 0;
	height: 7px;
	position: absolute;
	top: 0;
	left: 0;
}

div.area_profile div.notice {
	padding: 7px 0 10px;
}

div.area_profile div.options {
	padding-top: 10px;
}

div.area_profile div.field img.qtip {
	margin-top: 2px;
}

/* password strange control end */

span.fail_field,
span.success_field {
	display: none;
}

/*** REGISTRATION END ***/

/*** MODAL WINDOW ***/
#modal_mask {
	background: rgba(255, 255, 255, 0.7);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1005;

}

.modal_block {
	position: absolute;
	left: 50%;
	margin-left: -176px;
	width: 340px;
	height: 230px;
	background: #f1f1f1;
	box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.1);
}

.modal_block.fullscreen {
	position: fixed;
	left: 0;
	top: 0;
	margin: 0;
}

.modal_block.fullscreen .gmnoprint {
	margin-right: 60px !important;
}

.modal_block div.inner div.close {
	position: absolute;
	top: 5px;
	right: 0;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.modal_block div.inner div.close>div {
	width: 14px;
	height: 14px;
	margin: 11px;
	background: url('../img/gallery.png') right -469px no-repeat;
	opacity: 0.7;
}

.modal_block div.inner div.close:hover>div {
	opacity: 1;
}

.modal_block div.inner div.modal_content {
	padding: 25px 50px 25px 30px;
	position: relative;
}

.modal_block.fullscreen div.inner,
.modal_block.fullscreen div.inner>.modal_content {
	width: 100%;
	height: 100%;
	overflow: auto;
}

.modal_block.fill-edge div.inner div.modal_content {
	padding: 0;
}

#map_fullscreen {
	width: 100%;
	height: 100%;
}

.modal_block div.inner div.caption,
.modal_block div.inner div.caption_padding {
	color: #2b2b2b;
	font-size: 1.143em;
	padding: 0 0 20px;
	font-weight: bold;
	margin-top: -7px;
}

.modal_block div.inner div.warning,
.modal_block div.inner div.notice {
	background: url('../img/gallery.png') -20px -1594px no-repeat;
	padding: 0 0 0 30px;
	margin: 0 0 20px;
}

.modal_block div.inner div.notice {
	background-position: -21px -1346px;
}

.modal_block div.prompt {
	padding: 20px 0 0 0;
}

.modal_block div.prompt input {
	margin: 0 15px 0 0;
}

.modal_block div.submit-cell div.name {
	width: 80px !important;
	padding-right: 10px;
}

/*** MODAL WINDOW END ***/

/*** NOTIFICATIONS ***/
div.notification {
	min-height: 45px;
	position: absolute;
	top: 0;
	width: 576px;
	left: 50%;
	margin-left: -288px;
	z-index: 100;
}

div.notification>div {
	background: rgba(0, 0, 0, .3);
	min-height: 46px;
	color: white;
	position: relative;
	font-size: 0.929em;
	font-weight: 300;
	padding: 3px;
}

div.notification.fixed {
	position: fixed;
}

div.notification.done {
	top: 62px;
	transition: top 0.3s ease;
}

div.notification.top {
	z-index: 1200;
	position: fixed;
	top: 0;
}

div.notification.error>div>div.message {
	background: #f2695e;
}

div.notification.warning>div>div.message {
	background: #dab500;
}

div.notification>div>div.message {
	padding: 14px 45px 14px 18px;
	word-wrap: break-word;
	line-height: 1.640em;
}

div.notification ul {
	padding: 0 0 0 20px;
}

div.notification ul>li {
	list-style: circle;
}

div.notification ul>li:not(:first-child) {
	list-style: circle;
	padding: 4px 0 0 0;
}

div.notification div.close-black {
	top: 3px;
	right: 3px;
}

/*** NOTIFICATIONS END ***/

/*** MY LISTINGS ***/
.my-listings>article div.picture {
	margin: 0 !important;
}

.my-listings>article {
	margin: 0 0 15px 0 !important;
	padding: 0 0 15px 0;
	min-height: 95px;
	border-bottom: 2px #e6e6e6 solid;
}

.my-listings>article:last-child {
	margin-bottom: 0;
}

.my-listings>article>div.nav>div {
	display: inline-block;
	vertical-align: top;
	margin-right: 30px;
}

.my-listings>article>div:last-child {
	margin-right: 0;
}

.my-listings div.title {
	font-size: 1.143em !important;
	font-weight: 600 !important;
	padding-bottom: 15px;
}

.my-listings div.navigation ul>li {
	padding: 0 0 12px 0;
}

.my-listings div.navigation ul>li:last-child {
	padding: 0;
}

.my-listings div.navigation ul>li select {
	width: 100%;
}

.my-listings div.navigation ul>li a {
	position: relative;
	display: inline-block;
	padding: 0 0 0 25px;
}

.my-listings div.navigation ul li.nav-icon>a:before {
	content: '';
	background-image: url('../img/gallery.png');
	background-repeat: no-repeat;
	background-position: right -535px;
	width: 16px;
	height: 16px;
	left: 0;
	top: 2px;
	position: absolute;
	opacity: 0.5;
}

.my-listings div.navigation ul li.nav-icon>a.add-video:before {
	background-position: right -513px;
}

.my-listings div.navigation ul li.nav-icon>a.edit:before {
	background-position: 0 -488px;
}

.my-listings div.navigation ul li.nav-icon>a.unsubscription:before {
	background-position: right -621px;
}

.my-listings div.navigation ul li.nav-icon>a.delete:before {
	background-position: right -489px;
}

.my-listings div.navigation ul li.nav-icon>a:hover:before {
	opacity: 0.8;
}

.my-listings div.stat ul>li {
	padding: 0 0 8px 0;
	color: #333333;
}

.my-listings div.stat ul>li.switcher-controll {
	padding-bottom: 12px;
}

.my-listings div.stat ul>li span.name {
	color: #949494;
}

.my-listings div.stat ul>li span.name:after {
	content: ':';
}

.delete.icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url('../img/gallery.png') right -489px no-repeat;
	cursor: pointer;
	opacity: 0.5;
}

.delete.icon:hover {
	opacity: 0.8;
}

/*** MY LISTINGS END ***/

/*** MY BANNERS ***/
body.my-banners-page .my-listings>article>div {
	display: inline-block;
	vertical-align: top;
	width: 190px;
	margin-right: 30px;
}

body.my-banners-page .my-listings div.title {
	padding-top: 5px;
}

/*** MY BANNERS END ***/

/*** HORIZONTAL SEARCH ***/
section.horizontal-search {
	padding: 220px 0 120px;
	background: url('../img/doggy-bg.jpg') center center no-repeat var(--nav-bg);
	background-size: cover;
	position: relative;
}

/* Transparent Header for Homepage */
body.home-page header.page-header {
	position: absolute;
	width: 100%;
	z-index: 1000;
	background: transparent;
}

body.home-page header.page-header section.main-menu {
	background: transparent;
	box-shadow: none;
}

/* Maintain background and position when scrolling (sticky) */
body.home-page header.page-header.fixed-menu {
	position: fixed !important;
	background: var(--nav-bg) !important;
}

body.home-page header.page-header.fixed-menu section.main-menu {
	background: var(--nav-bg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

section.horizontal-search:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(44, 53, 73, 0.75) 0%, rgba(44, 53, 73, 0.5) 100%);
	z-index: 0;
}

section.horizontal-search>* {
	position: relative;
	z-index: 1;
}

section.horizontal-search:not(.no-tabs) {
	padding-top: 94px;
}

section.horizontal-search>div.point1 {
	margin: 0 auto;
}

section.horizontal-search #search_area {
	background: rgba(255, 255, 255, 0.15);
	position: relative;
	border-radius: var(--radius-lg);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	overflow: visible;
}

section.horizontal-search #search_area .search_tabs {
	/* background: rgba(255, 255, 255, 0.05) !important; */
	/* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

section.horizontal-search #search_area .search_tabs li a {
	color: rgba(255, 255, 255, 0.9) !important;
	background: rgb(53, 167, 163) !important;
}

section.horizontal-search #search_area .search_tabs li.active a {
	color: white !important;
	background: rgba(255, 255, 255, 0.1);
}

section.horizontal-search #search_area .search-form-cell span {
	/* color: rgba(255, 255, 255, 0.9) !important; */
}

section.horizontal-search #search_area input[type=text],
section.horizontal-search #search_area select {
	background: #fff !important;
}

section.horizontal-search #search_area select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M1 4l5 5 5-5z'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 15px center !important;
	background-size: 12px !important;
	padding-right: 35px !important;
}

section.horizontal-search.h1-exists {
	padding-top: 80px !important;
}

section.horizontal-search h1 {
	margin: 0 0 40px 0;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
	font-family: var(--font-heading);
	font-weight: 700;
	color: white;
	text-align: center;
	font-size: 3.2em;
	letter-spacing: -0.5px;
	line-height: 1.2;
}

section.horizontal-search h1 span {
	display: block;
	font-size: 0.55em;
	font-style: italic;
	font-weight: 400;
	opacity: 0.9;
	margin-top: 10px;
}

section.horizontal-search.no-tabs:not(.advanced-exists) h1 {
	margin: 0 0 30px 0 !important;
}

/*** HORIZONTAL SEARCH END ***/

/*** HOME PAGE GALLERY ***/
.gallery-container {
	height: 377px;
}

section.features-gallery {
	margin-top: 40px;
}

section.features-gallery>div.point1 {
	margin: 0 auto;
}

div.featured_gallery ul.featured {
	white-space: nowrap;
	font-size: 0;
	background: var(--bg-main);
	margin: 0;
	float: right;
	width: 142px;
	height: 100%;
	padding: 0 0 0 2px;
	align-content: flex-start;

	transition: transform 0.2s ease;
}

div.featured_gallery div.preview {
	background: white;
	position: relative;
	overflow: hidden;
	user-select: none;
}

div.featured_gallery div.preview:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	width: 30px;
	height: 30px;
	background-color: var(--accent);
	margin: -15px 0 0 -15px;
	animation: rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes rotateplane {
	0% {
		-webkit-transform: perspective(120px)
	}

	50% {
		-webkit-transform: perspective(120px) rotateY(180deg)
	}

	100% {
		-webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
	}
}

@keyframes rotateplane {
	0% {
		transform: perspective(120px) rotateX(0deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
	}

	50% {
		transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
	}

	100% {
		transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
		-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	}
}

div.featured_gallery div.preview>.fg-title,
div.featured_gallery div.preview>.fg-price {
	height: 39px;
	max-width: 100%;
	line-height: 39px;
	background: rgba(101, 90, 88, .8);
	position: absolute;
	padding: 0 15px;
	color: white;
	font-size: 1.143em;
	top: 0;
	left: 0;
	z-index: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

div.featured_gallery div.preview>.fg-price {
	background: rgba(75, 176, 136, .85);
	top: auto;
	bottom: 0;
	height: 45px;
	line-height: 45px;
	font-size: 1.5em;
}

div.featured_gallery div.preview>a>div {
	height: 100%;
	display: none;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: relative;
}

div.featured_gallery ul.featured>li {
	position: relative;
	overflow: visible;
	padding: 0;
	opacity: 0.7;
	flex: none;
	height: 95px;
	width: 100%;
	margin: 0;
}

div.featured_gallery ul.featured>li img {
	filter: grayscale(100%);
	cursor: pointer;
	width: 100%;
	height: 100%;
	margin-bottom: 2px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

div.featured_gallery ul.featured>li:last-child img {
	margin: 0;
}

div.featured_gallery ul.featured li.active {
	opacity: 1;
}

div.featured_gallery ul.featured li.active img {
	filter: none;
	cursor: default;
}

div.featured_gallery ul.featured ul.card-info .icons {
	display: none;
}

.special-block>section {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin: 0;
}

.special-block>section>div {
	flex: 1;
	overflow: hidden;
	overflow-x: hidden !important;
}

.special-block .field-bound-box-text-pic,
.special-block .field-bound-box-icon {
	margin-bottom: 0 !important;
}

.special-block section ul.featured:last-child {
	margin-bottom: 0;
}

/*** HOME PAGE GALLERY END ***/

/*** PLUGINS CUSTOM ***/
li#listing_rating_dom {
	padding: 7px 0 12px !important;
}

#loan_reset_form {
	content: '';
	display: inline-block;
	width: 18px;
	height: 16px;
	background: url('../img/gallery.png') 0 -621px no-repeat;
	margin-left: 20px;
	cursor: pointer;

	opacity: 0.7;
}

#loan_reset_form:hover {
	opacity: 1;
}

div.banner {
	display: inherit !important;
}

#recaptcha_response_field {
	height: 20px;
}

body>iframe[src='about:blank'] {
	display: none;
}

/*** PLUGINS CUSTOM END ***/

/*** RESPONSIVE ***/
.point1 {
	width: 100%;
}

/*** ALL DESKTOP VIEWS ***/
@media screen and (min-width: 992px) {
	div#header-banner {
		width: 728px;
		height: 90px;
		margin: auto;
	}

	section#main_container>div.inside-container {
		padding: 35px 0 50px;
	}

	section#controller_area {
		padding-bottom: 30px;
	}

	/* main menu */
	header.page-header.fixed-menu+div#wrapper {
		margin-top: 90px;
	}

	header.page-header.fixed-menu {
		height: auto;
		width: 100%;
		position: fixed;
		top: 0;
		z-index: 100;
	}

	header.page-header.stick {
		transition: none;
	}

	header.page-header.fixed-menu section.main-menu>div:before {
		display: none;
	}

	nav.menu,
	nav.menu>div {
		height: 100% !important;
		display: flex !important;
		align-items: center !important;
	}

	header.page-header.fixed-menu section.main-menu a.add-property {
		margin: 0;
	}

	section.main-menu nav {
		margin-left: auto;
		display: flex;
		align-items: center;
		height: 100%;
	}

	section.main-menu ul.menu {
		height: 100%;
		white-space: nowrap;
		overflow: visible;
		display: flex !important;
		align-items: center !important;
	}

	section.main-menu div.mobile-menu-button {
		display: none;
	}

	section.main-menu ul.menu>li {
		display: flex !important;
		align-items: center !important;
		height: 100% !important;
		padding: 0;
	}

	section.main-menu ul>li>a:hover,
	section.main-menu ul>li.active>a,
	nav.footer-menu a:hover {
		color: var(--accent);
	}

	section.main-menu ul>li.active>a {
		border-color: var(--accent);
	}

	/* main menu end */

	/* sidebar block */
	section.side_block>h3 {
		font-size: 1.286em;
		font-weight: 400;
		margin-top: -3px;
	}

	section.side_block:not(.no-style) {
		background: white;
		padding: 30px;
	}

	aside.left>section.side_block:not(.no-style):last-child,
	section#content aside:last-of-type>section:not(.no-style):last-of-type>div {
		background-color: #f7fffc;
	}

	section.side_block:not(.no-style)>div {
		background-color: transparent !important;
	}

	/* sidebar block end */

	section.side_block span.expander {
		display: none;
	}

	.grid_navbar {
		margin-bottom: 30px;
	}

	body.no-sidebar .advanced-search-form {
		width: 60%;
	}

	section.side_block ul.featured {
		text-align: center;
		margin: 0;
	}

	section.side_block ul.featured>li {
		flex: 0 0 100%;
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
	}

	section.side_block ul.featured>li:last-child {
		margin-bottom: 0;
	}

	section.side_block ul.featured:not(.list)>li ul {
		width: 100%;
		padding: 10px 0 0 0;
		text-align: left;
		background: none;
	}

	span.pills>label {
		width: auto !important;
	}

	section.side_block_search div.field:empty {
		min-height: 0;
	}

	div.submit-cell>div.field.checkbox-field,
	div.submit-cell>div.field.inline-fields {
		max-width: 600px;
	}

	.seller-short div.landscape ul.seller-info {
		padding: 0;
	}

	.seller-short div.landscape ul.seller-info>li.name {
		margin-top: 0;
	}

	.seller-short div.landscape ul.seller-info>li {
		padding-bottom: 5px;
	}

	.seller-short div.landscape ul.seller-info a.low {
		position: static;
		margin-top: 10px;
	}

	section.side_block table.table td.name {
		width: 45%;
	}

	.special-block .categories-box__scrollbar {
		max-height: none;
	}
}

/*** LARGE DESKTOP VIEW ***/
@media screen and (min-width: 1200px) {
	.point1 {
		max-width: 1140px;
	}

	section.main-menu nav {
		width: 870px;
	}

	div.table-mode .search-form-cell {
		display: table-cell;
	}

	#search_area div.table-mode {
		display: table;
		width: 100%;
	}

	#search_area div.table-mode>form {
		display: table-row;
	}

	div.table-mode .search-form-cell.numeric-field,
	div.table-mode .search-form-cell.single-field {
		width: 10%;
	}

	div.table-mode .search-form-cell.checkbox-field {
		width: 15%;
	}

	div.table-mode .search-form-cell.submit {
		width: 8%;
	}

	section.side_block ul.featured>li div.picture {
		float: left;
		width: 120px;
		height: 75px;
		margin-right: 20px;
		padding-bottom: 0;
	}

	section.side_block ul.featured div.picture img {
		background-size: 100% auto;
	}

	section.side_block ul.featured>li>ul {
		padding: 0 !important;
		overflow: hidden;
		width: auto !important;
	}

	section.side_block ul.featured>li>ul>li:first-child {
		margin-top: -4px;
	}

	section.account-info h3 {
		white-space: normal;
		max-width: 230px;
	}

	.seller-short ul.seller-info {
		min-width: 170px;
	}
}

/*** LAPTOP VIEW ***/
@media screen and (width: 1280px) {}

/*** MIDDLE DESKTOP VIEW ***/
@media screen and (min-width: 992px) and (max-width: 1199px) {
	.point1 {
		max-width: 940px;
	}

	section.main-menu nav {
		width: 660px;
	}

	section.horizontal-search {
		padding: 40px 0;
	}

	section.horizontal-search:not(.no-tabs) {
		padding-top: 74px;
	}

	.search-block-content form div.search-form-cell {
		width: 33.333%;
	}

	section.side_block:not(.no-style) {
		padding: 20px;
	}

	.gallery-container {
		height: 418px;
	}

	div.featured_gallery {
		padding-bottom: 84px;
		position: relative;
	}

	div.featured_gallery ul.featured {
		flex-wrap: nowrap;
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 84px;
		padding: 2px 0 0 0;
	}

	div.featured_gallery ul.featured>li {
		flex: 0 0 20%;
		max-width: 20%;
		margin: 0 1px 0 0;
		height: 82px;
	}

	div.featured_gallery ul.featured>li img {
		width: 122px;
	}


	section.account-info h3 {
		white-space: normal;
		max-width: 160px;
	}

	.search-item.checkbox-field>.custom-input {
		width: 100%;
	}

	.seller-short ul.seller-info {
		min-width: 110px;
	}

	section#listings.list div.picture {
		width: 190px;
		height: 126px;
	}

	section#listings>article div.navigation-column {
		width: 150px;
	}

	section#listings ul.card-info>li {
		margin-bottom: 4px;
	}
}

/*** ALL TABLET/DESKTOP VIEWS ***/
@media screen and (min-width: 768px) {

	/*** HORIZONTAL SEARCH ***/
	section.horizontal-search a.advanced_search {
		/* background: rgba(101, 90, 88, .8); */
		position: absolute;
		height: 34px;
		line-height: 32px;
		top: -44px;
		padding: 0 35px 0 15px;
		right: 0;
		color: white;

		transition: background-color 0.3s ease;
	}

	section.horizontal-search a.advanced_search:hover {
		background-color: rgb(50, 154, 152) !important;
	}

	section.horizontal-search a.advanced_search:after {
		content: '';
		position: absolute;
		top: 12px;
		right: 15px;
		width: 6px;
		height: 10px;
		background: url('../img/gallery.png') right -314px no-repeat;
	}

	.search-block-content form div.search-form-cell.submit {
		float: right;
	}

	/*** HORIZONTAL SEARCH END ***/
}

/*** ALL TABLET/MOBILE VIEWS ***/
@media screen and (max-width: 991px) {
	body header.page-header {
		height: auto !important;
		position: sticky;
		top: 0;
		z-index: 200;
		background: var(--nav-bg);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	}

	body header.page-header section.main-menu {
		height: 58px;
		min-height: 58px;
		box-shadow: none;
	}

	div#logo {
		margin-top: 0;
	}

	div#logo img {
		height: 38px !important;
	}

	section#controller_area:not(:empty)+aside {
		margin-top: 22px;
	}

	section.main-menu {
		padding-top: 0;
	}

	/* hide add-property button on mobile - it's in the slide menu */
	section.main-menu a.add-property.button,
	a.add-property.button {
		display: none !important;
	}

	/* header actions on mobile */
	.header-actions {
		margin-left: auto;
		gap: 8px;
	}

	.header-actions .circle>.default>span {
		display: none;
	}

	.header-actions .circle>.default:after {
		display: none;
	}

	.header-actions .circle>.default {
		padding: 4px;
		border: none;
	}

	section.main-menu nav.menu {
		display: flex;
		align-items: center;
		margin-left: 0;
	}

	section.main-menu span.menu-button {
		display: inline-block !important;
		width: 38px;
		height: 38px;
		cursor: pointer;
		position: relative;
		border-radius: 6px;
		transition: background 0.2s ease;
	}

	section.main-menu span.menu-button:hover {
		background: rgba(255, 255, 255, 0.1);
	}

	section.main-menu span.menu-button>span {
		position: absolute;
		width: 20px;
		height: 2px;
		background: rgba(255, 255, 255, 0.85);
		right: 9px;
		top: 12px;
		border-radius: 2px;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		transform-origin: center;
	}

	section.main-menu span.menu-button>span:nth-child(2n) {
		top: 18px;
	}

	section.main-menu span.menu-button>span:last-child {
		top: 24px;
	}

	section.main-menu span.menu-button.menu-opened>span:first-child {
		transform: rotate(45deg);
		top: 18px;
	}

	section.main-menu span.menu-button.menu-opened>span:nth-child(2n) {
		opacity: 0;
		transform: scaleX(0);
	}

	section.main-menu span.menu-button.menu-opened>span:last-child {
		transform: rotate(-45deg);
		top: 18px;
	}

	section.main-menu nav.menu ul.menu {
		display: none !important;
		background: var(--primary-dark);
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 305;
		width: 280px;
		max-width: 85vw;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding: 58px 24px 55px;
		box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
	}

	section.main-menu nav.menu ul.menu.show {
		display: flex !important;
		flex-direction: column !important;
	}

	section.main-menu nav.menu ul.menu>li.mobile-only-listing {
		display: block !important;
		margin-top: 25px !important;
		margin-bottom: 0 !important;
		order: 100 !important;
		/* Ensure it stays at the end */
	}

	section.main-menu nav.menu ul.menu>li.mobile-only-listing a {
		background: #35A7A3 !important;
		color: white !important;
		text-align: center;
		font-weight: 700;
		padding: 15px !important;
		border-radius: 8px !important;
		font-size: 16px !important;
		box-shadow: 0 4px 12px rgba(53, 167, 163, 0.3);
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	section.main-menu nav.menu ul.menu>li.mobile-only-listing a:before {
		content: '';
		display: inline-block;
		width: 18px;
		height: 18px;
		margin-right: 10px;
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E") no-repeat center;
		background-size: contain;
		vertical-align: middle;
		margin-top: -3px;
	}

	section.main-menu nav.menu ul.menu>li>a {
		padding: 5px 12px;
		display: block;
		color: rgba(255, 255, 255, 0.8);
		border-radius: 6px;
		transition: all 0.2s ease;
		font-size: 14px;
		height: auto;
		line-height: normal;
		text-transform: none;
		letter-spacing: normal;
		font-family: var(--font-body);
	}

	section.main-menu nav.menu ul.menu>li>a:after {
		display: none;
	}

	section.main-menu nav.menu ul.menu>li>a:hover {
		color: white;
		background: rgba(255, 255, 255, 0.08);
	}

	section.main-menu nav.menu ul.menu>li.active>a {
		color: var(--accent);
		background: var(--accent-soft);
	}

	section.main-menu ul.menu span.mobile-menu-header {
		display: block !important;
		margin-bottom: 15px;
		position: relative;
	}

	section.main-menu span.mobile-menu-header>span:first-child {
		color: rgba(255, 255, 255, 0.5);
		font-size: 0.85em;
		text-transform: uppercase;
		letter-spacing: 1.5px;
		font-weight: 600;
	}

	section.main-menu span.mobile-menu-header>span:last-child {
		position: absolute;
		width: 25px;
		height: 32px;
		right: 0;
		top: -3px;
		cursor: pointer;
	}

	section.main-menu span.mobile-menu-header>span:last-child:before {
		content: '';
		position: absolute;
		width: 18px;
		height: 18px;
		left: 7px;
		top: 8px;
		background: url('../img/gallery.png') 0 -8px no-repeat;
		opacity: 0.7;

		transition: opacity 0.3s ease;
	}

	section.main-menu span.mobile-menu-header>span:last-child:hover:before {
		opacity: 1;
	}

	footer.page-footer .footer-data {
		text-align: center;
	}

	nav.footer-menu>ul {
		display: none;
	}

	footer.page-footer span.scroll-top {
		top: 0px;
		left: 0px;
	}

	body.view-details-page.get-details-box section#main_container section.seller-short {
		display: none;
	}

	section.side_block_search>h3 {
		color: #4bb088;
	}

	div.search-footer div.search-item {
		float: left;
	}

	div.search-footer div.align-button {
		text-align: right;
	}

	ul#messages_area>li>span {
		display: block;
	}

	.gallery-container {
		height: auto;
	}

	section.content_block:not(.no-style)>div,
	section.side_block:not(.no-style)>div {
		padding: 20px 20px;
	}
}

/*** FIXED TABLET VIEW ***/
@media screen and (width: 768px) {
	section.main-menu nav.menu ul.menu {
		right: 0;
	}
}

/*** TABLET VIEW ***/
@media screen and (min-width: 768px) and (max-width: 991px) {
	.point1 {
		max-width: 720px;
	}

	section.content_block {
		margin-bottom: 20px;
	}

	aside.middle section.content_block:last-child {
		margin-bottom: 0;
	}

	span.pills>label {
		width: auto !important;
	}

	div#header-banner {
		width: auto;
		height: 90px;
	}

	div.featured_gallery {
		height: 380px !important;
	}

	/* owner details box */
	div.row>div.form {
		margin-top: 0 !important;
	}

	/* owner details box end */

	aside.bottom {
		margin-top: 20px;
	}

	/* home content block end */

	div.featured_gallery>ul.featured>li:nth-child(4n) {
		display: inherit;
	}

	section.seller-short>div>div.picture img {
		height: 92px;
	}

	.search-block-content form div.search-form-cell {
		width: 50%;
	}

	section.side_block_search div.search-item {
		width: 48%;
		margin-right: 4%;
		display: inline-block;
		vertical-align: top;
	}

	section.side_block_search div.search-item:nth-of-type(2n) {
		margin-right: 0;
	}

	.search-item.checkbox-field>.custom-input {
		width: 50%;
	}

	.field.search-item.checkbox-field>.custom-input {
		width: 33.33%;
	}

	.search-item.couple-field>.custom-input {
		width: 33.33%;
	}

	section#listings.grid ul.info {
		padding-top: 8px;
	}

	section#listings.list ul.info {
		max-width: 320px;
	}

	.link-large {
		font-size: 1.286em !important;
	}

	section.account-location table.info {
		float: left;
		width: 235px;
		display: inline-block;
	}

	section.account-location div.location-info {
		float: left;
		max-width: 300px;
	}

	section.account-location div.map-capture {
		width: 55%;
		margin: -18px -18px -18px 0;
		float: right;
	}

	div.notification {
		width: 442px;
		margin-left: -221px;
	}

	div.notification.done {
		top: 0;
	}

	body.no-sidebar .advanced-search-form {
		width: 80%;
	}
}

/*** MOBILE VIEW ***/
@media screen and (max-width: 767px) {
	h1 {
		font-size: 1.714em;
		padding: 0 10px;
		margin-bottom: 20px;
	}

	.h1-nav nav>a.post_ad {
		margin-right: 10px;
	}

	body.header-banner>div.main-wrapper {
		padding-top: 79px;
	}

	div#header-banner {
		width: 100%;
		height: 59px;
	}

	div.header-banner-cont {
		height: 79px;
	}

	#header-banner div.banner table {
		height: 58px;
	}

	.point1 {
		max-width: 480px;
		min-width: 320px;
	}

	.circle>.default {
		padding: 0 10px;
	}

	#lang-selector>span.default {
		text-indent: -300px;
		width: 56px;
	}

	#lang-selector>span.default:before {
		content: attr(accesskey);
		position: absolute;
		right: 32px;
		text-indent: initial;

	}

	#lang-selector>.default:after {
		position: absolute;
		right: 10px;
		top: 17px;
	}

	.header-actions #user-navbar>span.default:before {
		display: inline-block !important;
	}

	section.main-menu a.add-property {
		display: none;
	}

	div#logo {
		margin-left: 10px;
	}

	#search_area {
		padding: 0 0;
	}

	body.header-banner section.main-menu nav.menu ul.menu {
		top: 0;
	}

	section.main-menu span.menu-button {
		margin-left: 10px;
		margin-right: 10px;
	}

	footer.page-footer span.scroll-top {
		left: auto;
		right: 10px;
		top: -36px;
	}

	ul.tabs.search_tabs {
		width: 100%;
	}

	ul.tabs.search_tabs.tabs_count_2>li {
		width: 50%;
		padding-right: 10px;
	}

	ul.tabs.search_tabs.tabs_count_3>li {
		width: 33.333%;
		padding-right: 10px;
	}

	ul.tabs.search_tabs.tabs_count_4>li {
		width: 25%;
		padding-right: 10px;
	}

	ul.tabs.search_tabs.tabs_count_2>li a,
	ul.tabs.search_tabs.tabs_count_3>li a,
	ul.tabs.search_tabs.tabs_count_4>li a {
		width: 100%;
	}

	ul.tabs.search_tabs>li>a {
		padding: 0 10px;
		font-size: 1em;
	}

	section.horizontal-search:not(.no-tabs) {
		padding-top: 64px;
		padding-bottom: 35px;
	}

	section.horizontal-search a.advanced_search {
		position: absolute;
		margin: -29px 0 0;
	}

	.search-block-content form div.search-form-cell {
		width: 100%;
	}

	.horizontal-search .search-block-content {
		padding: 6px 15px 20px;
	}

	.search-block-content form {
		margin-left: 0;
		margin-right: 0;
	}

	div.featured_gallery {
		height: 334px !important;
		padding-bottom: 84px;
		position: relative;
	}

	div.featured_gallery div.preview {
		height: 240px;
	}

	div.featured_gallery ul.featured {
		flex-wrap: nowrap;
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 84px;
		padding: 2px 0 0 0;
	}

	div.featured_gallery ul.featured>li {
		display: inline-block;
		width: 124px;
		margin: 0 2px 0 0;
	}

	div.featured_gallery div.preview>.fg-title {
		height: 34px;
		line-height: 32px;
		font-size: 1em;
	}

	div.featured_gallery div.preview>.fg-price {
		height: 40px;
		line-height: 38px;
		font-size: 1.286em;
	}

	.search-form-cell {
		width: 100%;
	}

	.search-form-cell>div {
		margin-left: 10px;
		margin-right: 10px;
	}

	.search-form-cell>div>div,
	.search-form-cell>div span.pills {
		width: 100% !important;
	}

	.search-form-cell.numeric-field {
		width: 50%;
	}

	.search-form-cell.numeric-field>div {
		margin-right: 10px;
	}

	.search-form-cell.numeric-field+.search-form-cell.numeric-field>div {
		margin-right: 0;
		margin-left: 10px;
	}

	.search-form-cell.submit>div {
		margin-top: 15px;
		float: right;
	}

	.search-form-cell.vertical-middle>div>span,
	.search-form-cell.submit>div>span {
		display: none;
	}

	.search-form-cell.three-field>div>div input[type=text],
	.search-form-cell.three-field>div>div input[type=number] {
		width: 33% !important;
		margin-right: 4%;
	}

	.search-form-cell.three-field>div>div select {
		width: 26%;
	}

	.search-form-cell.three-field>div>div>*:not(:last-child) {
		margin-right: 0;
	}

	section.main-menu nav.menu ul.menu {
		padding: 58px 14px 55px 22px;
	}

	section.content_block>h3,
	section.side_block>h3 {
		font-size: 1.429em;
	}

	section.content_block,
	section.side_block {
		margin-left: 10px;
		margin-right: 10px;
	}

	section.content_block:not(.no-header)>div,
	section.side_block:not(.no-header)>div {
		margin-top: 10px;
	}

	section.side_block>span.expander {
		margin-top: 6px;
	}

	/* home content block */
	section.home-content {
		margin: 0 0 20px 0;
	}

	aside.bottom {
		margin-top: 20px;
	}

	/* home content block end */

	ul.tabs {
		margin-left: 10px;
		margin-right: 10px;
		height: 42px;
	}

	ul.tabs>li {
		height: 42px;
	}

	ul.tabs.tabs-hash>li>a {
		margin: 0 10px;
		font-size: 1em;
		height: 42px;
	}

	ul.tabs>li.more,
	ul.tabs>li.overflowed {
		right: 25px;
	}

	ul.tabs>li.overflowed {
		margin-top: -2px !important;
	}

	.side_block:not(.no-style) ul.tabs,
	.content_block:not(.no-style) ul.tabs,
	section.content-section ul.tabs {
		margin-left: 0;
		margin-right: 0;
	}

	#bread_crumbs>ul {
		padding-left: 10px;
		padding-right: 10px;
	}

	.grid_navbar.listings-area .buttons>div.grid {
		display: none;
	}

	.grid_navbar .current,
	.grid_navbar ul.fields>li {
		padding: 0 10px;
	}

	/* listing list view */
	section#listings>article div.navigation-column {
		position: absolute;
		width: auto;
		bottom: 8px;
		right: 20px;
		z-index: 1;
	}

	section#listings.list.no-image>article div.navigation-column {
		bottom: 25px;
		right: 10px;
	}

	section#listings>article div.navigation-column div.before-nav {
		display: none;
	}

	section#listings ul.nav-column>li {
		display: inline-block;
		height: 18px;
		margin-left: 5px;
	}

	section#listings ul.nav-column>li .icon {
		top: 0;
	}

	section#listings ul.nav-column>li>a>span.link,
	section#listings ul.nav-column>li>span.link {
		display: none;
	}

	section.list>article {
		width: 100%;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
		display: block;
	}

	section#listings.list>article:not(.no-image) div.main-column {
		padding: 0 10px;
	}

	section#listings.list div.picture {
		width: 300px;
		height: 200px;
		float: none;
		margin: 0;
	}

	section#listings.list div.picture img {
		width: 100%;
		position: static;
	}

	article.featured div.picture>div.label {
		top: 0;
	}

	section#listings.list ul.card-info {
		background: white;
		padding: 10px;
	}

	section#listings.list ul.card-info span.favorite {
		float: right;
		margin-top: 5px;
	}

	section#listings.list ul.card-info>li:last-child {
		padding-bottom: 0;
	}

	section#listings ul.nav-column>a>.link,
	section#listings.list ul.card-info>ol {
		display: none;
	}

	/* listing list view end */

	div.listing-details.loc-exists .content-section {
		margin-top: 42px;
	}

	div.listing-details .content-section {
		padding: 10px 10px 0;
	}

	#area_keyword form.kws-block .two-inline {
		width: 100%;
	}

	div.listing-details h1 {
		margin-bottom: 15px;
		padding: 0;
	}

	.seller-short>div:last-child {
		margin-top: 20px;
	}

	.seller-short.landscape div.picture {
		float: none;
	}

	div.submit-cell {
		flex-direction: column;
	}

	div.submit-cell>div.name {
		padding: 0;
		min-height: 26px;
		line-height: 26px;
		flex-basis: auto;
	}

	div.submit-cell>div.name:empty {
		display: none;
	}

	#modal_block div.submit-cell div.name {
		width: 120px;
	}

	div.submit-cell.buttons div.name {
		min-height: inherit;
		height: 0;
	}

	.field.single-field>select {
		width: 100%;
	}

	.field.single-field>input[type=text] {
		width: 100%;
	}

	/* two */
	.field.two-fields>select,
	.field.two-fields>input[type=text] {
		width: 48%;
		margin-right: 4%;
	}

	.field.two-fields>select:last-child,
	.field.two-fields>input[type=text]:nth-child(2n) {
		margin-right: 0;
	}

	.field.two-fields>.custom-input,
	.field.couple-field>.custom-input {
		display: inline-block;
		padding-top: 10px;
	}

	/* three */
	.field.three-field>select {
		width: 26%;
		margin-right: 4%;
	}

	.field.three-field>input {
		width: 33% !important;
		margin-right: 4%;
	}

	.field.three-field>*:last-child {
		margin-right: 0;
	}

	.form-buttons.form a {
		width: auto;
	}

	section#accounts.grid {
		text-align: center;
	}

	section#accounts.grid>article {
		display: inline-block;
		vertical-align: top;
	}

	section#accounts>article>div,
	section#accounts>article>ul {
		text-align: left;
	}

	section#accounts div.statistics {
		width: 155px;
	}

	section#accounts .landscape div.statistics {
		width: 260px;
	}

	section#accounts ul.info {
		width: 290px;
	}

	section.seller-short>div>div.picture {
		margin: 0 20px 0 0;
		float: left;
	}

	section.seller-short>div>div.picture img {
		max-width: 150px;
		height: auto;
	}

	section.seller-short ul.seller-info>li:first-child {
		margin-top: 0;
	}

	section.seller-short ul.seller-info {
		overflow: hidden;
	}

	section.seller-short div.picture+div div.name,
	section.account-location div.name {
		width: 120px !important;
	}

	section.seller-short div.picture>div:first-child {
		margin-top: 10px;
	}

	section.seller-short div.counter {
		display: block;
	}

	ul.steps.mobile>li {
		display: none;
	}

	ul.steps.mobile>li.prev,
	ul.steps.mobile>li.current,
	ul.steps.mobile>li.current+li,
	ul.steps.mobile>li.current+li+li {
		display: inline-block;
		width: 33.33333% !important;
	}

	ul.steps.mobile>li.prev+li+li+li {
		display: none !important;
	}

	.form-buttons {
		padding-left: 10px;
		padding-right: 10px;
		text-align: center;
	}

	table.contacts-list tr>td:nth-child(2n) {
		display: none;
	}

	table.contacts-list div.name span.new {
		display: inline-block;
	}

	div.notification {
		width: 100%;
		left: 0;
		margin: 0;
	}

	div.notification>div {
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
	}

	div.notification.done {
		top: 0;
	}

	.content-padding {
		padding-left: 10px;
		padding-right: 10px;
	}

	.content-padding .content-padding,
	.content-padding .text-notice,
	div.listing-details .content-section .content-padding {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	/* tables content */
	div.list-table {
		display: block;
	}

	div.list-table>div.header {
		display: none;
	}

	div.list-table>div.row {
		display: block;
		border-bottom: 2px #e9e9e9 solid;
		position: relative;
		padding: 13px 25px;
		margin: 0;
	}

	div.list-table>div:nth-child(2) {
		padding-top: 0;
	}

	div.list-table>div:last-child {
		padding-bottom: 0;
		border: 0;
	}

	div.list-table>div.row>div {
		display: block;
		border: 0;
		padding: 5px 0 5px 95px !important;
		overflow: hidden;
		position: relative;
	}

	div.list-table>div.row>div:not(.no-flex):before {
		content: attr(data-caption) ":";
		width: 85px;
		display: inline-block;
		white-space: normal;
		word-wrap: break-word;
		font-size: 0.929em;
		color: #949494;
		position: absolute;
		left: 0;
		top: 5px;

		/* it is the best solution for now */
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
	}

	div.list-table>div.row>div.iteration {
		position: absolute;
		top: 50%;
		left: 0;
		margin-top: -10px;
		padding: 0 !important;
	}

	div.list-table>div.row>div.action {
		position: absolute;
		top: 50%;
		right: 0;
		margin-top: -12px;
	}

	div.list-table>div.row>div>div.inline {
		display: inline-block;
	}

	div.list-table>div.row>div.content {
		padding-top: 2px !important;
	}

	/* tables content end */

	/* my listings */
	section.list.my-listings>article {
		margin-left: auto !important;
		margin-right: auto !important;
	}

	section#listings.my-listings .item div.info {
		display: block;
		width: 100%;
		padding: 0;
	}

	section#listings.my-listings .item div.picture>span {
		width: 34px;
		height: 24px;
		bottom: 20px;
		right: 20px;
		line-height: 22px;
		font-size: 1.071em;
	}

	section#listings.my-listings .item div.info .title {
		position: absolute;
		top: 10px;
		background: white;
		height: 38px;
		line-height: 36px;
		box-shadow: 0 4px 0 rgba(0, 0, 0, .1);
		max-width: 100%;
		white-space: nowrap;
	}

	section#listings.my-listings .item .title {
		padding: 5px 10px 10px;
		display: block;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	section#listings.my-listings .item.featured div.info .title {
		background: #fb6a5c;
		color: #010101;
	}

	section#listings.my-listings div.picture>div.label {
		display: none;
	}

	section#listings.my-listings .item div.navigation {
		display: block;
		width: 100%;
		margin-bottom: 10px;
	}

	section#listings.my-listings .item div.navigation>ul {
		padding: 10px 10px 0;
	}

	section#listings.my-listings .item div.navigation>ul>li {
		display: inline-block;
		vertical-align: top;
		padding-bottom: 0;
	}

	section#listings.my-listings .item div.navigation>ul>li.single-inline {
		display: block;
		margin-bottom: 5px;
	}

	section#listings.my-listings .item div.navigation>ul>li select {
		max-width: 200px;
		width: 100%;
	}

	section#listings.my-listings .item div.navigation>ul>li.nav-icon {
		padding: 8px 0 0 12px;
	}

	section#listings.my-listings .item div.navigation>ul>li a {
		padding: 5px 10px;
	}

	section#listings.my-listings .item div.navigation>ul>li a>span {
		display: none;
	}

	section#listings.my-listings .item div.stat {
		display: block;
		width: 100%;
		position: relative;
	}

	section#listings.my-listings .item div.stat>ul {
		padding: 0 10px;
	}

	section#listings.my-listings .item div.stat .two-inline>*:first-child {
		float: none;
	}

	section#listings.my-listings .item div.stat ul>li {
		width: 48%;
		display: inline-block;
		vertical-align: top;
		margin-right: 4%;
	}

	section#listings.my-listings .item div.stat ul>li:nth-child(2n) {
		margin-right: 0;
	}

	/* my listings end */

	#controller_area div.fieldset.divider>header {
		padding: 0 10px;
	}

	.content-padding div.fieldset>header,
	div.fieldset.light>header {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	ul.pagination {
		padding-left: 20px;
		padding-right: 20px;
	}

	ul.account-menu-content>li {
		padding: 2px 0 10px;
	}

	ul.account-menu-content>li a {
		font-size: 1.143em;
	}

	.modal_block div.inner div.close {
		right: 20px;
	}

	section.side_block table.table td.name {
		width: 45%;
	}
}

@media screen and (max-width: 575px) {
	ul.featured>li {
		max-width: 350px;
		margin-left: auto;
		margin-right: auto;
	}

	.login-page-form {
		max-width: 240px;
	}
}

@media screen and (max-width: 440px) {
	.circle_mobile-full-width {
		position: static !important;
	}
}

@media screen and (max-width: 383px) {
	div#header-banner {
		max-width: 100%;
		height: 62px;
		top: 20px;
		left: 0;
		margin-left: 0;
	}

	section.seller-short>div>div.picture {
		margin: 0 0 15px 0;
		float: none;
	}

	section.seller-short>div>div.picture img {
		max-width: 150px;
		height: auto;
	}

	section.seller-short ul.seller-info {
		overflow: auto;
	}

	section#listings.my-listings .item>div.navigation>ul>li select {
		width: 130px;
	}
}

/*** RESPONCIVE END ***/

/*** PIXEL RATIO 1.5 ***/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5),
only screen and (min-resolution: 144dpi) {
	.circle>.default:after {
		background: url('../img/@2x/gallery2.png') left -62px no-repeat;
		background-size: 40px auto;
	}

	.circle_opened>.default:after {
		background-position: -12px -62px;
	}

	.header-actions #user-navbar>span.default:before {
		background: var(--accent);
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
		background-size: 16px;
		background-repeat: no-repeat;
		background-position: center;
		border-radius: 50%;
		width: 28px;
		height: 28px;
	}

	.header-actions #user-navbar.circle_opened>span.default:before {
		background-color: var(--accent-hover);
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
		background-size: 16px;
		background-repeat: no-repeat;
		background-position: center;
	}

	section.main-menu span.mobile-menu-header>span:last-child:before {
		background: url('../img/@2x/gallery2.png') right -50px no-repeat;
		background-size: 40px auto;
	}

	div.close-black:before {
		background: url('../img/@2x/gallery2.png') right -857px no-repeat;
		background-size: 40px auto;
	}

	select,
	.select2-selection--single .select2-selection__arrow {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M1 4l5 5 5-5z'/%3E%3C/svg%3E") !important;
		background-position: right 10px center !important;
		background-repeat: no-repeat !important;
		background-size: 10px !important;
	}

	input[type=number] {
		background-image: url('../img/@2x/gallery2.png');
		background-position: right -94px;
		background-repeat: no-repeat;
		background-size: 40px auto;
	}

	label.switcher>input[type=checkbox]+span:not(.status):before {
		background-image: url('../img/@2x/gallery2.png');
		background-position: -8px -972px;
		background-repeat: no-repeat;
		background-size: 40px auto;
	}

	label.switcher>input[type=checkbox]:checked+span:not(.status):before {
		background-position: 0 -972px;
		background-repeat: no-repeat;
		background-size: 40px auto;
	}

	footer.page-footer span.scroll-top:before {
		background: url('../img/@2x/gallery2.png') right -224px no-repeat;
		background-size: 40px auto;
	}

	.footer-data div.icons a:before {
		background: url('../img/@2x/gallery2.png') 0 -270px no-repeat;
		background-size: 40px auto;
	}

	.footer-data div.icons a.facebook:before {
		background-position: -13px -270px;
	}

	.footer-data div.icons a.twitter:before {
		background-position: -24px -270px;
	}

	input[type=checkbox]:not(.default)+label>span,
	input[type=radio]:not(.default)+label>span {
		background: url('../img/@2x/gallery2.png') 0 -224px no-repeat;
		background-size: 40px auto;
	}

	input[type=radio]:not(.default)+label>span {
		background-position: 0 -132px;
	}

	input[type=checkbox]:not(.default):hover+label>span {
		background-position: 0 -201px;
	}

	input[type=checkbox]:not(.default):checked+label>span {
		background-position: 0 -246px;
	}

	input[type=radio]:not(.default):hover+label>span {
		background-position: 0 -155px;
	}

	input[type=radio]:not(.default):checked+label>span {
		background-position: 0 -178px;
	}

	ul.menu-mobile:before {
		background: url('../img/@2x/gallery2.png') right -409px no-repeat;
		background-size: 40px auto;
	}

	.grid_navbar div.map>div>span {
		background: url('../img/@2x/gallery2.png') 0 -449px no-repeat;
		background-size: 40px auto;
	}

	.grid_navbar div.map:hover span,
	.grid_navbar div.map.active span {
		background: url('../img/@2x/gallery2.png') -14px -449px no-repeat;
		background-size: 40px auto;
	}

	.grid_navbar .sorting span.arrow {
		background: url('../img/@2x/gallery2.png') -22px -114px no-repeat;
		background-size: 40px auto;
	}

	.grid_navbar .sorting .active span.arrow {
		background-position: -22px -101px;
	}

	.favorite span.icon {
		background: url('../img/@2x/gallery2.png') right -178px no-repeat;
		background-size: 40px auto;
	}

	.favorite.remove span.icon {
		background-position: right -195px;
	}

	#user-navbar.notify>span.default:before {
		background-position: right -341px;
	}

	span.media-enlarge:after {
		background: url('../img/@2x/gallery2.png') left -345px no-repeat;
		background-size: 40px auto;
	}

	#loan_reset_form {
		background: url('../img/@2x/gallery2.png') right -426px no-repeat;
		background-size: 40px auto;
	}

	section#listings div.picture>img,
	ul.featured:not(.accounts)>li .picture img {
		background-image: url('../img/@2x/no-picture.png');
		background-size: 190px auto;
	}

	.seller-short form input+span {
		background: url('../img/@2x/gallery2.png') right -373px no-repeat;
		background-size: 40px auto;
	}

	.seller-short form input[name=contact_email]+span {
		background-position: right -391px;
	}

	.seller-short form input[name=contact_phone]+span {
		background-position: right -407px;
	}

	.modal_block div.inner div.close>div {
		background: url('../img/@2x/gallery2.png') right -326px no-repeat;
		background-size: 40px auto;
	}

	a.print>span {
		background: url('../img/@2x/gallery2.png') right -625px no-repeat;
		background-size: 40px auto;
	}

	section#accounts>article div.no-picture div.picture img,
	div.no-picture img.account-picture {
		background-image: url('../img/@2x/no-account.png');
		background-size: contain;
	}

	section.side_block>span.expander {
		background: url('../img/@2x/gallery2.png') right -502px no-repeat;
		background-size: 40px auto;
	}

	section.side_block>span.expander.active {
		background-position: 0 -502px;
	}

	input.search:hover {
		height: 37px;
		background: url('../img/gallery.png') 12px -431px no-repeat #fec04f;
	}

	div.close-black>div {
		background: url('../img/@2x/gallery2.png') right -675px no-repeat;
		background-size: 40px auto;
	}

	.close-red {
		background: url('../img/@2x/gallery2.png') -25px -53px no-repeat;
		background-size: 40px auto;
	}

	div.close-black:hover>div,
	.close-red:hover {
		opacity: 0.8;
	}

	img.remove {
		background: url('../img/@2x/gallery2.png') 0 -857px no-repeat;
		background-size: 40px auto;
	}

	ul#messages_area>li>span {
		background: url('../img/@2x/gallery2.png') right -326px no-repeat;
		background-size: 40px auto;
	}

	img.qtip {
		background-image: url('../img/@2x/gallery2.png');
		background-position: 6px -325px;
		background-size: 40px auto;
	}

	#controller_area div.fieldset>header>span.arrow {
		background: url('../img/@2x/gallery2.png') 0 -798px no-repeat;
		background-size: 40px auto;
	}

	#controller_area div.fieldset>header>span.arrow.up {
		background-position: right -798px;
	}

	.my-listings div.navigation ul li.nav-icon>a:before {
		background: url('../img/@2x/gallery2.png') 0 -776px no-repeat;
		background-size: 40px auto;
	}

	.my-listings div.navigation ul li.nav-icon>a.add-video:before {
		background-position: 0 -821px;
	}

	.my-listings div.navigation ul li.nav-icon>a.edit:before {
		background-position: 0 -755px;
	}

	.my-listings div.navigation ul li.nav-icon>a.unsubscription:before {
		background-position: left -933px;
	}

	.my-listings div.navigation ul li.nav-icon>a.delete:before,
	.delete.icon {
		background: url('../img/@2x/gallery2.png') right -755px no-repeat;
		background-size: 40px auto;
	}

	span.media-enlarge>span {
		background: url('../img/@2x/gallery2.png') right -604px no-repeat;
		background-size: 40px auto;
	}

	div.map-capture>img {
		background-size: auto 100%;
	}

	div.controls a#advanced_search:after {
		background: url('../img/@2x/gallery2.png') right -449px no-repeat;
		background-size: 40px auto;
	}

	#search_area #advanced_search:after {
		background: url('../img/@2x/gallery2.png') -34px -449px no-repeat;
		background-size: 40px auto;
	}
}

/*** PIXEL RETIO 1.5 END ***/

.listing-details {
	background: var(--bg-card);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 40px;
	border: 1px solid var(--border-color);
	margin: 40px 0;
}

.listing-details h1 {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 2.5rem;
	margin-bottom: 25px;
	color: var(--primary);
}

.listing-details .price-tag {
	background: var(--accent);
	color: white;
	padding: 10px 24px;
	border-radius: 8px;
	font-size: 1.6rem;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 20px;
}

.listing-details section.main-section {
	margin-bottom: 40px;
}

.listing-details .fieldset {
	background: white;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 0;
	margin-bottom: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
}

.listing-details .fieldset:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.listing-details .fieldset header {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 700;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	background: linear-gradient(90deg, #f0f9f9 0%, #ffffff 100%);
	padding: 18px 25px;
	margin-bottom: 0;
	display: block;
	width: 100%;
	border-bottom: 2px solid var(--accent);
}

.listing-details .fieldset .body {
	padding: 20px 25px;
}

.listing-details .table-cell {
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
	display: flex !important;
	justify-content: flex-start;
	align-items: center;
}

.listing-details .table-cell:last-child {
	border-bottom: none;
}

.listing-details .table-cell .name {
	color: var(--secondary);
	font-weight: 500;
	font-size: 14px;
	padding-left: 10px;
	border-left: 3px solid var(--accent);
	width: 150px;
	/* Centered compact alignment for labels */
	flex-shrink: 0;
}

.listing-details .table-cell .value {
	color: var(--primary);
	font-weight: 600;
	font-size: 15px;
	text-align: left;
}

.listing-details .table-cell.wide-field {
	flex-direction: column;
	align-items: flex-start;
}

.listing-details .table-cell.wide-field .value {
	text-align: left;
	margin-top: 8px;
	line-height: 1.6;
	background: #fcfcfc;
	padding: 10px;
	border-radius: 6px;
	width: 100%;
}

.listing-details .tabs {
	border-bottom: 2px solid var(--border-color);
	margin-bottom: 40px;
	display: flex;
	gap: 20px;
}

.listing-details .tabs li a {
	padding: 15px 5px;
	font-weight: 700;
	font-family: var(--font-heading);
	font-size: 15px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.listing-details .tabs li.active a {
	color: var(--accent);
	border-bottom: 3px solid var(--accent);
	margin-bottom: -2px;
}
.field-container {
    margin-bottom: 8px;
    border-bottom: 1px solid #eee;
    padding-bottom: 4px;
}

.field-label {
    font-size: 0.85em;
    color: #888;
    text-transform: uppercase;
    margin-right: 10px;
}

.bold-zip {
    letter-spacing: 1px;
    text-decoration: underline;
}
/* --- Herz Icon Anpassung --- */
.fav-svg {
    width: 20px;
    height: 20px;
    fill: none;               /* Herz hohl */
    stroke: var(--accent);    /* Rand in deiner Akzentfarbe (#38b2ac) */
    stroke-width: 2;
    transition: all 0.3s ease;
    vertical-align: middle;
}

/* Hover-Effekt: Herz füllt sich in deiner Akzentfarbe */
.favorite.add:hover .fav-svg {
    fill: var(--accent);
    transform: scale(1.1);
}

/* Spezielles Styling für die PLZ-Hervorhebung */
.field-plz-highlight {
    background: var(--accent-soft) !important; /* Dein helles Türkis */
    color: var(--primary) !important;          /* Dein dunkles Anthrazit */
    border: 1px solid var(--accent);           /* Türkiser Rand */
    font-weight: 700;                          /* Fett für bessere Lesbarkeit */
    font-family: var(--font-heading);          /* Montserrat */
    padding: 2px 10px !important;
}