.wrapper-breadcrums {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.wrapper-breadcrums .breadcrumbs {
    min-height: 40px;
}

.wrapper-breadcrums .breadcrumbs ul.breadcrumbs-items {
    padding: 9px 0;
    list-style: none;
    margin: 0;
}

.wrapper-breadcrums .breadcrumbs ul.breadcrumbs-items>li {
    display: inline-block;
    position: relative;
    font-size: 14px;
}

.wrapper-breadcrums .breadcrumbs ul.breadcrumbs-items svg {
    fill: #111;
    width: 17px;
    height: 17px;
}

.wrapper-breadcrums .breadcrumbs ul.breadcrumbs-items>li:before {
    content: "/";
    margin: 0 5px;
    position: relative;
    top: 0;
}

.wrapper-breadcrums .breadcrumbs ul.breadcrumbs-items>li:first-child:before {
    display: none;
}

.product-category-main {
    width: 100%;
    padding-bottom: 30px;
    background-color: #f8fafc;
}

.mobile-query-bar {
    display: none;
}

@media screen and (max-width: 993px) {
    .product-category-main .price-filters-container {
        width: 290px;
        display: block;
        position: fixed;
        left: -400px;
        top: 0px;
        height: 100vh;
        overflow: auto;
        background: #fff;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        z-index: 99999;
        border-top: 1px solid #eee;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .price-filters-open .product-category-main .price-filters-container {
        left: 0;
        padding-left: 0;
    }

    .mobile-query-bar {
        display: block;
        float: none !important;
    }

    .mobile-query-bar .label {
        width: 50%;
        float: left;
        padding: 10px;
        background: #fff;
        border-bottom: 1px solid #ccc;
        border-top: 1px solid #ccc;
        border-right: 1px solid #ccc;
        text-align: center;
        font-weight: 500;
        font-size: 16px;
        cursor: pointer;
    }

    .mobile-query-bar .label:hover {
        background: var(--bs-body-color)1a;
    }

    .mobile-query-bar .label:last-child {
        border-right: none;
    }
}

.breadcrumbs-child {
    width: 100%;
}

.breadcrumbs-child .breadcrumbs {
    padding: 10px 0;
    width: 100%;
    margin: 0 0 15px;
}

.breadcrumbs-child .breadcrumbs a {
    display: inline-block;
    line-height: 34px;
    padding: 0 14px;
    color: #111;
    border: 1px solid #ddd;
    border-radius: 30px;
    margin: 0 5px 5px 0;
    font-size: 13px;
    background: #fff;
}

.breadcrumbs-child .breadcrumbs a:hover {
    background: var(--bs-body-color);
    border: 1px solid var(--bs-body-color);
    color: #fff;
    text-decoration: none;
}

.filter-box {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 1px #0000001a;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    clear: both;
    padding: 0;
    margin-top: 10px;
}

.filter-box .label {
    padding: 0 0 0 20px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    position: relative;
}

.filter-box .label span {
    height: 50px;
    width: 50px;
    float: right;
    position: absolute;
    display: flex;
    right: 0;
    top: 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    align-items: center;
    justify-content: center;
}

.filter-box .label:hover span {
    color: #01b9da;
}

.filter-box.hide .label span {
    transform: rotate(180deg);
}

.filter-box .items {
    padding: 10px 20px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.filter-box.hide .items {
    display: none;
}

.filter-box .items label.filter {
    display: flex;
    align-items: center;
    padding: 6px;
    margin: 0 -6px;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
}

.filter-box .items label.filter:hover {
    background: #f2f4f8;
}

.filter-box .items label.filter input {
    border: 1px solid #ececec;
    border-radius: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 20px;
    font-size: 16px;
    width: 100%;
    margin-right: 10px;
    height: 16px;
    width: 16px;
    position: relative;
    top: 2px px;
    float: left;
}

.price-slider-wrapper {
    position: relative;
    padding: 15px 0;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    background: #fff;
    border: 2px solid var(--bs-body-color);
    box-shadow: 0 0 0 4px #fff inset, 0 0 0 9px var(--bs-body-color) inset, 0 0 0 2px #fff;
    z-index: 9999;
}



input[type=range]::-webkit-slider-thumb:hover {
    background: var(--bs-body-color);
}

input[type=range]::-webkit-slider-thumb:active {
    background: #fff;
    box-shadow: 0 0 0 4px var(--bs-body-color) inset, 0 0 0 9px var(--bs-body-color) inset, 0 0 0 2px #fff;
    -webkit-box-shadow: 0 0 0 4px var(--bs-body-color) inset, 0 0 0 9px var(--bs-body-color) inset, 0 0 0 2px #fff;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    width: 100%;
    position: absolute;
    background-color: #eee;
    pointer-events: none;
}

#fromSlider {
    height: 0;
    top: 18px;
    z-index: 1;
}

.price-level-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
}

.price-level-wrapper .price-slider-label {
    max-width: 50%;
    display: flex;
    justify-content: baseline;
}

.price-level-wrapper .price-slider-label.to {

    justify-content: end;
}

.price-level-wrapper .price-slider-label input {
    max-width: 70px;
    border: 1px solid #898989;
    width: 80px;
    height: 30px;
    margin: 5px 0 0 -1px;
    outline: 0;
    padding: 6px 0;
    border-radius: 0;
    font-size: 13px;
    text-align: center;
}

.category-top-bar {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 1px #0000001a;
    padding: 10px 10px 10px 20px;
    margin: 10px 0;
}

.category-top-bar .form-group {
    display: inline-block;
    padding-left: 10px;
    margin-bottom: 0;
}

.category-top-bar .form-group label {
    font-size: 13px;
    display: inline-block;
    line-height: 20px;
    margin-bottom: 5px;
    padding-right: 5px;
    color: #666;
}

.category-top-bar .form-group * {
    display: inline-block;
}

.category-top-bar .form-group select {
    background: #f1f3f5;
    padding: 5px;
    font-size: 13px;
    border: none;
    position: relative;
    outline: none;
    height: 32px;
    display: inline-flex;
    max-width: 120px;
    align-items: center;
    vertical-align: middle;
    min-width: 60px;
}

.category-top-bar .page-heading {
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
}

.product-info-main-bottom {
    padding: 20px 0 50px;
}

.description {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    margin-top: 0;
    border-radius: 4px;
    box-shadow: 0 1px 1px #0000001a;
}

.description .section-head {
    padding-bottom: 20px;
}

.description .full-description {
    line-height: 24px;
    text-align: justify;
}

.page-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

@media screen and (max-width: 993px) {
    .page-section {
        flex-direction: column;
    }
}

.page-section .pagination {
    display: flex;
}

.page-section .pagination .page-item {
    width: 25px;
    height: 25px;
    font-size: 14px;
    background-color: var(--bs-secondary-bg);
    margin: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
}