.main {
    background-color: #EDEDED;
}

.catalog-main__item {
    background-color: #FFFFFF;
	padding: 10px 0;
	border-radius: 16px;
	overflow: hidden;
}
.favorite-button-outline {
    background: #fff !important;
    color: #e30611 !important;
	border-radius: 9999px;
	border: 1.5px solid #e30611;
}
.favorite-button-filled {
    background: #e30611 !important;
    color: #fff;
	border-radius: 9999px;
	border: 1.5px solid #e30611;
}
.favorite-button-outline:hover {
    color: #e30611;
    border-color: #c0050f;
}
.favorite-button-filled:hover {
    background: #c0050f;
    border-color: #c0050f;
    color: #fff;
}
.catalog-main__buy{    
    display: flex;
    align-items:center;
    flex-wrap: nowrap;
    padding: 0 15px;
}

.favorite_list .catalog-main__image{
    min-height: 512px;
}

.catalog-main__buy button{
    border: 0;
    outline: none!important;
    padding: 0;
    width: 100%;
    max-width: 155px;
    background: #D71B19;
    font-size: 18px;
    line-height: 39px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-right: 15px;    
}

.catalog-main__buy button:hover{
    opacity: .75;
} 


.catalog-main__buy a{        
    width: 100%;
    max-width: 155px;
    background: #EDEDED;
    font-size: 18px;
    line-height: 39px;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    margin-left: 15px;
    text-decoration: none!important;    
}

.catalog-main__buy a:hover{
    opacity: .75;
    color: #000;
} 

.product-item_wish.favor{
    margin: 0 auto 27px;
    /* margin: auto; */
    position: relative;    
    width: 25px;
    height: 25px;
    cursor: pointer;    
}

.catalog-main__buy a.item_link_detail {
    background-color: #d71b19;
    color: #FFFFFF;
}

.product-item_wish.favor:after, .product-item_wish.favor:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 20px;
    background: #ADADAD;
    border-radius: 0.3px;
    content: '';
    transition: 300ms background-color ease;
}

.product-item_wish.favor:before {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.product-item_wish.favor:after {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.product-item_wish.favor:hover:after, .product-item_wish.favor:hover:before{
    background-color: #7e000f;
}