/* radio */
.jcf-radio {
	vertical-align: middle;
	display: inline-block;
	position: relative;
	overflow: hidden;
	cursor: default;
	background: #fff;
	border: 1px solid #777;
	border-radius: 9px;
	margin: 0 3px 0 0;
	height: 16px;
	width: 16px;
}
.jcf-radio span{
	display:none;
	position:absolute;
	top:3px;
	left:3px;
	right:3px;
	bottom:3px;
	background:#777;
	border-radius:100%;
}
.jcf-radio input[type="radio"] {
	position: absolute;
	height: 100%;
	width: 100%;
	border: 0;
	margin: 0;
	left: 0;
	top: 0;
}
.jcf-radio.jcf-checked span {display:block;}

/* checkbox */
.jcf-checkbox {
	vertical-align: middle;
	display: inline-block;
	position: relative;
	overflow: hidden;
	cursor: default;
	background: #fff;
	border: 1px solid #777;
	margin: 0 3px 0 0;
	height: 16px;
	width: 16px;
}
.jcf-checkbox span{
	position:absolute;
	display:none;
	height:4px;
	width:8px;
	top:50%;
	left:50%;
	margin:-7px 0 0 -6px;
	border:3px solid #777;
	border-width:0 0 3px 3px;
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865483, M12=0.7071067811865467, M21=-0.7071067811865467, M22=0.7071067811865483, SizingMethod='auto expand')";
}
:root .jcf-checkbox span {margin:-4px 0 0 -5px;}
.jcf-checkbox input[type="checkbox"] {
	position: absolute;
	width: 100%;
	height: 100%;
	border: 0;
	margin: 0;
	left: 0;
	top: 0;
}
.jcf-checkbox.jcf-checked span{display:block;}

/* button */
.jcf-button {
	display: inline-block;
	vertical-align: top;
	position: relative;
	overflow: hidden;
	border: 1px solid #777;
	background: #fff;
	margin: 0 10px 10px 0;
	padding: 5px 10px;
}
.jcf-button .jcf-real-element {
	position: absolute;
	min-height: 100%;
	min-width: 100%;
	outline: none;
	opacity: 0;
	padding: 0;
	margin: 0;
	border: 0;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
}

/* file */
.jcf-file {
	display: inline-block;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	background: #fff;
}
.jcf-file .jcf-real-element {
	position: absolute;
	font-size: 200px;
	height: 200px;
	margin: 0;
	right: 0;
	top: 0;
}
.jcf-file .jcf-fake-input {
	display: inline-block;
	text-overflow:ellipsis;
	white-space: nowrap;
	vertical-align: top;
	overflow: hidden;
	border: 1px solid #777;
	padding: 0 8px;
	font-size: 13px;
	line-height: 28px;
	height: 28px;
	width: 125px;
}
.jcf-file .jcf-upload-button {
	display: inline-block;
	vertical-align: top;
	white-space: nowrap;
	overflow: hidden;
	border: 1px solid #777;
	margin: 0 0 0 -1px;
	padding: 0 10px;
	line-height: 28px;
	height: 28px;
}

