<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">div#binWrapper {
    position: absolute;
    bottom: 35px;
    left: 35px;
    box-sizing: border-box;
}

@media screen and (max-width: 450px) {
    div#binWrapper {
        display: none;
    }
}

div#binWrapper &gt; div.bin{
    position: fixed;
    width: 15vw;
    min-width: 150px;
    max-width: 220px;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Sans", "Lucida Grande", Arial, sans-serif;
    height: 90px;
    line-height: 1.5rem;
    text-align: center;
    padding: 1rem 0.5rem;
    border-radius: 0.5rem;
    color:#ededed;
}

div#binWrapper &gt; div.bin &gt; a {
    position: absolute;
    right: -0.75rem;
    top: -0.75rem;
    background-color: #f00;
    padding: 0.5rem;
    border-radius: 2rem;
    text-decoration: none;
    width: 1.6rem;
    height: 1.6rem;
    line-height: 0.8rem;
    color: #000;
    font-weight: bold;
}

div#binWrapper &gt; div.bin:first-of-type {
    bottom: 35px;
    z-index: 555; /* On top of other bin notices. */
}
div#binWrapper &gt; div.bin:not(:first-of-type) {
    bottom: 160px;
}
</pre></body></html>