.catalog-product {
    margin-bottom: 25px;
}

@media (max-width: 544px) {
    .catalog-product {
        margin-bottom: 10px;
    }
}

.catalog-details {
    padding-right: 80px;
    position: relative;
}

    .catalog-details .catalog-info {
        background-color: #dddddd;
    }

        .catalog-details .catalog-info .catalog-name {
            font-size: 14px;
            color: #fff;
            background-color: rgba(0, 0, 0, 0.8);
            text-align: center;
            padding: 8px 10px;
            margin: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .catalog-details .catalog-info .login-price {
            font-size: 14px;
            /*color: #000;*/
            color: #a30a12;
            font-weight: bold;
        }

    .catalog-details .catalog-items {
        background-color: #A30A12;
        width: 80px;
        color: #ffffff;
        font-size: 14px;
        padding-top: 20px;
        text-align: center;
        position: absolute;
        top: -10px;
        right: 0;
        bottom: 0;
    }

        .catalog-details .catalog-items:after {
            position: absolute;
            top: 0px;
            left: -10px;
            border-bottom: 10px solid #6F060C;
            border-left: 10px solid transparent;
            height: 0;
            width: 0;
            content: "";
        }

.tabs-btn {
    margin-bottom: 0;
}

    .tabs-btn li {
        color: #000;
        border: 1px solid #000;
        display: inline-block;
        padding: 6px 20px;
    }

/*# sourceMappingURL=product.css.map */


.catalog-img {
    position: relative;
    overflow: hidden;
}

    .catalog-img:hover .product-actions {
        top: 0;
    }

.product-actions {
    top: -100%;
    position: absolute;
    text-align: center;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    background: rgba(0, 0, 0, 0.8);
}

.old-price-list {
    text-decoration: line-through;
    color: #666;
    font-size: 13px;
}

