<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
#locationSection &gt; ul,
#locationSection &gt; ul &gt; li {
    margin: 0;
    padding: 0;
}

#locationSection p {
    margin: 0;
    padding: 0;
}

#locationSection &gt; ul &gt; li {
    list-style: none;
    border-radius: 4px;
    border: solid 1px #333333;
    margin-bottom: 35px;
    background-color: #FCFCFC;
}

#locationSection &gt; ul &gt; li:before {
    display: none;
}

#locationSection &gt; ul &gt; li:hover {
    background-color: #EFF1F2
}

#locationSection h2 {
    color: #333333;
    font-size: 25px;
    margin: 0 0 5px 0;
}

#locationSection a {
    color: #333333;
    text-decoration: none;
    display: block;
    height: 100%;
    padding: 10px 20px 10px 20px;
}

#locationSection a:hover {
    text-decoration: none;
}

#locationSection img
{
    display: none;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    #locationSection &gt; ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #locationSection &gt; ul &gt; li {
        box-sizing: border-box;
        width: Calc(50% - 20px);
    }

    #locationSection img {
        display: block;
        margin: 0;
        padding: 0;
        vertical-align: top;
    }
}
</pre></body></html>