/* trash module style */

#trash_module {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

#trash_module .trash_item {
    width: calc(50% - 6px);
    height: 100px;
    border-radius: 8px;
    padding: 24px;
}

#trash_module .trash_item img {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: auto;
    margin-right: 16px;
}

#trash_module .trash_item .trash_text {
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
    padding-top: 4px;
    line-height: 1.5em;
    color: #ffffff;
    font-variant-numeric: lining-nums;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

#trash_module .trash_item .trash_text strong {
    font-size: 20px;
}

#trash_module .trash_item.restmuell { background-color: #444441; }
#trash_module .trash_item.papier { background-color: #4b8930; }
#trash_module .trash_item.gelbe_tonne { background-color: #d3a919; }
#trash_module .trash_item.bio { background-color: #b37419; }

@media only screen and (max-width:768px) {

    #trash_module .trash_item {
        width: 100%;
    }

}