.hibnet-greybox-categories {
    background: rgba(237, 244, 239, 0.5019607843);
    color: #000;
    margin-bottom: 15px;
    padding: 5px 0 15px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hibnet-greybox-categories .hibnet-greybox-category {
    height: auto;
    width: calc(15% + 5px);
    text-align: center;
    background: #fff;
    position: relative;
}
.hibnet-greybox-categories .hibnet-greybox-category span {
    display: block;
    font-size: 0.8rem;
    color: #4B8266;
    font-weight: 700;
    display: flex;
    align-items: center;
    background: #fff;
    justify-content: center;
    width: 90%;
    padding:5px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto 15px auto;
    border: 1px solid #4B8266;
    transition: all 0.5s;
}
.hibnet-greybox-categories .hibnet-greybox-category-active span {
    color: #fff;
    background: #4B8266;
}
.hibnet-greybox-categories .hibnet-greybox-category:hover span {
    background: #4B8266;
    color: #fff;
}

@media (max-width: 992px) {
    .hibnet-greybox-categories {
        overflow: auto;
        height: 150px;
        flex-direction: column;
    }
    .hibnet-greybox-categories .hibnet-greybox-category {
        width: 110px;
    }
    .hibnet-greybox-categories .hibnet-greybox-category span {
        padding: 5px;
    }
}