/* scrollbars */
.jcf-scrollable-wrapper {
	box-sizing: content-box;
	position: relative;
}
.jcf-scrollbar-vertical {
	position: absolute;
	cursor: default;
	background: #e3e3e3;
	width: 14px;
	bottom: 0;
	right: 0;
	top: 0;
}
.jcf-scrollbar-vertical .jcf-scrollbar-dec,
.jcf-scrollbar-vertical .jcf-scrollbar-inc {
	background: #bbb;
	height: 14px;
	width: 14px;
	left: 0;
	top: 0;
}
.jcf-scrollbar-vertical .jcf-scrollbar-inc {
	top: auto;
	bottom: 0;
}
.jcf-scrollbar-vertical .jcf-scrollbar-handle {
	background: #888;
	height: 1px;
	width: 14px;
}
.jcf-scrollbar-horizontal {
	position: absolute;
	background: #e3e3e3;
	right: auto;
	top: auto;
	left: 0;
	bottom: 0;
	width: 1px;
	height: 14px;
}
.jcf-scrollbar-horizontal .jcf-scrollbar-dec,
.jcf-scrollbar-horizontal .jcf-scrollbar-inc {
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	background: #bbb;
	height: 14px;
	width: 14px;
}
.jcf-scrollbar-horizontal .jcf-scrollbar-inc {
	left: auto;
	right: 0;
}
.jcf-scrollbar-horizontal .jcf-scrollbar-slider {
	display: inline-block;
	position: relative;
	height: 14px;
}
.jcf-scrollbar-horizontal .jcf-scrollbar-handle {
	position: absolute;
	background: #888;
	height: 14px;
}
.jcf-scrollbar.jcf-inactive .jcf-scrollbar-handle {
	visibility: hidden;
}
.jcf-scrollbar.jcf-inactive .jcf-scrollbar-dec, 
.jcf-scrollbar.jcf-inactive .jcf-scrollbar-inc {
	background: #e3e3e3;
}

/* select */
.jcf-select {
	display: inline-block;
	vertical-align: top;
	position: relative;
	border: 1px solid #777;
	background: #fff;
	margin: 0 0 12px;
	min-width: 150px;
	height: 26px;
}
.jcf-select select {
	z-index: 1;
	left: 0;
	top: 0;
}
.jcf-select .jcf-select-text {
	text-overflow:ellipsis;
	white-space: nowrap;
	overflow: hidden;
	cursor: default;
	display: block;
	font-size: 13px;
	line-height: 26px;
	margin: 0 40px 0 0;
}
.jcf-select .jcf-select-opener {
	position: absolute;
	text-align: center;
	background: #aaa;
	width: 26px;
	bottom: 5px;
	right: 5px;
	top: 5px;
}

.jcf-select .jcf-select-drop {
	position: absolute;
	margin-top: 0px;
	z-index: 9999;
	top: 100%;
	left: -1px;
	right: -1px;
}
.jcf-select .jcf-drop-flipped {
	bottom: 100%;
	top: auto;
}
.jcf-select.jcf-compact-multiple {
	max-width: 220px;
}
.jcf-select.jcf-compact-multiple .jcf-select-opener:before {
	display: inline-block;
	padding-top: 2px;
	content: '...';
}
.jcf-select-drop .jcf-select-drop-content {
	border: 1px solid #f00;
}
.jcf-select-drop.jcf-compact-multiple .jcf-hover {
	background: none;
}
.jcf-select-drop.jcf-compact-multiple .jcf-selected {
	background: #e6e6e6;
	color: #000;
}
.jcf-select-drop.jcf-compact-multiple .jcf-selected:before {
	display: inline-block;
	content: '';
	height:4px;
	width:8px;
	margin:-7px 5px 0 -3px;
	border:3px solid #777;
	border-width:0 0 3px 3px;
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865483, M12=0.7071067811865467, M21=-0.7071067811865467, M22=0.7071067811865483, SizingMethod='auto expand')";
}

/* multiple select styles */
.jcf-list-box {
	overflow: hidden;
	display: inline-block;
	border: 1px solid #b8c3c9;
	min-width: 200px;
	margin: 0 15px;
}
/* select options styles */
.jcf-list {
	display: inline-block;
	vertical-align: top;
	position: relative;
	background: #fff;
	line-height: 14px;
	font-size: 12px;
	width: 100%;
}
.jcf-list .jcf-list-content {
	vertical-align: top;
	display: inline-block;
	overflow: auto;
	width: 100%;
}
.jcf-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.jcf-list ul li {
	overflow: hidden;
	display: block;
}
.jcf-list .jcf-overflow {
	overflow: auto;
}
.jcf-list .jcf-option {
	overflow: hidden;
	cursor: default;
	display: block;
	padding: 5px 9px;
	color: #656565;
	min-height: 14px;
	height: 1%;
}
.jcf-list .jcf-disabled {
	background: #fff !important;
	color: #aaa !important;
}
.jcf-select-drop .jcf-hover,
.jcf-list-box .jcf-selected {
	background: #e6e6e6;
	color: #000;
}
.jcf-list .jcf-optgroup-caption {
	white-space: nowrap;
	font-weight: bold;
	display: block;
	padding: 5px 9px;
	cursor: default;
	color: #000;
}
.jcf-list .jcf-optgroup .jcf-option {
	padding-left: 30px;
}

