#propertyPricePopup.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;

    font-family: Arial, sans-serif;
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 80px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(245, 245, 245, 0.8);
}

#propertyPricePopup.popup-container hr {
    border-color: #000;
}

#propertyPricePopup .popup-header {
    text-align: center;
    margin-bottom: 20px;
}

#propertyPricePopup .popup-title {
    margin-bottom: 20px;
}

#propertyPricePopup .popup-subtitle {
    font-size: 1.5rem;
    color: #000;
    margin: 20px 0;
    max-width: 65%;
    margin: 20px auto;
}

#propertyPricePopup .popup-form {
    margin-bottom: 20px;
}

#propertyPricePopup .popup-input {
    width: 100%;
    margin-bottom: 15px;
    background: transparent;

    border-bottom: 1px solid #d9dae4;
    font-family: Montserrat, sans-serif;
    font-size: .85rem;
    font-weight: 400;
    margin-bottom: 18px;
    padding: 18px 0;
    text-transform: uppercase;
    width: 100%;
}

#propertyPricePopup .popup-info {
    font-size: 13px;
}

#propertyPricePopup .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

#propertyPricePopup .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#propertyPricePopup .popup-submit {
    text-align: center;
}

@media(max-width: 900px){
    #propertyPricePopup.popup-container {
        padding: 20px;
        max-height: 90vh;
        overflow: scroll;
    }

    #propertyPricePopup .popup-subtitle {
        max-width: 100%;
        font-size: 1.25rem;
    }
}