/* item product */
.item-product {
    position: relative;
    background-color: #fff;
    margin-bottom: 24px;
}

.item-product .tag-prod {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 3px 15px;
    color: #fff;
    font-size: 13px;
    z-index: 1;
}

.tag-prod.book {
    background-color: #F5DC05;
}

.tag-prod.new {
    background-color: #f92525;
}

.tag-prod.success {
    background-color: #27ae60;
}

.tag-prod.warning {
    background-color: #f2994a;
}

.tag-prod.bought {
    background-color: #5191FA;
}

.item-product .img-prod {
    padding-bottom: 56.4%;
}

.item-product .info-prod {
    display: block;
    border: 1px solid #ECECEC;
    border-top: 0;
    padding: 15px 20px;
    background-color: #fff;
}

.item-product .title-prod {
    display: block;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
}

.item-product .price-prod {
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
    color: #fff;
    background-color: #FFB400;
    width: max-content;
    border-radius: 5px;
    padding: 4px 15px;
}

.item-product .price-buy {
    display: inline-block;
    position: relative;
    margin-right: 24px;
    text-transform: uppercase;
}

.item-product .price-buy:before {
    position: absolute;
    content: "";
    top: 50%;
    right: -14px;
    height: 14px;
    width: 1px;
    background-color: #fff;
    transform: translateY(-50%);
}

.item-product .prepay-prod {
    position: relative;
    font-size: 16px;
    font-weight: normal;
    display: inline-block;
}

.item-product .line {
    background-color: #ECECEC;
    margin-top: 15px;
    margin-bottom: 15px;
}

.item-product .list-property li {
    margin-bottom: 10px;
}

.item-product .list-property li i {
    width: 18px;
    text-align: center;
    margin-right: 5px;
}

@media (max-width: 767px) {
    .item-product .img-prod {
        margin-bottom: 0;
    }
    .item-product .price-prod {
        font-size: 18px;
    }
    
    .item-product .list-property {
        text-align-last: initial;
    }
    .item-product .list-property li {
        width: 49%;
    }
    .item-product .line {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}