/* === PRODUCTS-GRID === */
.products-grid {
}

.products-grid__brand {
    display: inline-flex;
    margin: 2.5rem 0;
}

.products-grid__brand_first {
    margin-top: 0;
}

.products-grid__brand h2 {
    font-size: 1.75rem;
    line-height: 1.75rem;
    display: block;
    margin: 0;
    padding-bottom: 0.5rem;
    text-decoration: none;
    border-bottom: 1px solid;
}

.products-grid .pagination {
    margin-top: 2.5rem;
    margin-bottom: 0;
}

.products-grid__item {
    flex: 0 0 25%;
    width: 25%;
    margin-bottom: 1.5rem;
    padding-right: 12px;
    padding-left: 12px;
}


/* === product-item === */
.product-item {
    outline: none;
}

.product-item__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    /*padding: 10px;*/
    text-align: center;
    text-decoration: none !important;
    color: #0B0B10;
    border: 1px solid #CBCBCB;
    background: #FFFFFF;
    box-shadow: 0 0 3px #CBCBCB;
    transition: .2s ease-in-out;
}

.product-item__wrap:hover,
.product-item__wrap:active {
    box-sizing: border-box;
    color: black;
    box-shadow: 0 0 8px #E1BF8C;
}

.product-item__img {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}

.product-item__type {
    font-size: 15px;
    line-height: normal;
}

.product-item__title {
    font-family: FuturaMediumC, sans-serif;
    font-size: 18px;
    overflow: hidden;
    height: 52px;
    margin-bottom: 0.5rem;
}

.product-item__sku {
    font-size: 14px;
    color: #000000b8;
}

.product-item__sku span {

}

.product-item__brand {
    margin-bottom: 0.5rem;
    color: #999;
}

.product-item__details {
    margin-top: auto;
    margin-bottom: 0.5rem;
}

.product-item__cost {
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-item__price.price_mod {
    margin-top: 4px;
}

.product-item__price {
    margin-bottom: 8px;
}
.product-item__price,
.product-item__price-old {
    /*position: relative;*/
}

.product-item__percent::before {
    width: 14px;
    height: 14px;
    margin-right: 2px;
    content: url("../../images/icon/fire.svg");
}

.product-item__percent {
    font-family: FuturaMediumC, sans-serif;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    line-height: 0;
    position: absolute;
    top: 1.5%;
    left: 3.5%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 54px;
    height: 26px;
    color: red;
    border: 1px solid red;
    border-radius: 3px;
    background: white;
}

.product-item__note {
    font-size: 0.9rem;
    line-height: 0.7rem;
    display: flex;
    justify-content: center;
    margin-top: auto;
    /*color: #f5ad2a;*/
    color: #999;
    margin-bottom: 5px;
}

.product-item__note_add {
    color: #2700ff;
}


@media (min-width: 1399.98px) {
}

@media (min-width: 1199.98px) {
}

@media (max-width: 991.98px) {
    .products-grid__item {
        flex: 0 0 33.33333%;
        width: 33.33333%;
        margin-top: 8px;
        padding-right: 10px;
        padding-left: 10px;
    }

    /*.product-item__wrap {*/
    /*    padding: 12px;*/
    /*}*/
}

@media (max-width: 767.98px) {
    .products-grid__item {
        flex: 0 0 50%;
        width: 50%;
    }

    /*.product-item__wrap {*/
    /*    padding: 8px;*/
    /*}*/
}

@media (max-width: 575.98px) {
    .products-grid__item {
        padding-right: 8px;
        padding-left: 8px;
    }

    .product-item__title {
        font-size: 16px;
        line-height: normal;
    }


    .product-item__details {
        display: none;
    }
}

@media (max-width: 360.98px) {
    .products-grid__item {
        flex: 0 0 100%;
        width: 100%;
    }
}