/*******************************************************
 *
 * Property Search
 *
 *******************************************************/
#inner-page-wrapper {
    margin-bottom: 0;
}
#inner-page-wrapper > .container {
    width: 100%;
    padding: 0;
}

.img-canvas {
    position: relative;
}
.img-canvas canvas {
    display: block;
    width: 100%;
    height: auto;
}
.img-canvas img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}


.ip-psearch-bg {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.ip-psearch-bg::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #fff, #fff, #fff, transparent);
}
.ip-psearch-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    background: center / cover no-repeat fixed;
}

.safari-true .ip-psearch-bg canvas {

    background-attachment:scroll;
}

.ip-psearch-form {
    padding: 80px 20px;
}
.ip-psearch-form-inner {
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
    padding: 80px clamp(40px, 9.375vw, 150px);
    background: rgba(49,108,173,0.85);
    position: relative;
}
.ip-psearch-form-inner:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(/wp-content/uploads/2024/04/Ocean-23-Condo-5-45.jpg) center / cover no-repeat;
    z-index: -1;


}
.ip-psearch-form-title h2 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: clamp(20px, 1.625vw, 26px);
    letter-spacing: 0.04em;
    line-height: 1.5;
}
form.ip-psearch-fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.ip-psearch-field {
    width: 49%;
    margin-top: 47px;
}
.ip-psearch-field.field-12 {
    width: 100%;
}
.ip-psearch-field input, .ip-psearch-field select {
    background: none;
    width: 100%;
    border: none;
    color: #fff;
    letter-spacing: 0.04em;
    border-bottom: 1px solid #ffff;
    outline: none;
    padding-bottom: 5px;
    appearance: none;
}
.ip-psearch-field select option{
    color: #333333 !important;
}
.ip-psearch-field-radio input {
    appearance: auto;
    width: fit-content;
    width: 20px;
    height: 20px;
}
.range-field {
    padding-top: 10px;
}
.irs-slider.to {
/*    opacity: 0;*/
}
.irs-bar {
    background: #fff !important;
/*    width: 100% !important;*/
}
.irs-from, .irs-to, .irs-single {
    background: none !important;
    margin-top: 10px;
}
.irs-line {
    background: #fff !important;
}
.irs-slider.from,
.irs-slider.to{
    background: #4ec0e0 !important;
}
span.irs-from {
    margin-left: 10px;
}
span.irs-to {
    margin-left: -15px;
}
.ip-psearch-field-radio {
    display: flex;
    justify-content: space-between;
}
.radio-field {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}
.radio-field label {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.04em;
    position: relative;
    padding-left: 13px;
}
.radio-field label:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    left: -20px;
    top: -3px;
    pointer-events: none;
}
.ip-psearch-field-radio input {
    opacity: 0;
}
.ip-psearch-field-radio input[type="checkbox"]:checked + label:before {
    background: #000;
    border-width: 3px;
}
.ip-psearch-btn {
    margin: 0 auto;
    padding-top: 50px;
}
.ip-psearch-btn input {
    width: 140px;
    height: 60px;
    background: none;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3;
}
.ip-psearch-btn input:hover {
    background: #316cad;
    border-color: #316cad;
}
.carret {
    position: relative;
}
.carret:before {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    right: 0;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    z-index: 5;
    transform: rotate(-45deg);
}

/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/

 
/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */ 
@media only screen and (max-width: 1199px) {
    .ip-psearch-bg canvas {
        background-attachment:scroll;
    }
}   

/* iPad(portrait) | Galaxy Tab 4(portrait)  */ 
@media only screen and (max-width: 991px) {
	.ip-psearch-field {
        width: 100%;
    }
    .ip-psearch-field-radio {
        flex-wrap: wrap;
    }
    .radio-field {
        width: 50%;
        margin-bottom: 10px;
    }


} 

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */ 
@media only screen and (max-width: 767px) {
    .ip-psearch-form-inner {
        padding: 80px 20px;
    }
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */ 
@media only screen and (max-width: 480px) {
    .radio-field {
        width: 100%;
    }
}
 
