@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color:#000;
}
body {
    font-family: 'Montserrat', sans-serif;
}
button:focus,
select:focus,
input:focus,
textarea:focus {

    outline: none;
}
ul{
    margin:0;
    padding:0;
}
li{
    list-style:none;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
}
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
    margin: 0;
}
h1 {
    font-size: 60px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 27px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 12px;
}
span,a {
    display: inline-block;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}
.container {
    max-width: 85%;
}
/******************************
            HOME PAGE
*******************************/
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: 0.3s ease;
    left: 0px;
    right: 0px;
}
header.scroll {
    background-color: #999999;
}
.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
}
.overlay-content {
    position: relative;
    top: 46%;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
}
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
}
.overlay .closebtn:hover {
    color: #ccc;
}
.overlay input[type=text] {
    padding: 15px;
    font-size: 17px;
    border: none;
    float: left;
    width: 80%;
    background: white;
}
.overlay input[type=text]:hover {
    background: #f1f1f1;
}

.overlay button {
    float: left;
    width: 20%;
    padding: 15px;
    background: #999999;
    font-size: 17px;
    border: none;
    cursor: pointer;
    color: #fff;
}
.header-content {
    padding: 15px 60px;
}
.site-menu li {
    display: inline-block;
    margin: 0 20px;
}
.site-menu li a:hover,
.site-menu li.active a {
    color: #fff;
}
.header-links-wrap {
    width: calc(100% - 103px);
    justify-content: flex-end;
    align-items: center;
}
.site-menu li a {
    color: rgba(255,255,255,0.6);
    position: relative;
}
.site-menu li a:hover::before,
.site-menu li.active a::before {
    content: '';
    position: absolute;
    bottom: -12px;
    height: 3px;
    width: 20px;
    background: #fff;
    border-radius: 8px;
    left: 0;
    right: 0;
    margin: auto;
}
.site-login a {
    display: flex;
    align-items: center;
    color: #fff;
}
.site-login a img {
    margin-right: 15px;
}
.site-login {
    padding: 0 25px;
    border-left: 1px solid rgba(255,255,255,0.3);
    border-right: 1px solid rgba(255,255,255,0.3);
}
.site-search {
    padding: 0 25px;
    border-right: 1px solid rgba(255,255,255,0.3);
}
.site-signup a {
    color: #000000;
    background: #fff;
    padding: 14px 36px;
    border-radius: 10px;
}
.account-links {
    align-items: center;
}
.banner-section {
    background: center/cover no-repeat;
}
.banner-overlay {
    padding-top: 80px;
    min-height: 100vh;
    padding-top: 90px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(220deg, transparent, rgba(0,0,0,0.46));
}
.banner-text {
    width: 45%;
    /* max-width: 480px; */
}
.banner-text h1 {
    color: #fff;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}
.banner-text p {
    color: #fff;
    line-height: 1.6;
}
.banner-text a {
    color: #000000;
    background: #fff;
    padding: 14px 36px;
    border-radius: 10px;
    margin-top: 40px;
    border:1px solid transparent;
}
.site-signup a{
    border:1px solid transparent
}


.single-community:hover img {
    margin-left: 30px;
}

.community_overlay a img {
    transition: 0.2s all ease;
}

.community_overlay {
    cursor: pointer;
}
.site-signup a:hover,
.all_listings a:hover,
.about-text a:hover,
.banner-text a:hover {
    background-color: #000000;
    color: #fff;
    border-color: #fff;
}
.banner-content {
    justify-content: space-between;
}
.banner-search {
    background: #fff;
    padding: 40px 40px;
    border-radius: 30px;
    text-align: center;
    width: 500px;
}
.banner-search h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
}
.banner-search>span {
    font-size: 14px;
    color: #000000;
}
.banner-search form {
    margin-top: 40px;
}
.cus-radio-custom label,
.radio-custom label {
    height: 90px;
    width: 90px;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 6px;
}
.cus-radio-custom label input,
.radio-custom label input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}
.banner-search-options {
    justify-content: space-between;
}
.cus-radio-custom label span,
.radio-custom label span {
    height: 40px;
    width: 40px;
    background: #F4F4F4;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}
.cus-radio-custom > span,
.radio-custom > span {
    color: #000;
    font-size: 14px;
}
.search-btn {
    margin-top: 30px;
}
.search-btn a,
.search-btn input {
    background: #999999;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    color: #fff;
    cursor: pointer;
}
.radio-custom.selected label {
    border-color: #999999;
}
.radio-custom.selected label span {
    background: #999999;
    color: #fff;
}
.about-section {
    margin: 140px 0 100px;
}
.about-col {
    width: 46%;
}
.about-content {
    justify-content: space-between;
}
.about-text {
    max-width: 70%;
    margin-left: auto;
}
.about-text h2 {
    font-weight: 600;
    margin-bottom: 20px;
}
.about-text a {
    margin-top: 40px;
    background: #999999;
    padding: 14px 47px;
    border-radius: 10px;
    color: #fff;
}
.about_image {
    background: #F2F2F2;
    border-radius: 20px 0 0 20px;
    margin-top: 40px;
}
.about_image img {
    position: relative;
    top: -32px;
    left: 45px;
    border-radius: 20px;
}
.communities-header {
    text-align: center;
    max-width: 625px;
    margin: auto;
}
.communities-header h2 {
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
}
.communities-content {
    justify-content: space-between;
    margin-top: 50px;
}
.single-community {
    width: 24%;
    height: 200px;
    background: center/cover no-repeat;
    border-radius: 20px;
}
.communities-section {
    margin-bottom: 80px;
    margin-top: 60px;
}
.community_overlay {
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 20px;
}
.community_overlay a {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
}
.community_overlay a img {
    margin-left: 15px;
}
.listings-header {
    max-width: 625px;
    margin: auto;
    text-align: center;
}
.listings-header h2 {
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
}
.listings-content {
    margin-top: 60px;
    justify-content: space-between;
}
.listing_image {
    height: 170px;
    background: center/cover no-repeat;
    border-radius: 10px 10px 0 0;
}
.listing_info {
    padding: 15px;
    background: #F5F5F5;
    border-radius: 0 0 10px 10px;
}
.single-listing {
    width: 24%;
    margin-bottom: 30px;
}
.listing_info p {
    font-size: 14px;
    color: #000;
    margin-bottom: 15px;
}
.listing_info > span {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}
.listing_specs {
    margin-top: 30px;
}
.specs_col {
    padding-left: 8px;
    border-left: 1px solid #DADADA;
    margin-right: 35px;
}
.specs_col h6 {
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.specs_col span {
    font-weight: 500;
}
.all_listings {
    margin-top: 10px;
    text-align: center;
}
.all_listings a {
    background: #999999;
    color: #fff;
    padding: 14px 40px;
    border-radius: 10px;
}
.single_property {
    height: 680px;
    background: center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 55px;
    margin-top: 60px;
}
.single_property_info {
    max-width: 530px;
    background: #fff;
    border-radius: 30px;
    padding: 30px;
}
.single_property_info > span {
    color: #000f;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}
.single_property_info p {
    color: rgba(0,0,0,0.7);
    margin-bottom: 25px;
}
.single_property_info h5 {
    font-size: 20px;
}
.footer-top {
    background: #999999;
    padding: 80px 0;
}
.ft-col {
    width: 25%;
}
.ft-col h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.social-links a {
    height: 32px;
    width: 32px;
    background: rgb(255 255 255 / 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    font-size: 14px;
}
.ft-col span {
    color: #fff;
}
.footer-menu li {
    display: inline-block;
    margin: 0 15px;
}
.footer-menu li:last-child {
    margin-right: 0;
}
.ft-bottom {
    padding: 20px;
    justify-content: space-between;
}
.copyright span {
    color: #999999;
    font-size: 14px;
}
.footer-menu li a {
    color: #333333;
}
.property-slider-section .owl-nav {
    background: #fff;
    padding: 30px 20px 26px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 100;
}
.owl-carousel.single-property-slider .owl-nav button {
    padding: 0 25px !important;
}
.owl-carousel.single-property-slider .owl-nav .owl-prev {
    position: relative;
}
.owl-carousel.single-property-slider .owl-nav .owl-prev::before {
    content: '';
    position: absolute;
    height: 42px;
    background-color: rgba(0,0,0,0.2);
    width: 1px;
    right: -1px;
    top: -14px;
}
.main-banner-overlay {
    height: 100%;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.register_banner {
    max-width: 550px;
    min-width: 500px;
    background: #fff;
    /* padding: 30px; */
    border-radius: 20px;
    text-align: center;
    padding:50px 30px 30px;
}
.register_banner h4 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 5px;
    color: #000;
    text-transform: uppercase;
}
.register_banner span {
    /* font-size: 12px; */
    /* color: #000; */
}
.register_banner form {
    margin: 30px 0;
}
.field input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #D1D1D1;
    font-size: 14px;
}
.field {
    margin-bottom: 15px;
}
.forget-pass {
    text-align: right;
}
.forget-pass a {
    color: #000;
    font-weight: 500;
    font-size: 14px;
}
.login-btn {
    margin-top: 15px;
}
.login-btn input {
    background: #999999;
    width: 100%;
    padding: 12px;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
}
.new-account span {
    color: #000;
    margin-right: 8px;
}
.new-account a {
    color: #000;
    font-weight: 600;
    font-size: 14px;
}
.custom-breadcrumb ul {
    display: flex;
}

.custom-breadcrumb ul li a {
    position: relative;
    padding-right: 7px;
}

.custom-breadcrumb ul li a::before {
    content: '/';
    position: absolute;
    right: 0px;
    color: #000000;
    font-size: 14px;
    top: 2px;
}

.bedroom-apartment-sec {
    padding: 30px 15px;
}

.custom-breadcrumb {
    margin-bottom: 5px;
}

.bedroom-apartment-top-text h2 {
    color: #000000;
    font-weight: 600;
    margin-bottom: 25px;
}
.custom-breadcrumb ul li {
    font-size: 14px;
    color: #000;
}

.apparement-list-form {
    display: flex;
    margin-bottom: 20px;
}

.zip-city-address-col {
    border: 1px solid #DEDEDE;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    width: 300px;
    margin-right: 12px;
}

.zip-city-address-col input {
    width: 100%;
    border: 0px;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    color: #000000;
}

.zip-city-address-col button {
    background-color: #999999;
    border-radius: 10px;
    border: 0px;
    padding: 10px;
    margin: -1px;
}

.zip-city-address-col input::placeholder {
    color: rgb(0 0 0 / 60%);
}

.appartment-select-option select {
    border: 1px solid #DEDEDE;
    border-radius: 10px;
    padding: 10px;
    min-width: 100px;
    font-size: 14px;
}

.appartment-select-option {
    margin-right: 12px;
}

.appartment-submit input {
    background-color: #999999;
    border: 1px solid transparent;
    padding: 10px 15px;
    border-radius: 10px;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
}
.custom-horizontal{
    margin: 0px -15px 20px;
    border-top: 1px solid rgb(112 112 112 / 10%);
}
.appartment-text .single-listing {
    width: 100%;
}
.appartment-text .listing_info > span {
    margin-bottom: 5px;
}
.appartment-text .for-rent {
    width: 80px;
    background-color: #67C182;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    border-radius: 10px;
    font-size: 12px;
    text-transform: capitalize;
}

.appartment-text .listing_image {
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.appartment-text .appartment-text .listing_image {
    border-radius: 20px;
}.appartment-text .single-listing {
     box-shadow: 0px 7px 6px 0px rgb(0 0 0 / 3%);
     border-radius: 20px;
 }

.appartment-text .listing_image {
    border-radius: 20px 20px 0px 0px;
}

.appartment-text .listing_info {
    border-radius: 0px 0px 20px 20px;
}

.appartment-text .single-listing {
    margin-bottom: 20px;
}
.apartment-map iframe {
    border-radius: 20px;
    height: 100% !important;
}
.apartment-map {
    height: 100%;
}
/*.appartment-text::-webkit-scrollbar {*/
/*    width: 0px;*/
/*    background: transparent;*/
/*}*/
.appartment-text {
    height: 780px;
    overflow-y: auto;
    scrollbar-width: thin;
}
span.for-rent.for-sale {
    background-color: #D54E4E;
}

.heart-img {
    position: absolute;
    top: 0px;
    right: 20px;
    top: 20px;
    width: 25px;
}

.appartment-text .listing_image {
    position: relative;
}
.main-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
section.main-banner {
    position: relative;
    height: calc(100vh - 92px);
}

section.main-banner::before {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background-color: rgb(0 0 0 / 14%);
}

.main-banner-overlay {
    position: relative;
}
.about-banner {
    height: 60vh;
    position: relative;
}

.about-banner::before {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background-color: rgb(0 0 0 / 55%);
}
.about-banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cus-about-text h2 {
    color: #FFFFFF;
}

.cus-about-text {
    position: relative;
}
.about-banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.cus-about-text h2 {
    font-weight: 600;
}
.best-town {
    padding: 70px 0px;
}

.best-town h2 {
    margin-bottom: 40px;
    color: #000000;
    font-weight: 600;
}

.best-town-text p {
    color: #000000;
    font-size: 14px;
}

.best-town-text {
    max-width: 90%;
}
.best-mangement-sec-row {
    background-color: rgb(153 153 153 / 3%);
    padding: 50px 50px 10px;
    margin-bottom: 60px;
}

.best-management-col {
    display: flex;
    margin-bottom: 40px;
}

.best-management-img {
    width: 35px;
    margin-right: 15px;
}

.best-management-text {
    width: calc(100% - 55px);
}

.best-management-img img {
    object-fit: contain;
    width: 35px;
}

.best-management-text h5 {
    color: #000000;
    margin-bottom: 9px;
}

.best-management-text p {
    color: #000000;
    font-size: 14px;
}
.meet-our-team-sec h2 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}

section.meet-our-team-sec .col-md-3 {
    padding: 0px 5px;
}

.our-team-img {
    margin-bottom: 10px;
}

.our-team-text h4 {
    color: #000;
    font-weight: 600;
    margin-bottom: 7px;
}

.our-team-text h6 {
    color: rgb(0 0 0 / 40%);
}

.meet-our-team-sec {
    padding-bottom: 80px;
}
/*************************
    RANGE SLIDER
*************************/
.range-slider {
    width: 100%;
}

.range-slider__range {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 0px;
    background: #999999;
    outline: none;
    padding: 0;
    margin: 0;
    margin-bottom: 40px;
}
.range-slider__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    -webkit-transition: background 0.15s ease-in-out;
    transition: background 0.15s ease-in-out;
    border: 4px solid #999999;
}
.range-slider__range::-webkit-slider-thumb:hover {
    background: #fff;
}
.range-slider__range:active::-webkit-slider-thumb {
    background: #999999;
}
.range-slider__range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: #2c3e50;
    cursor: pointer;
    -moz-transition: background 0.15s ease-in-out;
    transition: background 0.15s ease-in-out;
}
.range-slider__range::-moz-range-thumb:hover {
    background: #707070;
}
.range-slider__range:active::-moz-range-thumb {
    background: #707070;
}
.range-slider__range:focus::-webkit-slider-thumb {
    box-shadow: none;
}


::-moz-range-track {
    background: #d7dcdf;
    border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
    border: 0;
}
.register_banner h5 {
    color: #000000;
    font-weight: 700;
    margin-bottom: 30px;
}
.range-slider__value {
    display: block;
    width: max-content;
    margin: auto;
    background-color: rgb(153 153 153 / 13%);
    padding: 8px 30px;
    border-radius: 40px;
    color: #000000;
    font-size: 16px;
    margin-bottom: 40px;
}
.next-btn {
    display: block;
    width: 100%;
    border-radius: 10px;
    border: 0px;
    padding: 10px;
    background-color: #999999;
    color: #FFFFFF;
    font-size: 14px;
    margin: 5px 0px 0px;
    cursor: pointer;
}
.register_banner.custom-property-forms {
    padding: 50px;
}
#msform {
    position: relative;
}
#msform fieldset {
    /*stacking fieldsets above each other*/
    position: relative;
}
fieldset{
    position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}
