*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    font-family: "Inter", serif;
}
li{
    list-style: none;
}
.flex {
    display: flex;
}
.justify-between{
    justify-content: space-between;
}
.form-container {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 0 30px #d3d3d3;
    border-radius: 20px;
}

.form-tab {
    padding: 10px 10px 20px;
    border-bottom: 1px solid #a4a3a3;
}
.form-tab h3 {
    padding-bottom: 40px;
    font-size: 26px;
}
.form-tab ul{
    display: flex;
    justify-content: space-between;

}
.form-tab li {
    color: #a7a4a4;
    position: relative;
    font-family: 'Roboto', sans-serif;
}
.form-tab li.active{
    color: #000;
}
.form-tab li::after {
    content: "";
    left: -10px;
    bottom: -20.5px;
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: all .3s;
}
.form-tab li.active::after{
    width: calc(100% + 20px);
}

.form-content {
    display: none;
}
.form-content:nth-child(1){
    display: block;
}
.form-content-wrapper {
    padding: 20px 0px 10px;
}
.label-title {
    margin-bottom: 10px;
    font-size: 20px;
}
.label-title h5{
    font-family: 'Roboto', sans-serif;
}
.text-input::placeholder{
    font-family: "Inter", serif;
}
textarea.text-input{
    resize: none;
    height: 150px;
}
.right-btn{
    text-align: right;
}
.center-btn{
    text-align: center;
}
/* .custom-submit-btn {
    padding: 8px 20px;
    display: inline-block;
    line-height: 1.2;
    background: #3a8181;
    color: #fff;
    outline: none;
    border: 1px solid #3a8181;
    border-radius: 9px;
    font-size: 14px;
    cursor: pointer;
} */
.upload-file-box {
    position: relative;
    border: 2px dashed #3a8181;
    border-radius: 10px;
}
.upload-file-box .choose-file {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%,-50%);
    width: 100%;
}
.choose-file h5 {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 10px;
}
.choose-file p {
    font-weight: 300;
    color: #606060;
    padding-bottom: 20px;
}
.upload-file-box input.input-field {
    height: 200px;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}
