.properti-description .pro_btn {
    float: left;
    padding-top: 15px;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

@media (max-width: 768px) {
   .modal {
    margin-left: 15px;
    margin-right: 15px;
   }
}

.modal-overlay[aria-hidden="false"] {
    display: flex;
}

.modal {
    background: #fff;
    width: 550px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    padding: 20px;
    position: relative;
}

.modal h3 {
    margin-bottom: 15px;
}

@media (max-width: 480px) {
    .modal {
        width: 100%;
    }
}

.modal-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.modal-header {
    margin: 0 32px 8px 0;
    font-size: 20px;
}

.modal-footer {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 16px;
}

.modal button {
    cursor: pointer;
    color:#ccc;
    transition: color 0.3s ease;
    background-color: #fff;
    padding: 5px;

    &:focus {
        background-color: #fff;
    }

    &:hover {
        color:#222;
    }
}

.modal .btn-primary {
    background: transparent;
    color: #ccc;
}