.badges {
    --badge-width: 200px;
    position: fixed;    
    right: 0;
    bottom: 0;
    padding: var(--target-padding);
    margin-bottom: calc(var(--header-height) + var(--initial-target-padding));
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.badges > a > img {
    width: var(--badge-width);
}

@media ((max-width: 1400px) and (max-height: 910px)) or (max-width: 730px) {
    .badges {
        display: none;
    }
}