.valocity-avm-form-container .form-content {
    display: flex;
    flex-wrap:nowrap;
    margin-bottom: 0;
}
.valocity-avm-form-container .form-content input, .valocity-avm-form-container .form-content button {
    height: 55px !important;
}
.valocity-avm-no-property {
    font-size:22px;
}
.valocity-avm-form-container .valocity-avm-title {
    font-size:36px;
}
.valocity-avm-form-container #loading-icon {
    display: none;
}
.valocity-avm-form-container #loading-icon i {
    margin-left:5px;
    animation: .75s linear infinite spinner-border;
}
.fancybox-button:disabled {
    color: #ffffff;
    cursor: not-allowed; 
    opacity: 0.9;
}
.valocity-popupsearach-wrapper {
    display: flex;
    flex-wrap: nowrap;
}
.valocity-popupsearach-wrapper > div {
    width: 50%;
}
div#property-popup {
    padding: 0;
}
.valocity-popupsearach-wrapper > div.left-content {
    padding: 20px;
}


/* Valid/Invalid Input Styles */
#property-popup input.valid,
#property-popup  textarea.valid {
    border-color: #28a745;  
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.25);  
}
#property-popup input[type=checkbox].invalid,
 #property-popup input[type=radio].invalid {
    box-shadow: 0px 0px 8px red !important;
}
#property-popup input[type=checkbox], #property-popup input[type=radio] {
    -moz-appearance: auto;
    -webkit-appearance: auto;
    -ms-appearance: auto;
    appearance: auto;
    opacity: 1;
    margin-top: 0.4em;
    margin-right: 0.5em;
}
#property-popup input.invalid,
#property-popup textarea.invalid {
    border-color: #dc3545; 
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.25);  
}
#property-popup .contact-row .error {
    font-size: 15px;
    line-height: 11px;
    margin-top: 5px;
    color: #dc3545;
}
#property-popup .contact-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
#property-popup .contact-row select {
    width:100%;
    font-size: 14px !important;
}
#property-popup label {
    margin-bottom: 10px;
}
#property-popup .radio-option {
    display: flex;
    gap: 10px;
}
#property-popup .radio-option input {
    margin-top: 4px;
}
#property-popup .contact-row textarea {
    width:100%;
    height:120px;
}
#property-popup .contact-row .full-width {
    width: 100%;
}
#property-popup .contact-row .half-width {
    width: 50%;
}


#property-popup form#contactForm h2 {
    font-weight: 700;
    text-align: center;
    color: #000;
    font-size: 30px;
}

.contactForm .invalid {
    border-color: red;
}

.contactForm .error {
    color: red;
    font-size: 12px;
    display: none;
    margin-top: 5px;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #444;
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.5s forwards;
    font-size: 14px;
}

.notification.success {
    background-color: #28a745;
}

.notification.error {
    background-color: #dc3545;
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes spinner-border {
    100% {
        transform: rotate(360deg);
    }
}

#valocity-avm-results {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    max-width: 100%;
    z-index: 100;
}
#valocity-avm-results p {
    padding: 9px 10px 0px;
}
#valocity-avm-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#valocity-avm-results li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

#valocity-avm-results li:last-child {
    border-bottom: none;
}

#valocity-avm-results li:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}
#property-report iframe {
  width:100%;
  min-height:100vh;
}


@media (max-width: 991px) {
    .valocity-popupsearach-wrapper {
        display: block;
    }
    .valocity-popupsearach-wrapper > div {
        width: 100%;
    }
    .valocity-popupsearach-wrapper > div.right-content {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .valocity-avm-form-container .form-content {
        display: block;
    }
    .valocity-avm-form-container input#valocity-input-search {
        font-size: 13px;
    }
    .valocity-avm-form-container .form-content input, 
    .valocity-avm-form-container .form-content button {
        width: 100%;
    }
}