
section.catalog {
    padding-bottom: 100px;
}

@media (min-width: 992px) {
    .product-item:hover {
        overflow: visible;
    }

    .product-item:hover .product-item-block {
        position: absolute;
        background: #FFFFFF;
        border: 1px solid #E5E5E5;
        box-sizing: border-box;
        border-radius: 5px;
        z-index: 999;
        box-shadow: 0px 4px 20px rgb(0 0 0 / 25%);
        width: 100%;
    }

    div.product-item .product-info .discount-block,
    .offers-block,
    .count-block {
        display: none;
    }

    div.product-item:hover .product-info .discount-block {
        display: flex;
        justify-content: center;
    }
    div.product-item:hover .product-info .discount-block.discount-block-basket {
        display: none;
    }

    div.product-item:hover .product-info .offers-block,
    .count-block.count-block-basket
    {
        display: block;
    }

    .count-block {
        margin-top: 14px;
    }
}

.svg-open {
    display: none;
}

.goods-list__cnt {
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}
@media screen and (max-width: 991px){
    .goods-list__cnt{
        justify-content: flex-start;
    }
}

.goods-list__cnt .biqValue {
    display: flex;
    align-items: center;
}

.goods-list__cnt .biqValue input[type="text"] {
    border-color: transparent;
    text-align: center;
}

input[type="text"], input[type="password"] {
    background: #FFFFFF;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    border-radius: 3px;
    display: block;
    line-height: 34px;
    font-family: Roboto;
    font-size: 14px;
    padding: 0 10px;
}

.select {
    position: relative;
    display: block;
    /*min-width: 220px;*/
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.select__head {
    width: 100%;
    max-width: 100%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    /*border-radius: 10px;*/
    padding: 5px 5px;
    font-size: 12px;
    line-height: 18px;
    color: rgba(66, 67, 72, 0.8);
    cursor: pointer;
}

.select svg {
    position: absolute;
    left: 89.5%;
    right: 8.4%;
    top: 45%;
    bottom: 28.5%;
}

.select__head.open::after {
    transform: translateY(50%) rotate(180deg);
}

.select__list {
    display: none;
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-top: 5px;
    max-height: 270px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 100;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #424348;
    scrollbar-color: dark;
    scrollbar-width: thin;
    overscroll-behavior: contain;
    min-width: 330px;
}

.select__list::-webkit-scrollbar {
    width: 7px;
    background-color: #F8F9FA;
    padding: 5px;
}

.select__list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #D9D9D9;
}

.select__list .select__item {
    position: relative;
    border-top: 1px solid rgba(224, 229, 231, 0.5);
    padding: 10px 15px;
    cursor: pointer;
    list-style-type: none;
}

.select__list .select__item:hover {
    background-color: rgba(224, 229, 231, 0.5);
}

@media (max-width: 991px) {
    .offers-block,
    div.product-item .product-info .discount-block {
        display: flex;
        justify-content: center;
    }

    .count-block {
        display: none;
    }

    .select__list {
        max-height: 130px;
    }

    .select svg {
        left: 95.5%;
    }
    .category-products .product-item{
        height: 433px;
    }
}

@media (max-width: 640px) {
    .select {
        max-width: 100%;
    }
}

.btn.is-red-tr {
    border: 1px solid #DF0008;
    color: #FFFFFF;
    background: #DF0008;
}

.btn.is-red-tr:hover {
    background: white;
    color: #DF0008;
}
div.body-wrapper
{
    overflow: inherit;
}
.product-item{
    height: 372px;
}

.select__item-title{
    font-size: 14px;
}
.select__item-block{
    display: flex;
    justify-content: space-between;
    padding-top: 10px
}
.select__item-count{
    font-size: 12px;
    color: #4db45f;
}
.select__item-price{
    font-size:16px;
    font-weight: 600;
}

.tooltip-wrap {
    position: relative;
}

.tooltip-wrap:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.tooltip {
    position: absolute;
    top: calc(100% + 10px);
    left: 10px;
    background: #fff;
    padding: 14px;
    border-radius: 4px;
    box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    padding: 4px 24px;
    font-size: 12px;
    transition: 0.3s;
}

.tooltip::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 10px 5px;
    border-color: transparent transparent #ffffff transparent;
    display: block;
    position: absolute;
    top: -9px;
    left: 25px;
    transform: translateX(-50%);
}