.property-info-window{
    display: flex;
    flex-direction: column;   
    
    width:100%;
    height: 100%;

    padding:20px;
    background-color: white;
    border-radius: 5px;
}

.property-info-window-header{
    font-weight: bold;

    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    
}

.property-info-window-header h6, .property-info-window-header h4{
    margin:0;
}

.property-info-window-body{
    padding: 10px;
}

.property-info-window-item{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    width: 100%;
    background-color: rgb(0, 0, 0);
    color:white;
    margin: 5px;
    padding: 5px;
}

.property-info-window-item-label{
    font-weight: bolder;
    padding:5px;
    width: 33%;
    text-align: left;
}

.property-info-window-item-value{
    width: 66%;
    text-align: right;
}

.property-info-window-footer{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.property-info-window-footer a{
    border: none;
    outline:none;
}