/* other styles */
.jcf-textarea {
	border: 1px solid #b8c3c9;
	box-sizing: content-box;
	display: inline-block;
	position: relative;
}
.jcf-textarea .jcf-scrollbar-horizontal {
	display: none;
	height: 0;
}
.jcf-textarea textarea {
	padding: 8px 10px;
	border: none;
	margin: 0;
}
.jcf-textarea .jcf-resize {
	position: absolute;
	text-align: center;
	cursor: se-resize;
	background: #e3e3e3;
	font-weight: bold;
	line-height: 15px;
	text-indent: 1px;
	font-size: 12px;
	height: 15px;
	width: 14px;
	bottom: 0;
	right: 0;
}
.jcf-textarea .jcf-resize:before {
	border: 1px solid #000;
	border-width: 0 1px 1px 0;
	display: block;
	margin: 4px 0 0 3px;
	width: 6px;
	height: 6px;
	content: '';
}

/* number input */
.jcf-number {
	display: inline-block;
	position: relative;
	height: 32px;
}
.jcf-number input {-moz-appearance: textfield;}
.jcf-number input::-webkit-inner-spin-button,
.jcf-number input::-webkit-outer-spin-button {-webkit-appearance: none;}
.jcf-number input {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #777;
	padding: 3px 27px 3px 7px;
	margin: 0;
	height: 100%;
}
.jcf-number .jcf-btn-dec,
.jcf-number .jcf-btn-inc {
	position: absolute;
	background: #aaa;
	width: 20px;
	height: 15px;
	right: 1px;
	top: 1px;
}
.jcf-number .jcf-btn-dec {
	top: auto;
	bottom: 1px;
}
.jcf-number .jcf-btn-dec:hover,
.jcf-number .jcf-btn-inc:hover {
	background: #e6e6e6;
}
.jcf-number.jcf-disabled .jcf-btn-dec:hover,
.jcf-number.jcf-disabled .jcf-btn-inc:hover {
	background: #aaa;
}
.jcf-number .jcf-btn-dec:before,
.jcf-number .jcf-btn-inc:before {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -4px;
	border: 4px solid #aaa;
	border-color: transparent transparent #000 transparent;
}
.jcf-number .jcf-btn-dec:before {
	margin: -1px 0 0 -4px;
	border-color: #000 transparent transparent transparent;	
}
.jcf-number.jcf-disabled .jcf-btn-dec:before,
.jcf-number.jcf-disabled .jcf-btn-inc:before,
.jcf-number .jcf-btn-dec.jcf-disabled:before,
.jcf-number .jcf-btn-inc.jcf-disabled:before {
	opacity: 0.3;
}
.jcf-number.jcf-disabled input {
	background: #ddd;
}

