.nav-fix{
    background-color: white !important;
    transition-duration: 1s;
}
.nav-link-fix{
    color: black !important;
    transition-duration: 0.2s;
}
.fix-logos{
    background: white !important;
}
.price-container{
    display: flex;
    justify-content: space-evenly;
    font-size: 2rem;
}
.current-price{
    font-weight: bold;
}
.old-price{
    position: relative;
}
.old-price:before{
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 5px solid;
    border-color: rgba(150, 0, 0, 0.6);
    
    -webkit-transform:rotate(-10deg);
    -moz-transform:rotate(-10deg);
    -ms-transform:rotate(-10deg);
    -o-transform:rotate(-10deg);
    transform:rotate(-10deg);
}