.select-location input {
    width: 100%;
    padding: 10px;
    border: 1px solid #999999;
    border-radius: 10px;
    font-size: 14px;
    padding-left: 40px;
    font-weight: 400;
    color: #000000;
    background-image: url('../images/location-img.png');
    background-repeat: no-repeat;
    background-position: 15px 10px;
}
.select-location input {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}
.neighborhoods-form {
    padding: 25px 0px !important;
}

.neighborhoods-form h5 {
    margin-bottom: 20px;
}

fieldset.register_banner.custom-property-forms.neighborhoods-form h6 {
    margin-top: 5px;
    color: #000000;
    font-size: 12px;
    font-weight: 400;
}

fieldset.register_banner.custom-property-forms.neighborhoods-form .next-btn {
    margin-top: 15px;
    width: 80%;
    margin: 15px auto;
}

fieldset.register_banner.custom-property-forms.neighborhoods-form span.next.action-button {
    font-size: 12px;
    color: #000;
    font-weight: 400;
    cursor: pointer;
}
.select-location select option{
    padding: 0px !important;
}
fieldset.register_banner.custom-property-forms {
    padding: 40px;
}

fieldset.register_banner.custom-property-forms h5 {
    margin-bottom: 15px;
}

fieldset.register_banner.custom-property-forms h6 {
    font-size: 14px;
    margin-bottom: 20px;
}
fieldset.register_banner.custom-property-forms span.next.action-button {
    font-size: 14px;
    margin-top: 15px;
}

fieldset.register_banner.custom-property-forms .banner-search-options.flex {
    flex-direction: column;
}

fieldset.register_banner.custom-property-forms .radio-custom label {
    width: 100%;
    height: max-content;
    padding: 10px 20px;
}

.radio-custom .radio-custom label span {
    width: 100%;
    height: 100%;
}

fieldset.register_banner.custom-property-forms .radio-custom label span {
    width: 100%;
    background-color: transparent;
    border-radius: 0px;
    display: block;
    height: max-content;
    text-align: left;
}

fieldset.register_banner.custom-property-forms .radio-custom.selected label span {
    color: #000000;
}

.radio-custom label img {
    filter: grayscale(1);
    margin-right: 20px;
}

