.new-products-button {
    padding: 1rem 3rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #CE1501;
    cursor: pointer;
    gap: 0.75rem;
    border: 1px solid #CE1501;
    transition: all 0.4s ease;
    margin-right: auto;
    margin-left: 20px;
    min-height: 53px;
}

@media (max-width: 960px) {
    .header .nav__content .nav-bottom .new-products-button {
        flex: 0 0 100%;
        order: 1;
        margin: 0;
    }

    .header .nav__content .nav-bottom .account-buttons-and-information .account-buttons {
        width: 100%;
    }

    .header .nav__content .nav-bottom .account-buttons-and-information .account-buttons .acc-button {
        flex: 0 0 100%;
    }
}

.product-flags li.product-flag.on-sale {
    all: unset;
    width: 30%;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    --f: .5em; /* control the folded part */  
    position: absolute;
    top: 0;
    right: 0;
    line-height: 1.8;
    padding-inline: 1lh;
    padding-bottom: var(--f);
    border-image: conic-gradient(#0008 0 0) 51%/var(--f);
    clip-path: polygon(
    100% calc(100% - var(--f)),100% 100%,calc(100% - var(--f)) calc(100% - var(--f)),var(--f) calc(100% - var(--f)), 0 100%,0 calc(100% - var(--f)),999px calc(100% - var(--f) - 999px),calc(100% - 999px) calc(100% - var(--f) - 999px));
    transform: translate(calc((1 - cos(45deg))*100%), -100%) rotate(45deg);
    transform-origin: 0% 100%;
    background-color: #CE1501; /* the main color  */
    text-align: center;
}

.product-flags li.product-flag.bemix-new {
    all: unset;
    width: 30%;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    --f: .5em; /* control the folded part */  
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1.8;
    padding-inline: 1lh;
    padding-bottom: var(--f);
    border-image: conic-gradient(#0008 0 0) 51%/var(--f);
    clip-path: polygon(
    100% calc(100% - var(--f)),100% 100%,calc(100% - var(--f)) calc(100% - var(--f)),var(--f) calc(100% - var(--f)), 0 100%,0 calc(100% - var(--f)),999px calc(100% - var(--f) - 999px),calc(100% - 999px) calc(100% - var(--f) - 999px));
    transform: translate(calc((cos(45deg) - 1)*100%), -100%) rotate(-45deg);
    transform-origin: 100% 100%;
    background-color: #24b9d7; /* the main color  */
    text-align: center;
}

@media (max-width: 768px) {
    body#index .product-flags li.product-flag.bemix-new,
    body#index .product-flags li.product-flag.on-sale {
        font-size: 12px;
    }
}

.product-flag:not(.on-sale):not(.bemix-new) {
    display: none;
}

.discount_notice {
    font-size: 1.6em;
    color: #7a7a7a;
    margin-bottom: 0.625rem;
}

.product-flags {
    margin: 0;
}
.product-completion, .completion-tooltip {
    display: flex;
    gap: 8px;
    align-items: center;
}
.products-list #product-availability{
    flex-wrap: wrap;
    
}
.products-list #product-availability .product-completion{
   width:100%;
   margin-top:0px !important;
   font-size: 0.7rem;
}
.products-list #product-availability .product-completion svg{
    width: 20px;
    height: 20px;
}