/* Custom styles for the countdown timer on single product pages */
.onsale.countdown {
    font-weight: bold;
    font-size: 14px;
    color: #ff0000;
}

/* Custom styles for the countdown timer on archive pages */
.countdown-wrapper-archive {
    position: absolute;

    top: 0;
    color: #fff;
    padding: 10px;
    text-align: center;
    z-index: 10;
}
@media (max-width: 768px) {
    span.onsale.countdown {
        font-size: 0.7em !important;
    }
    .countdown-wrapper-single span.onsale.countdown {
	width: 100%;
}
    .countdown-wrapper-archive {
    position: absolute;
    top: 30px;
    padding: 0px;
    left: 0;
}
}


.sale-perc {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    background-image: url(../images/sale.svg); /* Tło SVG */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top; /* Tło umieszczone w lewym górnym rogu */
    width: 70px; /* Szerokość SVG */
    height: 100%; /* Wysokość SVG */
    max-height: 70px;
}

.sale-perc-text {
    font-weight: bold;
    font-size: 1.2em;
    color: #fff;
	display: block;
    text-align: center;
    line-height: 1.5; /* Ustawienie liniowej wysokości dla tekstu */
}