.radio-custom.selected label img {
    filter: grayscale(0);
}
.select-location {
    margin-bottom: 30px;
}
.i-want-live-form-width h6 {
    font-size: 8px !important;
    margin-bottom: 10px !important;
}

.i-want-live-form-width {
    width: 80%;
    margin: 0px auto;
}

.i-want-live-form-width .range-slider__value {
    font-size: 11px;
    margin-bottom: 15px;
    background-color: rgb(19 30 224 / 5%);
    color: #000000;
}

.i-want-live-form-width .range-slider__range {
    margin-bottom: 10px;
}

.i-want-live-form-width .next-btn {
    width: 100% !important;
}
fieldset.register_banner.custom-property-forms .radio-custom.selected label {
    border-color: #2680EB;
}
.i-want-live-form-width .range-slider {
    width: 80%;
    margin: 0px auto;
}

.i-want-live-form-width input.next.action-button.next-btn {
    width: 80% !important;
}
.property-detail-slider-bg {
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.property-detail-slider-bg::before{
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    background-color: rgb(0 0 0 / 25%);
}
.property-detail-content {
    padding: 20px 0px;
}

.listing-text-col span {
    color: #000000;
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 5px;
}

.listing-text-col h4 {
    color: #000000;
    max-width: 369px;
    font-weight: 600;
    margin-bottom: 15px;
}

.listing-text-col h6 {
    color: #000000;
    font-weight: 500;
}

.listing-text-col .listing_specs {
    margin-top: 20px;
}
.whishlist-schedule-text-col {
    display: flex;
}

.whishlist-img-col {
    border: 1px solid #000000;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 10px;
}

.schedule-showing-col {
    border: 1px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 10px;
    padding: 10px 15px;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}

.schedule-showing-col img {
    margin-right: 10px;
}
.mail-request-col {
    background-color: #999999;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    color: #FFFFFF !important;
    font-size: 14px;
    font-weight: 500;
}

.mail-request-col img {
    margin-right: 10px;
}

.whishlist-schedule-text-col {
    justify-content: flex-end;
    margin-bottom: 40px;
}

.share-icons-flex {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.share-icons-flex ul {
    display: flex;
}

.whishlist-schedule-text-col {
    padding-top: 20px;
}

.share-icons-flex ul li a {
    margin-right: 10px;
}

.share-icons-flex ul li:last-child a {
    margin-right: 0px;
}

.share-icons-flex h6 {
    margin-right: 40px;
}
hr.horintal-line {
    margin: 50px 0px;
}

.property-overview-text h3 {
    color: #000000;
    font-weight: 500;
    margin-bottom: 15px;
}

.property-overview-text p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 40px;
}

.property-overview-text h3 {}

.property-feature-col h5 {
    color: #000000;
    font-weight: 700;
    border-bottom: 1px solid rgb(112 112 112 / 30%);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.property-feature-col {
    max-width: 400px;
    margin-top: 30px;
}

.property-feature-col ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.interior-quantity {
    text-align: left;
    width: 40%;
    color: rgb(0 0 0 / 70%);
    font-size: 14px;
}

.interior-text {
    width: 60%;
    color: #000000;
    font-weight: 500;
    font-size: 14px;
}
.property-detail-tabing {
    padding-left: 50px;
}

.property-detail-tabing ul {
    margin-bottom: 20px;
    padding: 0px 16px;
}

.property-detail-tabing ul li a {
    color: rgb(0 0 0 / 50%);
    font-size: 14px;
    padding: 9px 13px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #000;
    font-weight: 500;
}
.map-view-content iframe {
    margin-bottom: 40px;
}

.map-view-content h3 {
    color: #000000;
    font-weight: 500;
}

.map-view-content .listings-content {margin-top: 20px;}

.map-view-content .single-listing {
    width: 49%;
}

.map-view-content .listing_info p {
    font-size: 12px;
    max-width: 180px;
}

.map-view-content .specs_col h6 {
    font-size: 10px;
}

.map-view-content .specs_col span {
    font-size: 10px;
}

.map-view-content .specs_col {
    margin-right: 20px;
}

.map-view-content .listing_info > span {
    font-size: 18px;
}

.map-view-content .listing_image {
    height: 220px;
}
.specs_col:last-child {
    margin-right: 0px;
}
.menu-bar{
    display: none;
}
.our-team-img img {
    width: 100%;
    height: auto;
}
.slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 60px;
    right: 60px;
    display: flex;
    justify-content: space-between;
}

.slider .owl-prev {
    transform: rotate(180deg);
}
.slider-counter {
    position: absolute;
    bottom: 40px;
    z-index: 2;
    left: 0px;
    right: 0px;
    text-align: center;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 3px;
}
.slider .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 0px;
    right: 0px;
    display: flex;
    justify-content: center;
}

.slider .owl-dots button span {
    width: 6px;
    height: 6px;
    background-color: rgb(255 255 255 / 30%);
    margin-right: 10px;
    border-radius: 50%;
}

.slider .owl-dots button.active span {
    background-color: #fff;
}

.slider .owl-dots button:last-child span {
    margin-right: 0px;
}
.range-slider__range:focus::-webkit-slider-thumb {
    background: #fff;
}
.donot-worry-text {
    font-size: 14px;
    text-align: left;
    display: block;
    color: #000000;
    margin: 15px 0px;
}
p {
    color: #000;
}
.field input[type="password"] {
    background-image: url('../images/visible-img.png');
    background-repeat: no-repeat;
    background-position: 98%;
}
i {
    color: inherit;
}
.register_banner span {
    font-size: 14px !important;
}
header.dashboard-header {
    background-color: #000000;
}

header.dashboard-header .header-content {
    padding: 15px 45px 15px 30px;
}

header.dashboard-header .site-logo a {
    max-width: 74px;
    /* height: 46px; */
    display: inline-block;
}
header.dashboard-header .site-menu li a {
    font-size: 14px;
    color: #fff;
}
.dashboard-login {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.avatar-img img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
}

.avatar-name-flex {
    display: flex;
    align-items: center;
    margin-left: 20px;
    cursor: pointer;
}

.avatar-name-flex h6 {
    color: #FFFFFF;
}

.avatar-name-flex h6 {
    font-size: 16px;
    margin-right: 18px;
}

.cus-site-search {
    margin-left: 20px;
}
.avatar-name-flex i {
    color: #fff;
}
header.dashboard-header .header-links-wrap {
    width: calc(100% - 74px);
}
ul.dropdown-menu li a {
    display: block;
    width: 100%;
    padding: 4px 10px;
    font-size: 14px;
    color: #fff;
}

ul.dropdown-menu {
    min-width: 150px;
    top: 8px !important;
    padding: 10px 0px;
    background-color: #000;
}

ul.dropdown-menu li a:last-child {
    padding-bottom: 0px;
}
.dashboard-tabs-links ul {
    flex-direction: column;
}

.dashboard-tabs-links {
    width: 220px;
    background-color: #FFFFFF;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 84px;
    padding: 40px 0px;
}

.dashboard-tabs-links ul li a {
    font-size: 14px;
    padding: 10px 0px 9px 40px;
    border-radius: 0px !important;
    color: #000000;
    font-weight: 500;
}

.dashboard-tabs-links ul li a.active {
    color: #fff;
    background-color: #999999 !important;
}
.dashboard-section {
    position: relative;
    background-color: #F0F0F0;
    /*margin-top: 84px;*/
}
.dashboard-content-col {
    width: calc(100% - 220px);
    margin-left: auto;
}

div#pills-tabContent {
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    min-height: calc(100vh - 95px);
}

.dashboard-col-flex {
    display: flex;
}