/* range input */
.jcf-range {
	display: inline-block;
	min-width: 200px;
	margin: 0 10px;
	width: 130px;
}
.jcf-range .jcf-range-track {
	margin: 0 20px 0 0;
	position: relative;
	display: block;
	height: 10px;
}
.jcf-range .jcf-range-wrapper {
	position: relative;
	background: #e5e5e5;
	border-radius: 5px;
	display: block;
	margin: 5px 0;
}
.jcf-range.jcf-vertical {
	min-width: 0;
	width: auto;
}
.jcf-range.jcf-vertical .jcf-range-wrapper {
	margin: 0;
	width: 10px;
	height: auto;
	padding: 20px 0 0;
}
.jcf-range.jcf-vertical .jcf-range-track {
	height: 180px;
	width: 10px;
}
.jcf-range.jcf-vertical .jcf-range-handle {
	left: -5px;
	top: auto;
}
.jcf-range .jcf-range-display-wrapper {
	position: absolute;
	min-height: 10px;
	min-width: 10px;
	left: 10px;
	right: 10px;
}
.jcf-range .jcf-range-display {
	border-radius: 5px;
	position: absolute;
	background: #888;
	width: 10px;
	height: 10px;
}
.jcf-range .jcf-range-display.jcf-range-min {
	margin: 0 0 0 -10px;
	padding: 0 0 0 10px;
}
.jcf-range .jcf-range-display.jcf-range-max {
	margin: 0 -10px 0 0;
	padding: 0 10px 0 0;
}
.jcf-range.jcf-vertical .jcf-range-display-wrapper {
	left: auto;
	right: auto;
	top: 10px;
	bottom: 10px;
}
.jcf-range.jcf-vertical .jcf-range-display.jcf-range-min {
	margin: 0 0 -10px;
	padding: 0 0 10px;
}
.jcf-range.jcf-vertical .jcf-range-display.jcf-range-max {
	margin: -10px 0 0;
	padding: 10px 0 0;
}

.jcf-range .jcf-range-handle {
	position: absolute;
	background: #aaa;
	border-radius: 19px;
	width: 19px;
	height: 19px;
	margin: -4px 0 0;
	z-index: 1;
	top: 0;
	left: 0;
}
.jcf-range .jcf-range-mark {
	position: absolute;
	overflow: hidden;
	background: #000;
	width: 1px;
	height: 3px;
	top: -7px;
	margin: 0 0 0 9px;
}
.jcf-range.jcf-vertical .jcf-range-mark {
	margin: 0 0 9px;
	left: 14px;
	top: auto;
	width: 3px;
	height: 1px;
}
.jcf-range .jcf-active-handle {
	z-index: 2;
}
.jcf-range.jcf-focus .jcf-active-handle {
	border: 1px solid #f00;
	margin: -5px 0 0 -1px;
}
.jcf-range.jcf-disabled {
	background: none !important;
	opacity: 0.3;
}

/* common styles */
.jcf-disabled {background: #ddd !important;}
.jcf-focus, .jcf-focus * {border-color: #f00 !important;}


/* ************** CUSTOMISATION ************ */

.jcf-select-drop.jcf-compact-multiple .jcf-selected:before {
	height:5px;
	width:10px;
	margin:-8px 5px 3px -3px;
	border:2px solid #0180AD;
	border-width:0 0 2px 2px;
}

.jcf-select, .property-search-form label {
	display: inline-block;
	vertical-align: top;
	position: relative;
	border: none;
	background: #fff;
	margin: 0 0 0 0;
	min-width: 0;
	width: 100%;
	height: 50px;
	text-transform: none;
	color: #0074ba;
	cursor: pointer;
	border-left: solid 1px #0074ba;
}

.size_selector .jcf-select {
}

#property-request-form .jcf-select, #property-request-form .wpcf7-form {
	color: #0074ba !important;
}

#property-request-form .jcf-select.jcf-select-size {
	color: #0074ba !important;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

#property-request-form .jcf-select.jcf-select-size.jcf-drop-active {
	border-bottom-right-radius: 0;
}

.property_listings_navigation .jcf-select {
	border-left: solid 1px #0074ba;
	border-top: solid 1px #0074ba;
	border-bottom: solid 1px #0074ba;
}



.jcf-select-text::before, .property-search-form label::before, #property-request-form .wpcf7-form label::before {
	display: inline;
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	content: '\f105';
	margin-right: 10px;
	margin-left: 10px;
	color: #0074ba;
}

.location_selector .jcf-select-text::before {
	content: '\f3c5';
}

.location_selector .jcf-select {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.location_selector .jcf-select.jcf-drop-active {
	border-bottom-left-radius: 0;
}

.tenure_selector .jcf-select-text::before {
	content: '\f02b';
}

.type_selector .jcf-select-text::before, .jcf-select-property_type .jcf-select-text::before {
	content: '\f03a';
}

.size_selector .jcf-select-text::before {
	content: '\f31e';
}

.property-search-form .size_input label::before, #property-request-form .wpcf7-form .size_input label::before {
	content: '\f31e';
}

