/* ================================================================
Products
================================================================ */
.products ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}
.products ul li:not(:last-of-type) {
    margin-bottom: 0.5rem;
}
.products ul li a {
    color: #010412;
}
.products ul li a:hover,
.products ul li a.active {
    color: #00817c;
}
.products .collapse-toggle {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.products .collapse-toggle::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f107";
    transition: ease 0.15s;
}
.products .collapse-toggle.collapsed::after {
    transform: rotate(-90deg);
}
/* ================================================================
Product View
================================================================ */
.product-view .nav-pills .nav-link {
    padding: 0 !important;
    color: #000 !important;
}
.product-view .nav-pills .nav-link {
    margin-right: 1.5rem;
    line-height: 1;
    padding: 0 0 1rem 0 !important;
}
.product-view .nav-pills .nav-link.active,
.product-view .nav-pills .show>.nav-link {
    color: #00817c !important;
    background-color: transparent !important;
    position: relative;
}
.product-view .nav-pills .nav-link.active::after,
.product-view .nav-pills .show>.nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #00817c;
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
}
.product-view .table th,
.product-view .table td {
    padding: 0.5rem !important;
}
/* Chrome, Safari, Edge, Opera */
.product-view input.incdec::-webkit-outer-spin-button,
.product-view input.incdec::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
.product-view input.incdec[type=number] {
    -moz-appearance: textfield;
}
/* ================================================================
Products Filter
================================================================ */
.products .filter {
    position: sticky;
    position: -webkit-sticky;
    top: calc(109px + 1.5rem);
}
.filter-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s cubic-bezier(0.87, 0, 0.13, 1);
    z-index: 1019;
}
.filter-overlay.active {
    visibility: visible;
    opacity: 1;
}
@media (max-width: 992px) {
    .products .filter {
        border: none !important;
        border-radius: 0.25rem !important;
        position: fixed;
        top: 0;
        bottom: 0;
        right: -35vw;
        width: 35vw;
        background-color: #fff;
        z-index: 1020;
        transition: 0.3s cubic-bezier(0.87, 0, 0.13, 1);
    }
    .products .filter.active {
        right: 0;
        overflow-x: hidden;
        overflow-y: auto;
    }
}
@media (max-width: 768px) {
    .products .filter {
        right: -50vw;
        width: 50vw;
    }
}
@media (max-width: 576px) {
    .products .filter {
        right: -80vw;
        width: 80vw;
    }
}