/* Content */
.storefront .nav-link  {
    opacity: .5;
}
.storefront .nav-link.active  {
    border: 0;
    color: var(--black);
    opacity: 1;
}

.nav-tabs {
    border: 0;
}

.choose-show-item {
    border: 0;
}

.product__image {
    width: 100%;
    height: 197px;
    object-fit: fill;
}

.product__title {
    font-weight: bold;
    text-align: center;
}

.product__title--card {
    display: -webkit-box;
    height: 63px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product__price {
    color: #f4a100;
    font-weight: bold;
    text-align: center;
}

/* Aside */
.list-group-item.category {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.125);
}

/* Content 2 */
.c2__container {
    margin-bottom: 2rem;
}

.c2__container a {
    text-decoration: none;
    color: black;
    line-height: 200%;
}

.c2__container a::after {
    content: " | ";
}

@media (hover: hover) and (pointer:fine) {

    .nav-tabs .nav-link:hover {
        color: var(--black);
        opacity: .8;
    }

}

@media only screen and (max-width: 767.92px) {

    .product__image {
        height: 150px;
        object-fit: cover;
    }

    .product__title--card {
        height: 36px;
        -webkit-line-clamp: 2;
        font-size: 0.875rem;
    }

    #grid .col:nth-child(odd) {
        padding-right: .5rem !important;
    }

    #grid .col:nth-child(even) {
        padding-left: .5rem !important;
    }

}