.order_selector .jcf-select-text::before {
	content: '\f15d';
}

.order_selector .jcf-select.jcf-drop-active {
	border-bottom-right-radius: 0;
}

body > .jcf-select {

}

body > .jcf-select-drop {
	margin: -1px 0 0 0;
	margin-left: 0;
	z-index: 9999;
}

.jcf-select.jcf-compact-multiple {
	max-width: 100%;
}

.jcf-select-drop .jcf-select-drop-content {
	border: 1px solid #0074ba;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	background: #fff;
}

.jcf-range.jcf-focus .jcf-active-handle {
	border: 1px solid #0074ba;
	margin: -5px 0 0 0;
	
}

.jcf-list {
    background: transparent;

}

.jcf-focus, .jcf-focus * {
	border-color: #0074ba !important;
}


.jcf-select .jcf-select-opener {
    width: 32px;
    bottom: 8px;
    right: 8px;
    top: 8px;

}

.jcf-select .jcf-select-text {
	font-size: 15px;
	line-height: 50px;
	font-weight: 700;
}

.jcf-list {
	font-size: 14px;
}

.jcf-list .jcf-option {
	padding: 9px 9px;
	color: #333;
}

.jcf-select .jcf-select-opener {
	background: #0074ba;
}

.jcf-select.jcf-compact-multiple .jcf-select-opener:before, .jcf-select .jcf-select-opener:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	content: "\f107";
	display: inline-block;
	padding-top: 0;
	color: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(0);
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	transition: all 0.25s ease-in-out;
}

.jcf-select.jcf-compact-multiple.jcf-drop-active .jcf-select-opener:before {
	transform: translateY(-50%) rotate(180deg);
}



/* button */
.property-search-form  .jcf-button {
	width: 50px;
	height: 50px;
	position: absolute !important;
	right: 0;
	top: 0;
	background-color: #000;
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	border: none;
	margin: 0;
	padding: 0;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	text-align: center;
	cursor: pointer !important; 
	min-width: 50px;
	min-height: 50px;
}

.property-search-form  .reset_button .jcf-button {
	width: auto;
	height: auto;
	position: absolute !important;
	right: auto;
	top: 100%;
	left: 0;
	background-color: none;
	display: block;
	vertical-align: top;
	overflow: auto;
	border: none;
	margin: 0;
	padding: 0;
	border-top-right-radius: none;
	border-bottom-right-radius: none;
	text-align: left;
	min-width: 0;
	min-height: 0;
	color: #fff;
	background: transparent;
}

.property-search-form  .jcf-button .jcf-real-element {
	cursor: pointer !important; 
	min-width: 50px;
	min-height: 50px;
}

.jcf-button:hover {
	
	cursor: pointer !important; 
}

.property-search-form  .submit_button .jcf-button::after, .basic_contact_form .jcf-button::after, #property-request-form .jcf-button::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	content: "\f002";
	font-size: 20px;
	color: #fff;
	line-height: 50px;
	text-align: center;
	display: inline-block;
}

.reset .jcf-button {
	border: 1px solid #ccc;
	background: #ccc;
}

.jcf-button .jcf-real-element {

}

/* Basic CF Button */

.basic_contact_form {
	color: #666;
}

.basic_contact_form p {
	margin: 0;
}

.basic_contact_form .jcf-button, #property-request-form .jcf-button {
	width: 100%;
	position: relative;
	right: auto;
	top: auto;
	border-top-right-radius: 0;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	height: 50px;
	background: #000 !important;
	display: inline-block;
	overflow: hidden;
	margin: 0;
	padding: 0;
	text-align: left;
	cursor: pointer !important; 
	border: solid 1px #0074ba;
	border-top: none;

}

#property-request-form .jcf-button {
	border: none;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 0;

}

.jcf-button .jcf-real-element {
	height: 50px;
}

.basic_contact_form .jcf-button::after, #property-request-form .jcf-button::after {
	width: 50px;
	float: right;
	content: "\f0e0";
}