.address-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
}
.address-row .form-field {
    width: 50%;
}
.address-row .form-field:nth-child(3n){
    margin-right: 0;
}
.select-type::after {
    content: "";
    right: 15px;
    bottom: 25px;
    position: absolute;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    z-index: -1;
}
.form-field  label {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}
.map-row{
    padding-top: 30px;
    margin-bottom: 30px;
}
.map-row label{
    margin-bottom: 20px;
    display: block;
}
.map-box{
    height: 300px;
}
.map-box iframe{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
}
.property-detail-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.property-detail-row .input-wrapper {
    width: 48%;
}
.amenities-row {
    display: flex;
    flex-wrap: wrap;
}
.amenities-row .custom-check-box {
    width: 33.33%;
    margin-bottom: 24px;
}
.custom-check-box{
    padding-left: 30px;
    position: relative;
}
.custom-check-box input {
    position: absolute;
    left: 8px;
    width: 18px;
    height: 16px;
    z-index: 1;
    opacity: 0;
    top: 5px;
}
.custom-check-box label{
    position: relative;
    padding: 6px 0;
    font-family: 'Roboto', sans-serif;
}
.custom-check-box label::before {
    content: "";
    left: -32px;
    top: 7px;
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid #008080;
    border-radius: 4px;
}
.custom-check-box label::after {
    content: "";
    left: -29px;
    top: 10px;
    position: absolute;
    width: 9px;
    height: 4px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
}
.custom-check-box input:checked + label::before{
    background-color: #008080;
}
.property-detail-row input.input-field {
    padding-right: 40px;
}
.flex-basic{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.upload-file-box, .preview-container{
    width: 100%;
    margin-bottom: 10px;
}
.file-box {
    border: 1px solid #d4d4d4;
    padding: 10px 40px 10px 10px;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.img-box {
    width: 100px;
}
.img-box img, .img-box iframe {
    width: 100%;
    object-fit: cover;
    height: 100px;
    border-radius: 5px;
}
.text-box {
    width: calc(100% - 100px);
    padding-left: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.text-box label {
    font-size: 12px;
}
span.remove-btn {
    position: absolute;
    top: 50px;
    right: 10px;
    cursor: pointer;
}
.text-box select {
    width: 100%;
    padding: 10px;
    outline: none;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
}
.select-img-type {
    width: 200px;
}
.other-text{
    width: 200px;
    display: none;
}
.other-text input{
    background-color: #d2d2d2;
    pointer-events: none;
}
.other-text.active{
    display: block;
}
.other-text.active input {
    background-color: transparent;
    pointer-events: inherit;
    line-height: 1.4;
    border-radius: 5px;
}
.other-text input{
    border: 1px solid #d4d4d4;
    padding: 10px;
    font-size: 12px;
}



.top-section .site-logo img{
    width: 150px;
}
.top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    border-bottom: 1px solid rgb(236, 236, 236);
}
.top-section ul {
    display: flex;
    align-items: center;
}
.top-section ul li{
    padding-left: 20px;
}
.top-section ul img {
    width: 30px;
}

.avitar-img {
    text-align: center;
    width: 80px;
    height: 80px;
    margin: -40px auto 0;
    border: 4px solid #000;
    border-radius: 50%;
    background: #fff;
}
.avitar-img img {
    width: 100%;
}
.step-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 0;
}
.question-form-title h2{
    text-align: center;
    padding-bottom: 30px;
    color: #4a4a4a;
    font-family: 'Roboto', sans-serif;
}
.question-form-title p{
    text-align: center;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
}
.field-box-container {
    width: 400px;
    margin: 0 auto;
}
.hasAccount {
    position: relative;
    margin-bottom: 20px;
}
.hasAccount input {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}
.hasAccount label {
    width: 100%;
    display: block;
    background: #b0dfdfa6;
    padding: 16px 20px 16px 50px;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}
.hasAccount label::before {
    content: "";
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #ececec;
}
.hasAccount label::after{
    content: "";
    left: 15px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #3a8181;
    display: none;
}
.hasAccount input:checked + label::after{
    display: block;
}
.submit-wrap{
    text-align: center;
    padding-top: 20px;
}
.custom-submit-btn.submit{display: none;}
.form-field .text-input.validation-error { border: 1px solid red; }
.error-message{color: red}
.submit-wrap .next-btn, .custom-submit-btn, .choose-file span{
    background-color: #3a8181;
    padding: 14px 50px;
    color: #fff;
    border-radius: 4px;
    border: none;
    outline: none;
    transition: .3s all;
    box-shadow: 0px 10px 40px -10px rgba(58, 129, 129, .5);
    cursor: pointer;
    pointer-events: inherit; 
    opacity: 1; 
}
.submit-wrap .next-btn:hover, .custom-submit-btn:hover, .choose-file span:hover{
    background-color: #125b5b;
}  
.submit-wrap .next-btn.disable{
    background-color: rgb(158, 158, 158);
    pointer-events: none; 
    opacity: 0.5; 
    cursor: not-allowed; 
}
.form-field{
    margin-bottom: 20px;
    position: relative;
}
.sellproperty form .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sellproperty form label {
    display: block;
    font-family: 'Roboto', sans-serif;
}
.sellproperty form label.inline {
    display: inline;
}
.sellproperty form span.radio-label {
    display: inline-block;
    width: 160px;
}
.sellproperty form label.loan_yes, .sellproperty form label.loan_no, .sellproperty form label.architects_yes, .sellproperty form label.architects_no, .sellproperty form label.engineer_yes, .sellproperty form label.engineer_no{
    margin-right: 10px;
}
.sellproperty form .col-md-6 {
    width: 48%;
    margin-bottom: 20px;
}
.sellproperty form .col-12{
    width: 100%;
    margin-bottom: 20px;
}
.sellproperty .invalid-feedback{
    display: none;
}
.form-field .text-input, .sellproperty form .form-control {
    width: 100%;
    background: #b0dfdfa6;
    padding: 16px 20px 16px 20px;
    border-radius: 5px;
    position: relative;
    border: none;
    outline: none;
    font-size: 16px;
    /* text-transform: uppercase; */
    color: #000;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
    appearance: none;
}
.form-field .text-input ::placeholder{
    font-family: 'Roboto', sans-serif;
}
.form-field .text-input.mobile-number{
    padding: 16px 20px 16px 85px !important;
}
.form-field .custom-select-wrapper.text-input{
    padding: 0;
}
.iti{
    width: 100%;
}
.text-input::placeholder{
    opacity: 1;
    color: #696969;
}
.tab-box{
    display: none;
}
.tab-box:first-of-type{
    display: block;
}
.loder-btn-wrap {
    position: relative;
    width: fit-content;
    display: flex;
    margin: 0 auto;
}
.submit-loder {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50%;
    border: 3px dashed #fff;
    border-top: 3px solid transparent;
    animation: loader 1s linear infinite;
    position: absolute;
    left: 7px;
    top: 7px;
    display: none;
}
#userMobileSignupBox .field-box-container, #userbox .field-box-container {position: relative;}
.widgetLoader {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    width: 100%;
    height: 250px;
    background: rgba(255, 255, 255, .5);
    text-align: center;
    z-index: 9;
    background-image: url(https://media.tenor.com/On7kvXhzml4AAAAj/loading-gif.gif);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center center;
}
.loder-btn-wrap.active .submit-loder{
    display: block;
}

.loader {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #777;
}

.error {
    color: red;
    padding: 10px;
    font-size: 14px;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.center-text{
    text-align: center;
}
.otp-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.otp-row .form-field{
    width: 22%;
}
.otp-row .form-field input{
    text-align: center;
}
.otp-row .submit-wrap{
    width: 100%;
}

.pop-lightbox {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    display: flex;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    text-align: center;
    backface-visibility: hidden;
    background: rgba(38, 38, 38, 0.8);
    padding: 20px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: scale(.6);
    transition: all .3s linear;
}
.pop-lightbox.active{
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    z-index: 999;
}
.pop-lightbox .pop-lightbox-content {
    position: relative;
    width: 100%;
    height: auto;
    background: rgb(255, 255, 255);
    border-radius: 5px;
    padding: 40px;
    margin: 0px auto;
    max-width: 600px;
   
}
.close-btn {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}
.close-btn span {
    width: 100%;
    height: 2px;
    background-color: #000;
    display: block;
    transform: rotate(45deg);
    position: relative;
    top: 8px;
}
.close-btn span:last-of-type{
    transform: rotate(-45deg);
    top: 7px;
}
.pop-lightbox-content p{
    padding: 20px 0 40px;
}
.button-group .custom-btn{
    margin: 0 10px;
}
.custom-btn {
    padding: 10px 30px;
    border-radius: 4px;
    box-shadow: 0px 10px 40px -10px rgba(58, 129, 129, .5);
    text-decoration: none;
    display: inline-block;
    border: 1px solid transparent;
}
.custom-btn.gray-btn{
    background: rgb(236, 236, 236);
    color: rgb(74, 74, 74);
    border-color: rgb(218, 218, 218);
}
.custom-btn.gray-btn:hover{
    background: rgb(218, 218, 218);
}
.custom-btn.dark-btn{
    background: #3a8181;
    color: #fff;
}
.custom-btn.dark-btn:hover{
    background-color: #125b5b;
}
.ask-pop .center-text span{
    padding-bottom: 20px;
    display: block;
}
.form-field .iti.iti--allow-dropdown {
    width: 100%;
}
.error-text {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    font-size: 12px;
    color: red;
    display: none;
}
.error.error-text, .error .error-text{
    display: block;
}
.text-input.hide {
    cursor: not-allowed;
    opacity: .5;
}

.switch-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Switch button */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #4CAF50;
}

input:checked + .slider:before {
    transform: translateX(24px);
}
.toggle-btn-wrap {
    margin-bottom: 20px;
}
.detail-box-container, .address-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0;
    width: 100%;
}
.detail-box-container .w-50 {
    width: 49%;
}
.detail-box-container .w-30{
    width: 32%;
}
.detail-box-container .w-25{
    width: 24%;
}
.w-100{
    width: 100%;
}
.address-line .text-input{
    width: 49%;
    margin-bottom: 20px;
}
.property-row {
    display: flex;
    justify-content: space-between;
    max-width: 500px;
    margin: 0 auto;
    padding: 10px;
}
.property-row a {
    box-shadow: 0 0 20px #0000004d;
    border-radius: 10px;
    padding: 20px 20px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #008080;
    font-size: 20px;
    text-transform: uppercase;
    transition: all .3s;
}
.property-row a:hover {
    background: #008080;
    color: #fff191;
}
.property-row a img {
    width: 100px;
    display: block;
    margin: 0 auto;
}
#companydetail{
    display: none;
}
.company-add-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.radio-wrapper{
    display: flex;
    flex-wrap: wrap;
/*    justify-content: space-between;*/
    margin-bottom: 20px;
    gap: 10px;
}
.choose-file-field{
    margin-bottom: 40px;
}
.add-more-box{
    text-align: right;
}
.add-more-box a{
    text-decoration: none;
    display: inline-block;
}
.property-box-style {
    padding: 20px;
    border: 1px solid #a4a3a3;
    margin-bottom: 20px;
}
.property-box-style:first-of-type .remove-btn {
    display: none;
}
.remove-btn {
    width: 22px;
    cursor: pointer;
}
.remove-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #125b5b;
    position: relative;
    transform: rotate(45deg);
    top: 10px;
}
.remove-btn span:last-of-type{
    transform: rotate(-45deg);
    top: 7px;
}
.autocomplete-dropdown {
    position: absolute;
    z-index: 999;
    background: #fff;
    width: 100%;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
}

