div#binWrapper {
    position: relative;
    left: 35px;
    box-sizing: border-box;
}

div#binReset {
    position: fixed;
    bottom: 20px;
    left: 40px;
    font-family: Helvetica, sans-serif;
    font-style: italic;
    font-size: 0.8rem;
    background-color: var(--main-h1-green);
    color: #fff;
    padding:0.25rem;
    display: block;
    border-radius: 0.5rem;
}

div#binReset:focus,
div#binReset:hover {
    cursor: pointer;
}

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

div#binWrapper > div.bin {
    position: fixed;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Sans", "Lucida Grande", Arial, sans-serif;
    text-align: center;
    padding: 1rem 1rem;
    border-radius: 0.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    align-content: center;
    font-weight: bold;
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    height: 150px;
    color: #333;
    line-height: 1.5rem;
    font-size: 1rem;
}

div#binWrapper > div.bin > 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.6rem;
    color: #000;
    font-weight: bold;
}

div#binWrapper > div.bin:first-of-type {
    bottom: 50px;
    z-index: 2767; /* On top of other bin notices. */
}
div#binWrapper > div.bin:not(:first-of-type) {
    bottom: 50px;
    left: 150px;
    z-index: 2765; /* Under other bin notice. */
}