.basic_contact_form .jcf-button::before, #property-request-form .jcf-button::before {
	font-family: "aktiv-grotesk", sans-serif;
	font-weight: 700;
	content: "JOIN";
	font-size: 20px;
	color: #fff;
	float: left;
	width: auto;
	padding: 0 20px;
	line-height: 50px;
	text-align: center;
	display: inline-block;
}



#property-request-form .jcf-button::before {
	content: "Send Request";
}

.basic_contact_form.arrange .jcf-button::before {
	content: "BOOK VIEWING";
}

.basic_contact_form .jcf-disabled {
    background: #000 !important;
}

.basic_contact_form .jcf-button .jcf-real-element {
	cursor: pointer !important; 
	min-width: 50px;
	min-height: 50px;
}

.basic_contact_form .location_selector .jcf-select {
	border-top-right-radius: 10px;
}

.jcf-button .jcf-real-element {
	min-width: 100%;
	min-height: 100%;
}

.jcf-checkbox {
    vertical-align: middle;
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: default;
    background: #fff;
    border: 1px solid #0074ba;
    margin: 0 3px 0 0;
    height: 16px;
    width: 16px;
}

.basic_contact_form .jcf-button-content {
	display: none;
}

span.wpcf7-list-item {
    margin: 0 0 0 10px;
}

.arrange_a_viewing span.wpcf7-list-item {
    margin: 0 0 0 0;
}

:root .jcf-checkbox span {
    margin: -4px 0 0 -4px;
}

.jcf-checkbox span {
    position: absolute;
    display: none;
    height: 5px;
    width: 8px;
    top: 50%;
    left: 50%;
    margin: -7px 0 0 -6px;
    border: 2px solid #666;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
    border-width: 0 0 2px 2px;
}

#order_selector .jcf-select {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.sort .jcf-select-drop .jcf-select-drop-content {

   margin-right: 10px;
}


.jcf-select-drop .jcf-hover, .jcf-list-box .jcf-selected {

    background: transparent;
    color: #0074ba;

}

.jcf-select-drop.jcf-compact-multiple .jcf-selected {
     background: transparent;
    color: #0074ba;

}

.jcf-select .jcf-select-text {
    font-size: 14px;
    line-height: 50px;
    font-weight: 700;
}

#property-request-form .jcf-select-property_type {
	border-left: none;
	border-right: solid 1px #0074ba;
}

@media screen and (max-width:960px) {
	
	.size_selector .jcf-select-units {

		border-right: none;

	}
	
	.property-search-form .jcf-button {
		width: 100%;
		position: relative !important;
		right: auto;
		top: auto;
		border-top-right-radius: 0;
		border-bottom-right-radius: 10px;
		border-bottom-left-radius: 10px;
	}
	
	.property-search-form  .submit_button .jcf-button::after {
		width: 50px;
		float: right;
	}
	
	.property-search-form  .submit_button .jcf-button::before {
		font-family: "aktiv-grotesk", sans-serif;
		font-weight: 700;
		content: "SEARCH";
		font-size: 20px;
		color: #fff;
		float: left;
		width: auto;
		padding: 0 20px;
		line-height: 50px;
		text-align: center;
		display: inline-block;
	}

	.property-search-form  .jcf-button .jcf-real-element {
		cursor: pointer !important; 
		min-width: 50px;
		min-height: 50px;
	}
	
	.property-search-form .location_selector .jcf-select {
		border-top-right-radius: 10px;
		border-bottom-left-radius: 0;
	}
	
	.jcf-button .jcf-real-element {
		min-width: 100%;
		min-height: 100%;
	}
	
	.property-search-form .jcf-select {
		border-bottom: solid 1px #0074ba;
	}
	
	.property-search-form .size_selector .jcf-select {
	}
	
	.property_listings_navigation .jcf-select {

		border-bottom-left-radius: 10px;

	}
	
	.property_listings_navigation .jcf-select.jcf-drop-active {
    	border-bottom-left-radius: 0;
	}
	
	#property-request-form .jcf-button {
		border-radius: 10px;
	}
	
}