.autocomplete-dropdown li {
    padding: 8px 10px;
    cursor: pointer;
}

.autocomplete-dropdown li:hover {
    background-color: #f0f0f0;
}
.custom-select-wrapper {
    position: relative;
    width: 300px;
    font-family: Arial, sans-serif;
}

.custom-select-trigger {
    padding: 15px;
    cursor: pointer;
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 99;
    list-style: none;
    margin: 0;
    background: #fff;
    /*  padding: 16px 20px 16px 20px;*/
}

.custom-option {
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
}

.custom-option.selectable:hover {
    background: #f0f0f0;
    cursor: pointer;
}

.custom-option.non-selectable {
    background: #e1e1e1;
    color: #333;
}
.area-input-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    max-width: 470px;
}

.area-input-group .input-dropdown,
.area-input-group .input-number {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    outline: none;
    flex: 1;
}
.area-input-group .area_value {
    padding: 11px 10px;
}
.area-input-group select {
    background: #cbeaea !IMPORTANT;
}
.area-input-group *:first-child{
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-right: none;
    background: #e5e5e5;
    width: 120px;
}
.area-input-group .area_value{
    border-right: none;
    max-width: 94px;
}
.area-input-group .area_unit{
    width: 80px;
    background: #e5e5e5;
}
.area-input-group *:last-child{
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
a.add_more_area {
    background: #3a8181;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}
.area-input-group .remove_area {
    background: #000;
    padding: 8px 10px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
}

.input-dropdown:focus,
.input-number:focus {
    border-color: #4a90e2;
}
.form-field.text-box{
    display: flex;
    align-items: center;
}
.form-field.text-box .other-text {
    margin-bottom: 0;
    position: relative;
}
.form-field.text-box .other-text .error-message {
    position: absolute;
    bottom: -24px;
}
.choose-file-field span.error-text.error {
    bottom: -29px;
}
.property-row .sell-property img.hover, .property-row .buy-property img.hover {
    display: none;
}
.property-row .sell-property:hover img.normal, .property-row .buy-property:hover img.normal {
    display: none;
}
.property-row .sell-property:hover img.hover, .property-row .buy-property:hover img.hover {
    display: block;
}
@media(max-width: 767px){ 
    .sellproperty{
        padding: 0 15px;
    } 
    .sellproperty form .col-md-6{
        width: 100%;
    }
}