@media print {
    #us_menu_mobile_box,
    .oct-fixed-bar, .header-top, .menu-row, .breadcrumb, .no-print, .noprint,
    nav, header, footer, script, style {
        display: none !important;
    }

    body *:not(.printable) {
        display: none;
    }
}

.categories-wall {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 2em;
}

.categories-wall-list {
}

.categories-wall-list-item {
    background-color: #FFF;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.categories-wall-list-item-link {
    display: block;
    padding: 15px 18px;
    color: initial;
    /*transition:*/
    /*    color .2s,*/
    /*    background-color .2s;*/
}

.categories-wall-list-item-link:hover {
    color: #FFFFFF;
    background: #306cb6;
}

.categories-wall-grid {
    max-width: 60%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1em;
}

.categories-wall-grid-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    background-color: #FFF;
    padding: 7px 10px;
    text-align: center;
    color: initial;
    transition:
        color .2s,
        background-color .2s,
        box-shadow .2s;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.categories-wall-grid-item img {
    width: 100px;
    height: 100px;
}

.categories-wall-grid-item a:hover {
    color: #306cb6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.us-module-reviews .reviews-count {
    position: relative;
    bottom: 2px;
    color: #888;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

span.us-category-attr-item {
    display: flex;
    justify-content: space-between;
}

.share-btn:hover {
    position: relative;
}

.share-dropdown {
    display: none;
    position: absolute;
    background: white;
    top: 60px;
    left: 0;
    width: max-content;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.share-dropdown li {
    color: initial;
    text-align: left;
    font-size: 12px;
    display: grid;
    grid-template-columns: 2em 1fr;
    gap: 1em;
    place-items: center left;
    padding: 7px 10px;
    box-shadow: none;
    transition:
            color .2s,
            background-color .2s,
            box-shadow .2s;
}

.share-dropdown li:hover {
    color: #fc5856;
    background: rgba(252,88,86,.08);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.share-dropdown li i {
    font-size: 1.2em;
    justify-self: center;
    align-self: center;
}

.share-btn.active .share-dropdown,
.share-btn:hover .share-dropdown {
    display: block;
}

.us-news-block-text {
    margin-top: auto;
    max-height: 100px;
    overflow-y: hidden;
    /*text-overflow: ellipsis;*/
    /*-webkit-line-clamp: 5;*/
    /*-moz-line-clamp: 5;*/
    /*-ms-line-clamp: 5;*/
    /*line-clamp: 5;*/
    /*max-lines: 5;*/
}

.product-tab {
    border-top: 1px solid #F6F6F6;
    display: none;
    font-size: 16px;
    line-height: 28px;
}

.product-tab.active {
    display: block;
}