.group-product-block {
    padding-bottom: 20px;
}

.group-product-item {
    position: relative;
}

.group-product-item > a {
    display: block;
    border-radius: 4px;
    border: solid 2px rgba(0,0,0,0);
    width: 72px;
    height: 72px;
    background-color: #fff;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.group-product-item:hover > a {
    border: solid 2px #f5f5f5;
}

.group-product-item.active > a {
    border: solid 2px #d3d4d5;
}

.group-product-item::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #000;
    width: 100%;
    height: 5px;
    opacity: 0;
    transition: 0.3s;
    z-index: 1;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

.group-product-item:hover::after, .group-product-item.active::after {
    opacity: 1;
}

.group-product-item > a img{
    padding: 4px;
    position: absolute;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.btn.offers-toggle-btn {
    margin-top: 20px;
    padding: 10px 0 4px;
    border-bottom: 1px solid #000;
    border-radius: 0;
    font-weight: 700;
    font-size: 14px;
    align-items: center;
    column-gap: 8px;
    cursor: pointer;
}

.btn.offers-toggle-btn:focus {
    border: none;
    box-shadow: none;
}

.btn.offers-toggle-btn svg {
    margin-right: 8px;
}

.group-product-block .group-product-item.extra {
    display: none;
}

.group-product-block.show-all .group-product-item.extra {
    display: block;
}

.group-product-block .list-show {
    display: initial;
}

.group-product-block .list-hide {
    display: none;
}

.group-product-block.show-all .list-show {
    display: none;
}

.group-product-block.show-all .list-hide {
    display: initial;
}