rect.available.hoveredStyle,path.available.hoveredStyle{
    fill:rgba(0,0,0,0.5)!important;
}

rect.sold,path.sold{
    fill:rgba(255,0,0,0.5)!important;
}

rect.available,path.available{
    fill:rgba(0,255,0,0.5)!important;
}

rect.proximamente,path.proximamente{
    fill:rgba(255,255,0,0.5)!important;
}

.hidden{
    display: none;
}

#hovering-container{
    top:0;
    right: 0;
    height: 15vh;
    z-index: 1000;
    background-color: #1f1f1f;
    position: fixed;
    margin-top: 1rem;
    margin-right: 1rem;
    border-radius: 1rem;
}

.badges-container{
    display: flex;
    flex-direction: column;
    height: 100%;
    vertical-align: middle;
}

div.status-badge{
    display:flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    margin: 0% 1rem;
    width: 100%;
    height: 100%;
}

.indicator{
    width:1rem;
    height: 1rem;
    margin-right: 1rem;
    border: solid 1px white;
    border-radius: 50%;
}

.indicator.sold{
    background-color:rgba(255,0,0,0.5)!important;
}

.indicator.available{
    background-color:rgba(0,255,0,0.5)!important;
}

.indicator.proximamente{
    background-color:rgba(255,255,0,0.5)!important;
}

#amortizacion-container{
    justify-items: center;
}

table.amortizacion-table{
    width: 100%;
    border: 1px solid black;
    margin-left: 1rem;
    margin-right: 1rem;
}

tr.header, tr.mes{
    text-align: center;
    border-bottom: 1px solid black;
}

tr.header{
    background-color: bisque;
}
tr.mes{
    background-color: white;
}

.modal-header{
    justify-content:space-between;
}