.home__price {
    background-color: #005aaa;
    color:#fff;
}
.home__price span {
    font-size: 28px;
}
.home__price span.oldprice {
   /* text-decoration:line-through; 
    text-decoration-color:red;*/
    font-size:22px; 
    font-weight:normal;
    position: relative;
}
.home__price span.oldprice:after {
    content:"";
	display:block;
	position:absolute;
	left:0;top:50%;
	color:red;
	width:100%;
	height:0;
	border-bottom:2px solid red;
	transform:rotate(-10deg);
}
.home__price .specprice {
    font-size:28px; 
    font-weight:bold;
}

@media screen and (max-width: 550px) {
    .home__price .specprice {
        font-size:23px; 
    }
    .home__price span.oldprice {
        font-size:18px; 
    }
}
@media screen and (max-width: 450px) {
    .home__price .specprice {
        font-size:18px; 
    }
    .home__price span.oldprice {
        font-size:12px; 
    }
}

.home__title {
    font-size:33px;
}
.characteristics__item {
    margin-bottom: 1.25rem
}