.profile-img-text {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.profile-img-text img {
    width: 55px;
    height: 55px;
    margin-right: 15px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-img-text span {
    color: #000000;
    font-weight: 500;
}

.dashboard-profile-form label {
    color: #000000;
    font-weight: 500;
}

.input-container-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.input-container {
    width: 49%;
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 12px;
}

.dashboard-profile-content form {
    max-width: 850px;
}

.input-container label {
    font-size: 10px;
    display: block;
    margin-bottom: 1px !important;
    color: rgb(0 0 0 / 40%);
}

.input-container input {
    border: 0px;
    /* height: 20px; */
    display: block;
    font-size: 13px;
    color: #000000;
    /* display: flex; */
    /* align-items: center; */
    background-color: transparent;
    width: 100%;
}
.input-container input::placeholder {
    color: #000;
}
.renter-histroy {
    background-color: #F5F5F5;
    border-radius: 10px;
    padding: 15px;
}

.renter-histroy .input-container {
    margin-bottom: 0px;
}
.input-container select {
    width: 100%;
    border: 0px;
    font-size: 14px;
    color: #000000;
}

.input-container {
    background-color: #fff;
}

.apartment-preferences-col .input-container {
    width: 100%;
}
.apartment-preferences-col {
    width: 49%;
}

.apartment-preferences-col label {
    font-size: 14px;
}

.apartment-preferences label {
    margin-bottom: 20px;
}

.renter-histroy {
    margin-bottom: 16px;
    margin-top: 5px;
}

.apartment-preferences-col label {
    margin-bottom: 8px;
}
.input-container .cus-radio-custom label {
    width: 100%;
    height: auto;
    border: 1px solid #E3E3E3;
    margin-bottom: 0px;
}

.input-container .cus-radio-custom {
    width: 24%;
}

.input-container .cus-radio-custom input:checked ~ span {
    background-color: #000;
    color: #000000;
    border-radius: 10px;
    color: #fff;
}

.input-container .cus-radio-custom label span {
    width: auto;
    background-color: transparent;
}
.input-container.radio-container {
    border: 0px;
    padding: 0px;
}
.input-container.radio-container .banner-search-options {
    justify-content: flex-start;
}
.input-container .cus-radio-custom {
    margin-right: 5px;
}
.input-container .cus-radio-custom:last-child {
    margin-right: 0px;
}

.values {
    padding: 0px 0;
    display: flex;
    justify-content: center;
    background-color: #F5F5F5;
    width: 150px;
    height: 41px;
    align-items: center;
    border-radius: 20px;
    margin: auto;
    margin-bottom: 15px;
}

.max-value {
    /* margin-left: auto; */
    margin-left: 1px;
    /* content: '-'; */
}

.range-slider {
    margin-top: 10px;
    position: relative;
}

.slider-track {
    width: 100%;
    background: rgb(112 112 112 / 43%);
    height: 4px;
    position: relative;
    overflow: hidden;
}

.slider-track-filled {
    width: 100%;
    background: #000000;
    height: 8px;
    position: absolute;
    transform-origin: 0 0;
}

.min-thumb,
.max-thumb {
    width: 16px;
    height: 16px;
    background: black;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    user-select: none;
    border-radius: 50%;
}

.min-thumb {
    left: 0;
}

.max-thumb {
    right: 0;
}
.values>div {
    font-size: 14px;
    color: #000000;
    display: flex;
    align-items: center;
}

.max-value::before {content: '-';font-size: 18px;}
.cus-input-container .row {
    margin: 0px;
}
.apartment-preferences {
    margin-bottom: 40px;
}
.banner-search-options.flex.banner-search-options2 .cus-radio-custom {
    width: 48%;
}
.save-btn {
    background-color: #999999;
    color: #FFFFFF !important;
    padding: 9px 25px;
    border-radius: 10px;
    margin-top: 5px;
    border: 0px;
    cursor: pointer;
}
.good-morning {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.good-morning h4 {
    font-size: 22px;
    margin-right: 15px;
    font-weight: 500;
}
.best-combo-img img {
    width: 100%;
    border-radius: 10px;
}

.best-combo-text {
    background-color: #F7F7F7;
    height: 100%;
    position: relative;
    margin-left: -30px;
    padding: 20px;
    border-radius: 0px 10px 10px 0px;
}

.best-combo-text h5 {
    color: #000000;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 18px;
}

.best-combo-text h6 {
    color: #000000;
    font-size: 15px;
    font-weight: 600;
    /* min-height: 185px; */
    /* text-decoration: underline; */
}

.best-combo-text a {
    position: absolute;
    bottom: 30px;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
}
.price-features {
    color: rgb(0 0 0 / 70%) !important;
    font-weight: 400 !important;
    margin-bottom: 35px;
}
.dashboard-content .listings-content {
    margin: 0px;
}
.listing_image {
    position: relative;
}

.add-to-fav {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 18px;
}
.properties-contacted-col .single-listing {
    display: flex;
    width: 70%;
}

.properties-contacted-col .listing_image {
    width: 40%;
}

.properties-contacted-col .listing_info {
    width: 60%;
}
.properties-contacted-col {
    display: flex;
    background-color: #F7F7F7;
    border-radius: 10px;
    padding: 15px;
    flex-flow: row wrap;
}

.single-listing-share {
    width: 30%;
}

.single-listing-share ul {
    display: flex;
    margin-bottom: 10px;
}

.single-listing-share {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 30px;
}

span.fav-icon {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
}

.single-listing-share ul li a {
    color: #000;
    font-size: 14px;
    margin-right: 12px;
}

.single-listing-share ul li:last-child a {
    margin-right: 0px;
}

.date-time span {
    color: rgb(0 0 0 / 30%);
    font-size: 14px;
}

.date-time {
    color: rgb(0 0 0 / 30%);
}
.properties-contacted-col .listing_info {
    padding: 0px 10px;
}

.checkmark-flex span {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 20px;
}

.checkmark-flex span img {
    margin-right: 8px;
    color: rgb(0 0 0 / 40%);
}
h6.listing-no {
    color: rgb(0 0 0 / 70%);
    margin-bottom: 7px;
}

.properties-contacted-col .listing_info p {
    margin-bottom: 10px;
}

.properties-contacted-col .listing_info > span {
    font-size: 16px;
    color: rgb(0 0 0 / 50%);
}

.properties-contacted-col .listing_specs {
    margin-top: 20px;
}

.specs_col span {
    font-size: 14px;
}

.properties-contacted-col .listing_info {
    padding: 0px 30px;
}

/*new*/
.vault-folders-wrap {
    padding: 40px 80px 20px;
}
.vault-folders .folder-cover::before {
    display: none;
}
.vault-single-folder span {
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.1);
}
.single-folder>span {
    display: block;
    font-size: 14px;
    text-align: center;
    margin-top: 5px;
    color: #000;
}
.folder-cover.vault1 {
    background-image: url('../images/vault-bg1.png');
}
.folder-cover.vault2 {
    background-image: url('../images/vault-bg2.png');
}
.folder-cover.vault3 {
    background-image: url('../images/vault-bg3.png');
}
.vault-recent {
    margin-top: 30px;
}
.vault-recent h5 {
    color: #000;
    font-weight: bold;
    font-size: 16px;
}
.vault-recent .portal-field span {
    margin-right: 0;
    margin-left: 12px;
}
.vault .recent-files-table td:last-of-type {
    width: auto;
}
.ambassadr-head {
    align-items: center;
    justify-content: space-between;
}
.ambassadr-head.flex h3 {
    font-weight: bold;
}
main.payment-mainArea.ambassador {
    background-color: transparent;
}
.ambassadr-head .post-search input {
    background: #F4F4F4;
}
.single-folder>h6 {
    color: #000;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}
.ambasador-portal-recent h6 {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    margin: 30px 0 40px;
}
.ambasador-portal-recent .recent-filesTable {
    padding: 0;
}
.appoint-calender .ui-datepicker-inline.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all {
    width: 100%;
    padding: 10px 0;
    font-family: 'Lato', sans-serif;
    border-radius: 0;
    border: 1px solid rgba(112, 112, 112, 0.2);
}
.appoint-calender .ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {
    background: transparent;
    border: none;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    max-width: 97%;
}
.appoint-calender table.ui-datepicker-calendar th {
    color: #A1A1A1;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
}
.appoint-calender .ui-state-default,
.appoint-calender .ui-widget-content .ui-state-default,
.appoint-calender .ui-widget-header .ui-state-default {
    background: transparent;
    border: none;
    text-align: center;
}
.appoint-calender table.ui-datepicker-calendar td {
    padding: 4px 0;
}
.appointment-dateSelection {
    margin-top: 40px;
}
.appoint-calender table.ui-datepicker-calendar td a {
    height: 45px;
    width: 45px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.appoint-calender a.ui-state-default.ui-state-highlight.ui-state-active {
    background-color: #149442;
    color: #fff;
}
.appoint-calender .ui-datepicker-prev span {
    background-image: url('assets/images/prev-icon.png');
    background-position: 0 0;
    cursor: pointer;
}
.appoint-calender .ui-datepicker-next span {
    background-image: url('assets/images/next-icon.png');
    background-position: 0 0;
    cursor: pointer;
}
.appoint-calender .ui-state-hover,
.appoint-calender .ui-widget-content .ui-state-hover,
.appoint-calender .ui-widget-header .ui-state-hover {
    border: none;
    background: none;
}
.appoint-calender .ui-datepicker .ui-datepicker-prev {
    right: 30px;
    left: unset;
    top: 6px;
}
.appoint-calender .ui-datepicker .ui-datepicker-next {
    top: 6px;
}
.appoint-calender .ui-datepicker .ui-datepicker-next-hover {
    right: 2px;
}
.appoint-calender .ui-datepicker-title {
    font-weight: 500;
    color: #000;
}
.appoint-calender .ui-state-default.ui-state-hover {
    color: #fff;
    background-color: #DCDCDC;
}
.field-btn.registerBtn {
    margin-top: 0;
}
table.dataTable tbody tr {
    background-color: transparent;
}
table.dataTable thead th {
    padding: 0 0 15px 0;
    border-bottom: none;
    font-weight: 500;
}
table.dataTable tbody td {
    padding-left: 0;
    padding-right: 0;
}
table.dataTable {
    border-collapse: collapse;
}
table.dataTable th,
table.dataTable td {
    white-space: nowrap;
}
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
    padding-right: 20px;
    background-position: top right 12px;
}
table.report-table.dataTable thead .sorting,
table.report-table.dataTable thead .sorting_asc,
table.report-table.dataTable thead .sorting_desc {
    background-position: top right 5px;
}
table.dataTable.no-footer {
    border-bottom: none;
}
.dataTables_info {
    color: #000;
    font-weight: 600;
}
.customer-header .header-options {
    background: #f7f7f7;
}
.customer_table.siteTable tbody tr:first-of-type td {
    padding-top: 15px;
}
.customer_table.siteTable tbody tr:first-of-type td::before {
    top: 26px !important;
}
.customer_table.siteTable tbody tr td::before {
    top: 18px !important;
}
.siteTable.sales_table tbody tr:first-of-type td::before {
    top: 30px !important;
}
.receipt-header .dashboard-page-heading {
    align-items: center;
}
.directory-table table {
    margin-bottom: 30px;
}
.login-header .header-options {
    align-items: center;
}
.dash-posts button {
    color: #fff;
    background: #149442;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    margin-left: 20px;
}
.promotion-form h4:nth-of-type(2) {
    margin-top: 50px;
}
#vendors td,
#dispensary td,
#cbd-suppliers td {
    padding-right: 20px;
}
.field.card-field img {
    position: absolute;
    top: 41px;
    right: 14px;
    max-width: 30px;
}
.field.card-field {
    position: relative;
}
.field.card-field input {
    padding-right: 47px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #149442;
    color: #fff !important;
    border-color: #149442;
}
.direc-content .siteTable tbody tr:first-of-type td::before {
    top: 35px !important;
}
table.ui-datepicker-calendar {
    width: 100%;
}
.appoint-calender .ui-datepicker .ui-datepicker-prev {
    position: absolute;
    top: -8px;
}

.appoint-calender .ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {
    position: relative;
}

.appoint-calender .ui-datepicker-prev span {
    background-repeat: no-repeat;
    font-size: 0px !important;
    width: 18px !important;
    height: 10px !important;
}

.appoint-calender .ui-datepicker .ui-datepicker-next {
    position: absolute;
    right: 0px;
    top: -8px;
}

.appoint-calender .ui-datepicker-next span {
    background-repeat: no-repeat;
    font-size: 0px !important;
    width: 18px !important;
    height: 10px !important;
}

span.ui-datepicker-month {
    font-size: 16px !important;
    margin-left: 20px;
}
a.ui-state-default.ui-state-active {
    background: #000 !important;
    color: #fff;
}
.looking-to-sign-in input {
    border: 1px solid #000;
    padding: 8px;
    color: #000;
    margin-right: 8px;
}

.looking-to-sign-in {
    margin-bottom: 15px;
}
fieldset.register_banner.custom-property-forms .radio-custom.checkox-custom label {
    padding: 0px;
    border: 0px;
}

.radio-custom.checkox-custom label span {
    border: 1px solid #E6E6E6;
    border-radius: 16px !important;
    padding: 10px 20px;
}

.radio-custom.checkox-custom label input[type="checkbox"]:checked ~ span {
    border: 1px solid #2680EB;
}
.banner-search .radio-custom.checkox-custom label {
    width: auto;
    height: auto;
    border: 0px;
}

.banner-search .radio-custom.checkox-custom label span {
    margin: 20px;
}

.banner-search .radio-custom.checkox-custom label span::after {
    border: 1px solid rgb(0 0 0 / 20%);
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    border-radius: 16px;
}

.banner-search .radio-custom.checkox-custom label input[type="checkbox"]:checked ~ span {
    border-color: #E6E6E6;
}

.banner-search .radio-custom.checkox-custom label input[type="checkbox"]:checked ~ span::after {
    border-color: #000;
}
.input-container.radio-container {}

.dashboard-profile-form .input-container.radio-container {
    /* width: 99%; */
}

.banner-search-options.flex {}

.dashboard-profile-form .banner-search-options.flex {
    flex-wrap: wrap;
}

.dashboard-profile-form .banner-search-options.flex .cus-radio-custom {
    width: 120px;
    margin-bottom: 6px;
}
.alert.alert-success {
    position: fixed;
    z-index: 9999;
    top: 85px;
    left: 0px;
    right: 0px;
}
.pre-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 99;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 99999999999999999;
    display: none;
}
.pre-loader img {
    margin: auto;
    height: 100%;
    max-width: 120px;
    object-fit: contain;
}

.property-detail-main-sec {
    /* padding-top: 130px; */
    padding-bottom: 30px;
}

.property-detail-slider-bg {
    height: 498px;
}

.property-detail-col-text {
    background-color: #f2f2f2;
    margin-left: -30px;
    padding: 25px;
    /* border-radius: 5px; */
    /* padding: 10px; */
    /* display: block; */
    height: 100%;
}

.property-detail-col-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.property-detail-col-text .input-container {
    width: 100%;
}

.input-container textarea {
    border: 0px;
    resize: none;
    width: 100%;
    font-size: 14px;
    color: #000000;
}

.input-container textarea::placeholder {
    color: #000;
}

.property-detail-col-text input[type="submit"] {
    background-color: #999999;
    border: 0px;
    width: 100%;
    padding: 9px;
    border-radius: 5px;
    color: #fff;
    margin-bottom: 20px;
    font-size: 14px;
}

.property-detail-col-text p {
    font-size: 12px;
    margin-bottom: 0px;
}
.location-search .radio-custom.checkox-custom {
    width: 80%;
}
.location-search fieldset.register_banner.custom-property-forms {
    padding: 0px;
    width: 100%;
}
.location-search .radio-custom .select-location {
    margin-bottom: 30px;
    max-width: 340px;
}
.location-search .search-btn {
    margin-top: 0px;
    z-index: 99;
}
/*.location-search.banner-search{*/
/*    max-height: 250px;*/
/*}*/
.banner-search.location-search .banner-search-options.flex {width: 100%;}

.banner-search.location-search .search-btn button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

.banner-search-options.flex .search-btn {
    width: 100%;
}

.banner-search.location-search h4 {
    /* margin: 0px; */
    display: block;
    text-align: center;
    width: 100%;
}


.banner-search.location-search form {
    margin: 0px;
}


.range-popup .range-slider{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}
.range-popup .range-slider__range{
    width: 100%;
    margin: 20px 0px;
}
.range-slider p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    margin: auto;
}

