component-product-card-i .padding-zero {
    padding: 0;
}
component-product-card-i .padding-bottom-20 {
    padding-bottom: 30px;
}
component-product-card-i a, component-product-card-i a:hover, component-product-card-i a:focus {
    text-decoration: none;
}
component-product-card-i .card-i {
    max-height: 600px;
    transition: all 0.3s;
}
component-product-card-i .card-i .img {
    margin: 0 auto;
    padding: 100% 0 0;
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: scale(1);
    transition: all 0.2s linear;
    background-color: #fefefe;
}
component-product-card-i .card-i:hover .img {
    transform: scale(1.05);
}
component-product-card-i .card-i .info {
    text-align: center;
}
component-product-card-i .card-i .info h1.-title {
    height: 45px;
    color: black;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
component-product-card-i .card-i .info .compare-price {
    margin: 5px 0;
    text-align: center;
    width: 100%;
    font-weight: lighter;
    color: #9e9b9b;
}
component-product-card-i .card-i .info .compare-price .product-compare-price {
    font-size: 14px;
    color: #9e9b9b;
    font-weight: lighter;
    text-decoration: line-through;
}
component-product-card-i .card-i .info .compare-price .currency {
    font-size: 9px;
}
component-product-card-i .card-i .info .-price {
    margin: 5px 0;
    text-align: center;
    width: 100%;
    font-size: 16px;
    font-weight: lighter;
    color: red;
}
component-product-card-i .card-i .info .compare-price .product-price {
    width: 100%;
    font-size: 16px;
    font-weight: lighter;
}
component-product-card-i .card-i .info .-price .currency {
    font-size: 10px;
}
component-product-card-i .card-i .info .border-top-black-double {
    border-top-width: 1px;
    border-top-color: black;
    border-top-style: double;
}
@media (max-width: 768px) {
    component-product-card-i .card-i {
        height: 600px;
    }
    component-product-card-i .card-i .img {
        margin: 20px;
        height: 300px;
    }
}