#contentProperties
{
    position: relative;
    margin-top: 46px;
    height: calc(100vh - 46px);
    width: auto;
    overflow-y: scroll;
}

#contentProperties li {
    margin-bottom: 15px;
    padding: 10px;
    border: 2px solid white;
}

#contentProperties li.scrolled-to {
    background-color: #f0f0f0;
    border: 2px solid var(--color-dark);
}

#map
{
    margin-top: 46px;
    height: calc(100vh - 46px);
    background: rgba(240,240,240);
}

.alert-orientation
{
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.alert-orientation span
{
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
}
@media screen and (orientation: portrait) {
    .alert-orientation
    {
        display: block;
    }
}