@media all {
	.catalog-card .swiper .swiper-slide { cursor: pointer; }
	.catalog-card .swiper-slide img {    
		width: 100%;
		height: 100%;
		object-fit: cover; 
		aspect-ratio: 284 / 188;
	}
    .label--special-offer {    
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.catalog-card .catalog-card__price .month-period {font-size: 16px;line-height: 1}
	.catalog-card__price-square {
		margin-top: -20px;
		z-index: 2;
		position: relative;
		width: calc(100% - 5px); 
		margin: -20px auto 20px; 
		display: flex; 
		padding: 9px 11px; 
		background: #F2FAFF;
		border-radius: 8px;
		justify-content: space-between;
	}
	.catalog-card__price-square a {text-decoration: none; text-align: center;}
	.catalog-card__price-square .catalog-card__property {flex-direction: column; align-items: center;}
	.catalog-card__price-square .catalog-card__property-value {font-weight: 700; font-size: 16px;color: #027FEC; line-height: 1}
	.catalog-card__price-square .catalog-card__property-name {color: #A7A7A7; font-size: 14px; text-transform: lowercase; line-height: 1.1}
	
	body [data-currency-icon][data-currency=RUB][data-icon-position=after]:after {
		 content: ' руб';
		 font-weight: 700;
	}
	.catalog-card {
		box-shadow:none;
		position: relative;
		border-radius: 16px;
		padding: 20px;
		background: #fff;

	}
	.catalog-card__favorite-link {
		position: absolute;
		top: 28px;
		right: 28px;
	}
	.catalog-card__compare-link {
		position: absolute;
		top: 28px;
		right: 56px;
	}
	.catalog-card__image-w {
		position: relative;
	}
	.catalog-card__favorite-link.added .icon-favorites:before {filter: brightness(0) invert(1);}
	.catalog-card__image {
		border-radius: 8px;
		height: 188px;
		display: block;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
	.catalog-card__body {
		padding: 0px;
		/*position: absolute;*/
		bottom: 0;
		background-color: #fff;
		width: 100%;
		z-index: 3;
	}
	
	.catalog-card__name.h3 {
		display: block;
		line-height: 1.3;
		font-size: 16px;
		color: #383838;
		font-weight: 700;
		text-decoration: none;
		margin-bottom: 12px;
		text-decoration: none;
		text-transform: none;
        transition: .2s ease-out;
	}
	.catalog-card:hover .catalog-card__name.h3 {
			text-decoration: underline;
			max-height: 1000px;
            transition: .2s ease-in;
	}
    .catalog-card__address {
        transition: .2s ease-in-out;
    }
        .catalog-card:hover .catalog-card__address {
            min-height: 0 !important;
        }
	.catalog-card__address .map-link {
		text-decoration: none;
		display: inline-block;
		max-width: 100%;
		font-size: 13px;
		line-height: 1.4;
        max-height: 36px;
		overflow: hidden;
		padding-left: 15px;
        transition: .2s ease-out;
	}
        .catalog-card:hover .catalog-card__address .map-link {
            max-height: 1000px !important;
            transition: .2s ease-in;
        }
    .catalog-card__address .map-link__icon {
        position: absolute;
        margin-top: 2px;
        margin-left: -15px;
    }
	.catalog-card__hidden-content {
		max-height: 0;
        overflow: hidden;
        transition: .2s ease-out;
	}
    .catalog-card:hover .catalog-card__hidden-content {
        padding: 10px 0 0;
        max-height: 20em;
        transition: .2s ease-in;
    }
	.catalog-card__date {
		font-size: 13px;
		color: #888888;
	}
	.catalog-card__properties {
		font-size: 14px;
		color: #383838;
		margin: 1px 0 1px;
	}
	.catalog-card__property {
		display: flex;
	}
	.catalog-card__property + .catalog-card__property {
		margin-top: 11px;
	}
	.catalog-card__property-name {
		margin-right: 3px;
	}
	
	.catalog-card__footer {
		gap: 8px;
        max-height: 59px;
		padding: 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
		text-decoration: none;	
		font-size: 23px;
		margin-top: 17px;
	}
	.catalog-card:hover .catalog-card__footer-icon  {
		color: var(--primary-color);
	}
	.catalog-card__price {
		display: block;
        font-weight: 700;
        max-width: 100%;
		text-overflow: ellipsis;
        overflow: hidden;
	}
	
	.catalog-card .catalog-item-price__period, 
	.catalog-card span.catalog-item-price__period {font-weight: 700;}
	.catalog-card__favorite-link, .catalog-card__compare-link {
		text-decoration: none;
		font-size: 13px;
		font-weight: 700;
		text-transform: uppercase;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.catalog-card__favorite-icon {
		margin-right: 0;
		font-size: 18px;
	}
	.catalog-card__favorite-label {

	}
	.catalog-card__footer-icon {
        margin-left: 5px;
		font-size: 34px;
		color: #ccc;
	}

}
@media (max-width: 560px) {
	.catalog-card__name.h3 {
		text-align: left;
	}
}
.catalog-card__property.is-block {background-color: #ff8400; padding: 4px; }
.catalog-card__property.is-block .catalog-card__property-value, .catalog-card__property.is-block .catalog-card__property-name {color: #fff;}

