@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

.ch-fancy-product-price {
    display: flex;
    justify-content: center;
    align-items: end;
    font-weight: 700;
    gap: 2px;
    color: #000;
}

.ch-fancy-product-price.muted {
    color: rgb(153 153 153);
    position: relative;
}

.ch-fancy-product-price.muted::after {
    content: "";
    background-color: rgb(222 17 42);
    position: absolute;
    transform: rotate(-15deg);
    top: calc(50% - .5px);
    width: 110%;
    height: 1px;
    z-index: 1;
}

.ch-fancy-product-price p{
    margin: 0;
}

.ch-product-prices::after {
    content: "";
    position: absolute;
    background-color: rgb(192 192 192);
    width: calc(100% + 10px);
    height: 1px;
    z-index: -1;
    bottom: -8px;
}

.small .ch-product-prices::after {
    bottom: -6px;
}

.ch-product-prices.has-discount::after {
    bottom: 8px;
}

.small .ch-product-prices.has-discount::after {
    bottom: 10px;
}

.ch-fancy-product-price--whole {
    font-size: 26px;
    line-height: 20px;
}

.small .ch-fancy-product-price--whole {
    font-size: 18px;
    line-height: 16px;
}

.large .ch-fancy-product-price--whole {
    font-size: 30px;
    line-height: 22px;
}

.ch-fancy-product-price--curr-and-fraction {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    line-height: 10px;
    justify-content: center;
}

.large .ch-fancy-product-price--curr-and-fraction {
    font-size: 14px;
    line-height: 12px;
}

.small .ch-fancy-product-price--curr-and-fraction {
    font-size: 8px;
    line-height: 8px;
}

.ch-product-prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: fit-content;
    margin: auto;
    position: relative;
    z-index: 0;
    font-family: "Quicksand", sans-serif;
}

.left .ch-product-prices {
    margin: revert;
}

.ch-discount {
    display: flex;
    height: 50px;
    width: 50px;
    border-radius: 25px;
    background-color: rgb(0 74 54);
    justify-content: center;
    align-items: center;
    color: #FFF;
    padding: 4px;
}

.small .ch-discount{
    height: 40px;
    width: 40px;
    border-radius: 20px;
}

.large .ch-discount{
    height: 56px;
    width: 56px;
    border-radius: 28px;
}

.ch-discount .ch-value{
    font-size: 20px;
}

.small .ch-discount .ch-value{
    font-size: 16px;
}

.large .ch-discount .ch-value{
    font-size: 22px;
}

.ch-discount .ch-unit{
    font-size: 8px;
    align-self: start;
}

.large .ch-discount .ch-unit{
    font-size: 10px;
}
