.news-item{display: block;background-repeat:no-repeat;background-size:contain;margin:0 10px 10px;padding: 30px;text-align: right;color:inherit;text-decoration:none;box-shadow:0 0 0 1px rgba(0,0,0,.1);-webkit-transition:all 0.1s ease-in-out 0s;-moz-transition:all 0.1s ease-in-out 0s;-o-transition:all 0.1s ease-in-out 0s;transition:all 0.1s ease-in-out 0s;}
.news-item:hover{box-shadow:0 0 0 1px rgba(0,0,0,.15),0 2px 16px 0 rgba(0,0,0,.15)}
.news-item .accent{font-size: 75px;line-height:1em;font-weight:bold;color:#670538;}
.news-item .accent_underline{display: block;font-size: 16px;}
.news-item div{font-size: 1.75em;line-height:1em;}
.news-item div>span>span{font-size:0.5em;margin-left:0.25em}
.news-item .old_price{text-decoration:line-through;color:#ccc}
.news-item .new_price{font-weight:bold;color:#b48b50}
.news-item .preview{display: block;text-transform:uppercase;font-size: 20px;text-shadow: 0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff;}
@media screen and (max-width:1360px){
    .news-item{padding: 0;width: 640px;height: 246px;}
    .news-item span{display:none!important}
}
@media screen and (max-width:1060px){
    .news-item{padding: 0;width: 500px;height: 192px;}
}
@media screen and (max-width:1045px){
    .news-item{display: table;background-position: 50% 50%;padding: 0;width: 100%;max-width: 500px;max-height: 246px;margin: 0 auto 40px;box-shadow: none;}
}

.sale-list {
	display: flex;
	flex-wrap: wrap;
}

.sale-list * {
    margin: 0;
    padding: 0;
    text-decoration: none;
	box-sizing: border-box;
}

.sale-list .sale-item {
	display: flex;
	width: 100%;
	margin: 0 10px 10px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.1);
    -webkit-transition: all 0.1s ease-in-out 0s;
    -moz-transition: all 0.1s ease-in-out 0s;
    -o-transition: all 0.1s ease-in-out 0s;
    transition: all 0.1s ease-in-out 0s;
}

.sale-list .sale-item:hover {
	box-shadow: 0 0 0 1px rgba(0,0,0,.15),0 2px 16px 0 rgba(0,0,0,.15);
}

.sale-list .sale-item .item-img {
	display: flex;
	flex-basis: 60%;
}

.sale-list .sale-item .item-img img {
	width: 100%;
	object-fit: contain;
}

.sale-list .sale-item .item-desc {
	flex-basis: 40%;
	padding: 15px 30px;
	text-align: right;
	align-self: center;
}

.sale-list .sale-item .item-desc .item-percent {
	font-size: 75px;
    line-height: 1em;
    font-weight: bold;
    color: #670538;
}

.sale-list .sale-item .item-desc .item-date,
.sale-list .sale-item .item-desc .item-address {
	display: block;
    font-size: 16px;
    color: #000;
}

.sale-list .sale-item .item-desc .item-name {
	display: block;
    color: #000;
    text-transform: uppercase;
    font-size: 20px;
    text-shadow: 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff;
}

@media screen and (max-width:1045px) {
	.sale-list .sale-item .item-img {
		flex-basis: 100%;
	}

	.sale-list .sale-item .item-img img {
		margin: 0 !important;
	}

    .sale-list .sale-item .item-desc {
    	display: none;
    }
}