/* On Sale Badge */

#main > div > ul > li > div.astra-shop-thumbnail-wrap > .onsale {
    margin-top: 5px;
    margin-right: 5px;
    border-radius: 16px !important;
    display: block;
    background-color: #8E153C;
    color: white;
    padding: 0 10px;
    font-weight: bold;
}

.onsale-badge {
    background-color: #8E153C;
    color: white;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    border-radius: 50%;
    /*padding: 18px 5px;*/
    justify-content: center;  /* horizontal zentrieren */
    align-items: center;      /* vertikal zentrieren */
    padding: 3px;
    width: 72px;
    height: 72px;
    position: absolute;
    /* top: -15px; */
    top: 20px;
    left: -15px;
    z-index: 10;

    .onsale-badge__percentage {
        font-size: 2.5em;
        line-height: 1.7em;
        font-variant-numeric: lining-nums;
    };

    .onsale-badge__vertical-text {
        display: flex;
        flex-direction: column;
        line-height: 1;

        :first-child {
            font-size: 1.5em;
            font-weight: 600;
        }

        :last-child {
            font-size: 0.65em;
            font-weight: 600;
        }
    }
}



.astra-shop-thumbnail-wrap .ast-shop-product-out-of-stock {
    border: var(--ast-global-color-0) thin solid;
    border-radius: 10px;
    bottom: 90px !important;
    transform: rotate(-5deg);
    backdrop-filter: blur(3px);
    background-color: rgba(255,255,255, 0.8) !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