.range-slider p .range-slider__value     {
    margin: 0px 10px;
}
#msform {
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
}
#msform .radio-custom.checkox-custom {
    padding: 10px;
    text-align: center;
}
.appartment-select-option input {
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #DEDEDE;
}
#search-properties-btn {
    border: 0px;
    padding: 10px 20px;
    background-color: #999999;
    border-radius: 10px;
}
header{
    position: relative;
    background-color: #999999;
}
.dashboard-col-flex{
    position: relative;
}
.dashboard-tabs-links{
    position: sticky;
    top: 10px;
    margin-top: 10px;
}
.header-content{
    padding: 10px 60px;
}

.dashboard-custom .radio-custom.checkox-custom label span{
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 10px;
}
.dashboard-custom  .banner-search-options {
    justify-content: flex-start;
}
.dashboard-custom .radio-custom.checkox-custom {
    margin: 0px 8px;
}


.pre-loader {
    position: fixed;
    top: 0;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.loader3 {
    width:50px;
    height:50px;
    display:inline-block;
    padding:0px;
    text-align:left;
}
.loader3 span {
    position:absolute;
    display:inline-block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: #fff;
    -webkit-animation:loader3 1.5s linear infinite;
    animation:loader3 1.5s linear infinite;
}
.loader3 span:last-child {
    animation-delay:-0.9s;
    -webkit-animation-delay:-0.9s;
}
@keyframes loader3 {
    0% {transform: scale(0, 0);opacity:0.8;}
    100% {transform: scale(1, 1);opacity:0;}
}
@-webkit-keyframes loader3 {
    0% {-webkit-transform: scale(0, 0);opacity:0.8;}
    100% {-webkit-transform: scale(1, 1);opacity:0;}
}
.best-combo-img-cus {
    position: relative;
}
.best-combo-img-cus .favouriteSpan {
    position: absolute;
    top: 5px;
    right: 5px;
}
.best-combo-img-cus .whishlist-img-col {
    width: 35px;
    height: 35px;
}
.best-combo-img-cus .favouriteSpan img {
    padding: 5px;
}
.best-combo-text-cus a {
    position: relative;
    bottom: unset;
}


.appartment-select-option {
    display: flex;
    width: 13%;                                 /* filter select option styles */
    flex-direction: column;                     /* filter select option styles */
}

.appartment-select-option input {
    width: 100%;
}

.appartment-select-option labal {
    margin-right: 10px;
    font-size:14px;
}

.zip-city-address-col {
    width: 200px;
}
.range-value-label input {
    border: 1px solid #000;
    border-radius: 20px;
    padding: 1px 10px;
    font-size: 14px;
    background: none !important;
}

.range-value-label {
    margin-right: 10px;
}
.cus-input-container input {
    border: 1px solid #E3E3E3;
    border-radius: 20px;
    padding: 4px 10px;
    margin-right: 10px;
    font-size: 14px;
}
.main-banner-overlay fieldset h4 {
    margin-bottom: 20px;
}
input.next.action-button.skip-question {
    background-color: transparent;
    border: 0px;
    margin-top: 10px;
}
form#msform #first-child-fieldset {
    max-width: 460px !important;
    padding: 15px;
}
form#msform #first-child-fieldset .cus-radio-custom label,form#msform #first-child-fieldset .radio-custom label {
    width: 100px;
    height: 100px;
}
form#msform #first-child-fieldset .banner-search-options.flex {
    margin-bottom: 15px;
}
.banner-search.location-search .select-location input {
    width: 100%;
}

