﻿html {
    scroll-behavior: smooth;
}

.price-strike-through {
    position: relative;
    display: inline-block;
}

    .price-strike-through::before {
        content: '';
        border-bottom: 2px solid lightblue;
        width: 100%;
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: skewY(-10deg);
        transform: skewY(-10deg);
    }

.price-strike-through-black {
    position: relative;
    display: inline-block;
}

    .price-strike-through-black::before {
        content: '';
        border-bottom: 1px solid black;
        width: 100%;
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: skewY(-10deg);
        transform: skewY(-10deg);
    }