.radio-custom.checkox-custom {}

.banner-search.location-search .radio-custom.checkox-custom {
    width: 100%;
}

.banner-search.location-search .radio-custom.checkox-custom {
    max-width: 100%;
    width: 100%;
}


/*Latest Css */
.banner-search.location-search{
    max-height: 260px;
}
.range-popup .range-slider{
    justify-content: center;
    flex-direction: column;
}
.range-value-label{
    margin: 10px 0px;
}
.range-value-label input {
    max-width: 80px;
}


.banner-search.location-search .select-location {max-width: 100%;}

.banner-search.location-search {
    width: 400px;
    padding: 30px;
}
@media screen and (max-width:1280px)
{
    .specs_col
    {
        margin-right: 25px;
    }
}
@media screen and (max-width:1199px){
    .site-menu li{
        margin: 0 15px;
    }
    .banner-text a,
    .site-signup a{
        padding: 12px 25px;
    }
    .header-content {
        padding: 15px 50px;
    }
    .container {
        max-width: 90%;
    }
    h1 {
        font-size: 50px;
    }
    .about-text {
        max-width: 85%;
    }
    .container {
        max-width: 100%;
        padding: 0px 50px;
    }
    .banner-text {
        width: 40%;
        max-width: 360px;
    }
    .banner-search {
        max-width: 480px;
        padding: 30px 30px;
    }
    .about-text {
        max-width: 100%;
        padding-left: 50px;
    }
    .about-section {
        margin: 60px 0 80px;
    }
    .community_overlay a{
        font-size: 18px;
    }
    .single-community {
        height: 160px;
        border-radius: 12px;
        overflow: hidden;
    }
    .single-listing {
        width: 32%;
    }
    .listings-content {
        margin-top: 60px;
        justify-content: flex-start;
        margin: 0px -9px;
        margin-top: 40px;
    }
    .single-listing {
        width: 33.33%;
        padding: 0px 9px;
    }
    .single_property {
        height: 550px;
    }
    .ft-col:last-child {
        margin-bottom: 0px;
    }
    .ft-col {
        width: 33%;
        margin-bottom: 24px;
    }
    .banner-overlay{
        min-height: 600px;
    }
    .best-mangement-sec-row {
        background-color: rgb(153 153 153 / 3%);
        padding: 30px 30px 10px;
        margin-bottom: 40px;
    }
    .about_image img{
        left: 0px;
    }
    section.about-banner {
        height: 500px;
    }
    .property-detail-slider-bg {
        height: 40vh;
    }
    .map-view-content .specs_col {
        margin-right: 10px;
    }
    .about-content.flex
    {
        align-items: center;
    }
}
@media screen and (max-width:991px){
    .header-content {
        padding: 10px 15px;
    }

    .site-menu {
        display: none;
    }

    .menu-bar {
        display: block;
    }

    .site-login a {
        font-size: 0px;
    }

    .site-signup {
        display: none;
    }

    .menu-bar i {
        font-size: 30px;
        color: #fff;
    }

    .site-login {
        border: 0px;
        padding: 0px;
    }

    .site-search {
        border: 0px;
        padding: 0px;
    }

    .menu-bar {
        margin-right: 15px;
    }
    .single_property_info {
        padding: 20px 15px;
    }

    /* .footer-top {
        padding: 60px 0px;
    }

    .ft-col {
        width: 100%;
        margin-bottom: 30px;
    }

    .ft-col:last-child {
        margin-bottom: 0px;
    }

    .ft-bottom.flex {
        padding: 0px;
    }

    .copyright {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-bottom {
        padding: 15px 0px;
    }

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

    .footer-menu li:last-child {
        margin-right: 15px;
    }

    .footer-menu li {
        margin-bottom: 10px;
    } */
    .site-login a img {
        margin-right: 15px;
        width: 30px;
    }
    a.openBtn {
        margin-top: 6px;
    }
    h1 {
        font-size: 35px;
    }
    .banner-search {
        max-width: 380px;
    }
    p {
        font-size: 14px;
    }

    .radio-custom label {
        width: 70px;
        height: 70px;
    }

    .banner-search h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .banner-search {
        padding: 25px 25px;
    }

    .banner-search form {
        margin-top: 20px;
    }

    .container {
        padding: 0px 20px;
    }
    .site-menu {
        position: absolute;
        left: 0px;
        right: 0px;
        top: 92px;
        background-color: #060e1b;
        z-index: 2;
        border-top: 1px solid #fff;
        padding: 20px;
    }

    .site-menu nav ul {
        flex-direction: column;
        display: flex;
        align-items: center;
    }

    .site-menu nav ul li a {
        margin-bottom: 30px;
        font-size: 20px;
    }

    .site-menu nav ul li:last-child a {
        margin-bottom: 0px;
    }

    .site-menu li a:hover::before, .site-menu li.active a::before {
        display: none;
    }
    .about_image img {
        top: -40px;
        left: -20px;
    }

    .about-text {
        padding-left: 20px;
    }

    .about-section {
        margin: 40px 0px;
    }

    .single-community {
        width: 49%;
        height: 210px;
        margin-bottom: 14px;
    }

    .communities-section {
        margin-bottom: 40px;
    }

    .single-listing {
        width: 50%;
    }

    .listing_image {
        height: 220px;
    }

    .ft-col {
        width: 33%;
    }
    .footer-menu li a{
        font-size: 12px;
    }
    .footer-menu li{
        margin: 0 8px;
    }
    .single_property_info {
        padding: 20px 35px;
        max-width: 470px;
    }
    a.openBtn img {
        width: 27px;
        object-fit: contain;
    }

    .site-login a img {
        object-fit: contain;
    }
    .bedroom-apartment-sec {
        padding: 25px 0px;
    }
    h2 {
        font-size: 24px;
    }
    .appartment-text .listing_image{
        height: 150px;
    }
    .listing_info p {
        font-size: 12px;
    }
    .specs_col {
        padding-left: 8px;
        border-left: 1px solid #DADADA;
        margin-right: 24px;
    }
    .specs_col span {
        font-size: 14px;
    }
    section.about-banner {
        height: 350px;
    }
    .best-town-text {
        max-width: 100%;
    }
    .property-detail-slider-bg{
        height: 380px;
    }
    .whishlist-schedule-text-col {
        flex-wrap: wrap;
    }

    a.schedule-showing-col {
        margin-bottom: 10px;
    }

    .whishlist-schedule-text-col {
        justify-content: center;
    }
    .property-detail-tabing {
        padding-left: 0px;
    }
    /* fah */
    .banner-overlay {
        min-height: 400px;
        padding: 0;
    }
    div#map-1 {
        height: 600px !important;
    }
    .appartment-select-option
    {
        width: 16%;
    }

    .zip-city-address-col {
        width: 150px;
    }
}
@media screen and (max-width:767px){
    .banner-text {
        width: 100%;
        margin-bottom: 50px;
    }

    .container {
        max-width: 100%;
    }

    .banner-overlay {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .banner-text a {
        margin-top: 15px;
        padding: 12px 15px;
        font-size: 14px;
    }

    .banner-search {
        padding: 30px 15px;
        border-radius: 25px;
    }

    h1 {
        font-size: 30px;
    }

    .banner-search form {
        margin-top: 20px;
    }

    .radio-custom label {
        width: 60px;
        height: 60px;
    }

    .about-section {
        margin: 40px 0px 0px;
    }

    .about-col {
        width: 100%;
    }

    .about-text {
        max-width: 100%;
    }

    .about-content.flex {
        padding: 0px 15px;
    }

    .about-col {
        text-align: center;
        margin-bottom: 30px;
    }

    h2 {
        font-size: 25px;
    }

    p {
        font-size: 14px;
    }

    .about-text a {
        margin-top: 10px;
        padding: 10px 15px;
        font-size: 14px;
    }

    a {
        font-size: 14px;
    }

    .about_image img {
        left: 0px;
        top: 0px;
    }

    .about_image {
        margin-top: 0px;
    }

    .single-community {
        width: 100%;
        margin-bottom: 20px;
    }

    .communities-section {
        margin-bottom: 40px;
    }

    .single-listing {
        width: 100%;
    }

    .listings-content {
        margin-top: 30px;
    }

    .single_property {
        height: 500px;
        padding: 15px;
        align-items: center;
        margin-top: 40px;
    }
    .site-login a img {
        margin-right: 15px;
        width: 20px;
    }
    .menu-bar i {
        font-size: 25px;
    }
    a.openBtn img {
        width: 21px;
    }
    .ft-col {
        width: 100%;
        margin-bottom: 30px;
    }
    .apparement-list-form {
        flex-wrap: wrap;
    }

    .zip-city-address-col {
        margin-right: 0px;
        width: 100%;
        margin-bottom: 10px;
    }

    .appartment-select-option {
        width: 45%;
    }

    .appartment-select-option select {
        width: 100%;
        margin-bottom: 11px;
    }

    .bedroom-apartment-sec {
        padding: 30px 0px;
    }
    .apartment-map iframe {
        height: 350px !important;
        border-radius: 0px;
        margin-bottom: 20px;
    }

    .appartment-text {
        height: 100%;
    }
    .banner-search {
        width: 100%;
    }
    .footer-top {
        background: #999999;
        padding: 50px 0;
    }
    .our-team-col {
        margin-bottom: 20px;
    }
    .register_banner {
        max-width: 90%;
        min-width: 80%;
        background: #fff;
        padding: 20px;
        border-radius: 20px;
        text-align: center;
    }
    .register_banner {
        max-width: 100%;
        min-width: 100%;
    }

    fieldset.register_banner.custom-property-forms {
        padding: 25px;
    }

    .main-banner-overlay {
        margin: 0px 15px;
    }
    .whishlist-schedule-text-col {
        justify-content: flex-start;
    }
    .share-icons-flex {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    hr.horintal-line {
        margin: 20px 0px;
    }
    .map-view-content .single-listing {
        width: 100%;
    }
    .slider .owl-nav {
        display: none;
    }
    .dashboard-tabs-links {
        position: relative;
        width: 100%;
    }

    .dashboard-col-flex {
        flex-direction: column;
    }

    .dashboard-content-col {
        width: 100%;
    }

    .dashboard-tabs-links {
        top: 0px;
    }

    section.dashboard-section {
        margin-top: 66px;
    }
    .best-combo-text a {
        position: relative;
        bottom: 0px;
        margin-top: 10px;
    }

    div#pills-tabContent {
        padding: 15px;
        margin: 0px;
    }

    .dashboard-tabs-links {
        padding-bottom: 10px;
    }

    .best-combo-text {
        margin-left: 0px;
        padding: 0px;
        margin-top: 20px;
    }

    .properties-contacted-col .single-listing {
        flex-direction: column;
        width: 100%;
    }

    .properties-contacted-col {
        flex-direction: column;
        padding: 0px;
    }

    .properties-contacted-col .listing_info {
        padding: 0px 13px;
        width: 100%;
    }

    .single-listing {}

    .properties-contacted-col .listing_image {
        width: 100%;
        margin-bottom: 20px;
    }

    .single-listing-share {
        width: 100%;
        align-items: center;
    }

    span.fav-icon {
        top: -493%;
        right: 21px;
    }

    .input-container {
        width: 100%;
    }

    .renter-histroy .input-container {
        margin-bottom: 10px;
    }

    .apartment-preferences-col {
        width: 100%;
    }

    .cus-input-container .row {
        margin-bottom: 30px;
    }
    .avatar-name-flex h6 {
        display: none;
    }

    header.dashboard-header .header-content {
        padding: 15px;
    }

    .dashboard-login {
        margin-left: 0px;
    }

    .avatar-name-flex {
        margin-left: 7px;
    }

    header.dashboard-header .cus-site-search {margin-right: 10px;}
    header.dashboard-header .site-menu {
        top: 80px;
    }
    /* fah */
    .ft-bottom
    {
        padding: 20px 0;
    }
    .appartment-select-option {
        padding: 5px;
    }
    .property-detail-col-text
    {
             margin-left: inherit;
    }
}





/* new css */
label.minMaxRange + input[type=number] {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
    -webkit-appearance: none !important;
    margin: 0 !important;
    -moz-appearance: textfield;
    padding-left: 20px;
    padding-right: 0px;
    min-width: 90px;
    text-align: center;
}

input[type="number"] {}

label.minMaxRange {
    position: relative;
}
label.minMaxRange small {
    position: absolute;
    right: -23px;
    top: 3px;
}.forget-pass {
     display: flex;
     justify-content: flex-end;
 }

a.adminAgentLogin {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0px;
    padding: 20px 0px;
    color: #000;
    font-size: 20px;
    font-weight: 700;
}

input[name="next"].active {
    user-select: none;
    pointer-events: none;
    opacity: 0.2;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}




.property-detail-main-sec {
    padding-top: 20px;
}
.presentedBy h2 {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 5px;
}

.presentedBy p {
    font-size: 15px;
    font-weight: 400;
}

.presentedBy {
    margin-bottom: 30px;
}


.listing-text-col h3 a {
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.listing_info a span {
    font-weight: 600;
}
span.next.action-button:hover {
    cursor: pointer;
}
.apartment-map {
    border-radius: 20px;
    overflow: hidden;
}

.ft-upper-content.flex {
    width: 100%;
    max-width: 93%;
    margin: 0 auto;
}

.ft-bottom.flex {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}
.listing_info a {
    min-height: 81px;
}

/* filter select option styles */
.apparement-list-form{
    align-items: flex-end;
}
.checkbox-dropdown{
    margin-bottom: 5px;
}
.checkbox-dropdown .btn{
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #DEDEDE;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    height: 46px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkbox-dropdown .dropdown-menu{
    padding: 10px;
    width: 190px;
    margin-top: 0px;
}
.checkbox-dropdown .apply-filter{
    width: auto;
    margin-right: 5px;
}
.checkbox-dropdown .custom-checkbox:not(:last-child){
    margin-bottom: 7px;
}
.checkbox-dropdown .custom-checkbox label{
   font-size: 14px;
}
.apparement-list-form .zip-city-address-col input{
    height: 46px;
}
#search-properties-btn{
    padding: 13px 20px !important;
}
.appartment-select-option {
    margin-right: 8px;
}


/* profile */
.profile .button {
    float: left;
    margin: 0 5px 0 0;
    width: 120px;
    height: 40px;
    position: relative;
    font-size: 18px;
  }

  .profile-radio {
    border: #e3e3e3 solid 1px;
    border-radius: 16px;
    font-size: 14px !important;
    font-weight: 300px;
    
}
  
  .profile .button label,
  .profile .button input {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .profile .button input[type="radio"] {
    opacity: 0.011;
    z-index: 100;
  }
  
  .profile .button input[type="radio"]:checked + label {
    background: #000000;
    color: #fff;
    /* border-radius: 4px; */
  }
  
  .profile .button label {
    cursor: pointer;
    z-index: 90;
    line-height: 1.8em;
  }
  
/* profile */


/* property-listing start */



.property-listing-container
{
    padding:25px 0px;
}


.property-list-thumb
{
    background:#f5f5f5;
    padding:20px;
    display: flex;
    margin-top:30px;
    position: relative;
}

.property-list-thumb-img
{
    margin-right:25px;
}

.property-list-thumb-img img
{
    width:300px;
    height:210px;
    object-fit: cover;
}

.property-txt {
    width:450px;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
    margin-right:25px;
}

.property-txt .price
{
    font-size:25px;
}

.property-details-container
{
    display: flex;
}

.property-details-container .property-detail
{
    margin-right:40px;
    font-size:17px;
}

.property-details-container .property-detail span
{
    font-size:12px;
}

.delete
{
    background:#cd3d1b;
    padding:10px;
    width:40px;
    height:40px;
    cursor: pointer;
    margin-left: auto;
    flex-shrink:0;
}

.properties-form
{
    background:#f5f5f5;
    padding:25px;
    margin-top:30px;
}

.properties-form h2
{
    font-size:27px;
    margin-bottom:30px;
}

.sticky-top.properties-form
{
    top:30px;
}

.properties-form input
{
border-radius: 0px;
height:50px;
}

.properties-form textarea
{
    border-radius: 0px;
    resize:none;
}

.properties-form .btn-dark
{
background:#000000;
height:50px;
font-size:20px;
border-radius: 0px;
font-weight:500;
}

.site-cart
{
padding: 0px 10px;
position: relative;
}

.site-cart a
{
    position: relative;
    width:25px;
}

.site-cart img
{
    width:22px;
    margin-top:0px;
}

.rounded-pill
{
    background:#b53518;
    color:#ffffff;
    border-radius:50%;
    height:22px;
   min-width:22px;
    text-align: center;
    right:0px;
    max-width:25px;
    max-height:25px;
    font-size:14px;
    top:-10px;
    right:-10px;
    padding: 0px;
    line-height:22px;
}

/* property-listing end */


/* home page banner form start */

.banner-search.location-search {
    width: 420px;
    max-height: 100% !important;
}
.home-banner-form label:not(.form-check-label){
    font-weight: 500;
    margin-bottom: 15px;
}
.buy-rent-options .form-check-label{
    font-size: 15px;
    color: #767676;
    margin-left: 5px;
}
.buy-rent-options .form-check-inline{
    margin-right: 60px;
}
.home-banner-form .form-group{
    margin-bottom: 25px;
}
.home-banner-form .select-location {
   margin-bottom: 0;
}
.home-banner-form input::placeholder{
    font-size: 14px;
    color: #767676;
}
.home-banner-form .select-location input{
    padding-left: 40px;
}
.buy-rent-options .form-check-input{
 height: auto;
}
.home-banner-form input{
    padding: 10px;
    border: 1px solid #999999;
    border-radius: 10px;
    font-size: 14px;
    padding: 5px 10px;
    font-weight: 400;
    color: #000000;
    height: 42px;
}
.price-range input{
    width: 155px;
}
.price-range span{
    font-size: 14px;
    color: #767676;
}
.btn-grey{
    height: 52px;
    width: 195px;
    background-color: #999999;
    padding: 14px 47px;
    border-radius: 10px;
    color: #fff;
}
.btn-grey:hover{
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
}
.custom-control-label::before{
    width: 52px;
    height: 38px;
    border: 1px solid #000;
    background-color: transparent;
}
.custom-control-input:checked~.custom-control-label::before{
    background-color: #000000;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::after{
    background-image: none;
}
.custom-control-label::after{
    width: 52px;
    height: 38px;
}
.home-banner-form .cus-radio-custom{
    margin-right: 0;
}
.home-banner-form .input-container label{
    border: 0;
}
.home-banner-form .cus-radio-custom label span {
    color: #767676;
    font-size: 13px;
    border-radius: 0px;
    border: 1px solid #999;
    border-left: 0;
    /* width: 52px;
    height: 40px; */
}
.home-banner-form .input-container .cus-radio-custom input:checked ~ span {
    border-radius: 0;
    border: 1px solid #000 !important;
}
.home-banner-form .input-container .cus-radio-custom:first-child input:checked ~ span {
    border: 1px solid #000 !important;
}
.home-banner-form .input-container .checkox-custom:first-child label span{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-left: 1px solid #999 !important;
}
.home-banner-form .input-container .checkox-custom:last-child label span{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.home-banner{
    padding: 25px 0 !important;
}
.home-banner .banner-text{
    margin: auto 0;
    padding-top: 130px;
}
.btn,
.btn:focus {
   box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0);
}
button:focus {
   box-shadow: none !important;
}
.form-control:focus {
   outline: 0;
   box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0);
   border: 1px solid #999999;
}
/* home page banner form end */

/* popup form start */
.popup-form .modal-header{
  padding: 15px 20px 10px 20px;
}
.popup-form .modal-header .modal-title{
    font-size: 20px;
    font-weight: 500;
    color: #000;
}
.popup-form .modal-body{
    padding: 30px 20px;
}
.popup-form .modal-body .form-control{
    padding: 10px;
    border: 1px solid #999;
    border-radius: 10px;
    font-size: 14px;
    padding: 5px 10px;
    font-weight: 400;
    color: #000000;
    height: 42px;
}
.popup-form .modal-body .form-control::placeholder{
    color: #000;
    font-size: 14px;
}
.popup-form .form-field{
    margin-bottom: 20px;
}
.popup-form .apartment-preferences label{
    color: #000000;
    font-weight: 500;
}
.popup-form .apartment-preferences{
    margin-bottom: 20px;
}
/* popup form end */

/* set new password form start */
.set-password-wrapper{
    padding-top: 40px;
}
.set-password{
    min-width: 400px;
    max-width: 400px;
    font-size: 14px;
    padding: 30px;
}
.small-heading{
    font-size: 19px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.password-specificity{
    padding-left: 17px;
}
.password-specificity li{
    list-style: disc;
}
.set-password .field input[type="password"] {
    background-image: none;
}
.set-password form{
    margin-bottom: 0 !important;
}
.set-password form .error{
    margin-bottom: 0;
}
/* set new password form end */


/* Responsive styles */
/* // X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 
    .zip-city-address-col {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 5px;
    }
    .appartment-select-option {
        width: 48%;
        margin-bottom: 5px;
        margin-right: 5px;
        padding-left: 0;
        padding-right: 0;
    }
    .apparement-list-form{
        flex-wrap: wrap;
    }
    #search-properties-btn{
        margin-bottom: 15px;
    }
    .filter-option{
        width: 100%;
    }
    .checkbox-dropdown .dropdown-menu {
        width: 100%;
    }

     /* home page banner form start */
     .home-banner-form .form-group {
        margin-bottom: 15px;
        border-radius: 15px;
    }
    .home-banner-form label:not(.form-check-label) {
        margin-bottom: 10px;
    }
    .banner-search.location-search {
        padding: 15px;
        width: 100%;
    }
    .btn-grey {
        height: 40px;
        width: 120px;
        padding: 4px 7px;
    }
    .home-banner .banner-content .banner-text{
        padding-top: 60px;
        margin-bottom: 30px;
    }
    .price-range input {
        width: 110px;
    }
    .home-banner .banner-search {
        border-radius: 15px;
    }
    .buy-rent-options .form-check-inline {
        margin-right: 40px;
    }
    .home-banner-form .cus-radio-custom label span {
        padding: 0 4px;
    }
    .home-banner-form .cus-radio-custom label span, .home-banner-form .radio-custom label span {
        height: 35px;
    }
    .price-range span {
        margin: 0 10px;
    }
    /* home page banner form end */

    /* popup form start */
    .popup-form .modal-body {
        padding: 20px 20px;
    }
    .popup-form .apartment-preferences {
        margin-bottom: 0;
    }
    .popup-form .modal-header .modal-title {
        font-size: 18px;
    }
    .popup-form .apartment-preferences label {
        margin-bottom: 10px;
    }
    .popup-form .profile .button {
        width: 125px;
        margin-bottom: 10px;
    }
    /* popup form end */

    /* set new password form start */
    .set-password-wrapper {
        padding-top: 0;
    }
    .set-password {
        min-width: 100%;
        max-width: 100%;
        padding: 20px;
    }
    .set-password p{
        margin-bottom: 10px;
    }
    .small-heading {
        margin-bottom: 5px;
    }
    .set-password form {
        margin-top: 15px !important;
    }

    /* set new password form end */
}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) { 
    .zip-city-address-col {
        width: 31%;
        margin-bottom: 10px;
        margin-right: 12px;
    }
    .appartment-select-option {
        width: 31%;
        margin-bottom: 5px;
        padding-left: 0;
        padding-right: 0;
    }
    .apparement-list-form{
        flex-wrap: wrap;
    }
    #search-properties-btn{
        margin-bottom: 11px;
    }
    
     /* home page banner form start */
     .home-banner-form .form-group {
        margin-bottom: 20px;
        border-radius: 15px;
    }
    .home-banner-form label:not(.form-check-label) {
        margin-bottom: 10px;
    }
    .banner-search.location-search {
        padding: 20px;
    }
    .btn-grey {
        height: 45px;
        width: 130px;
        padding: 4px 7px;
    }
    .home-banner .banner-content .banner-text{
        padding-top: 60px;
        margin-bottom: 30px;
    }
    /* .home-banner-form .cus-radio-custom label span {
        width: 48px;
    } */
    /* home page banner form end */
    /* popup form start */
    .popup-form .modal-body {
        padding: 20px 20px;
    }
    .popup-form .apartment-preferences {
        margin-bottom: 10px;
    }
    .popup-form .modal-header .modal-title {
        font-size: 18px;
    }
    .popup-form .apartment-preferences label {
        margin-bottom: 15px;
    }
    /* popup form end */

    /* set new password form start */
    .set-password-wrapper {
        padding-top: 0;
    }
    .set-password {
        padding: 25px;
    }
    .set-password form {
        margin-top: 25px !important;
    }

    /* set new password form end */
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) { 
    .zip-city-address-col {
        width: 23%;
        margin-bottom: 15px;
    }
    .appartment-select-option {
        width: 23%;
        margin-bottom: 15px;
        padding-left: 0;
        padding-right: 0;
    }
    .apparement-list-form{
        flex-wrap: wrap;
    }
    #search-properties-btn{
        margin-bottom: 15px;
    }

     /* home page banner form start */
     .home-banner-form .form-group {
        margin-bottom: 20px;
    }
    .home-banner-form label:not(.form-check-label) {
        margin-bottom: 10px;
    }
    .banner-search.location-search {
        padding: 21px;
    }
    /* .home-banner-form .cus-radio-custom label span {
        width: 48px;
    } */
    /* home page banner form end */

    /* popup form start */
    .popup-form .modal-body {
        padding: 20px 20px;
    }
    .popup-form .apartment-preferences {
        margin-bottom: 10px;
    }
    .popup-form .modal-header .modal-title {
        font-size: 18px;
    }
    /* popup form end */

    /* set new password form start */
    .set-password-wrapper {
        padding-top: 0;
    }
    .set-password {
        padding: 25px;
    }
    .set-password form {
        margin-top: 25px !important;
    }

    /* set new password form end */
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) { 
    .appartment-select-option {
        width: 19%;
    }
    .apparement-list-form {
        flex-wrap: wrap;
    }
    .appartment-select-option {
        margin-bottom: 15px;
    }
    .zip-city-address-col {
        margin-bottom: 15px;
        width: 19%;
    }
    #search-properties-btn {
        margin-bottom: 15px;
    }
    
    /* home page banner form start */
    .home-banner-form .form-group {
        margin-bottom: 20px;
    }
    .home-banner-form label:not(.form-check-label) {
        margin-bottom: 10px;
    }
    /* home page banner form end */

     /* popup form start */
    .popup-form .modal-body {
        padding: 20px 20px;
    }
    /* popup form end */

    /* set new password form start */
    .set-password-wrapper {
        padding-top: 0;
    }
    .set-password {
        padding: 25px;
    }
    .set-password form {
        margin-top: 10px !important;
    }
    .small-heading {
        margin-bottom: 10px;
    }
    /* set new password form end */

    section.main-banner {
        height: calc(100vh - 102px);
    }
}

/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1400.98px) {
    .zip-city-address-col {
        width: 140px;
    }
}

/* // For 2k Monitors, (more than 1401 px) */
@media (min-width: 1401px) and (max-width: 1599.98px) {
  
}

@media (min-width: 1600px) and (max-width: 2559.98px) {
   
}

@media (min-width: 2560px) {

}
