.category-wrapper {
    display: flex;
    margin-top: 0;
}

.category-wrapper .newsletter {
    width: 260px;
}

.category-wrapper .sidebar-toggle {
    display: none;
    position: fixed;
    left: 5px;
    z-index: 100000;
    border: none;
    background-color: #FECA57;
    color: white;
    top: 60%;
    font-size: 2rem;
    border-radius: 0 5px 5px 0;
    outline: none;
    transition: left .3s ease-in-out;
}

@media screen and (max-width: 769px) {
    .category-wrapper .sidebar {
        /*overflow-x: hidden;*/
        position: fixed;
        z-index: 3;
        background-color: white;
        top: 0;
        left: -300px;
        height: 100vh;
        border-right: #FECA57 7px solid;
        max-width: 306px;
        transition: left .3s ease-in-out;
    }

    .category-wrapper .sidebar-content-wrapper {
        overflow-y: auto;
        overflow-x: hidden;
        max-height: 100vh;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .category-wrapper .sidebar:not(.is-active)::-webkit-scrollbar {
        display: none;
    }

    .category-wrapper .sidebar.is-active {
        left: 0;
    }

    .category-wrapper .sidebar.is-active .sidebar-toggle {
        left: 305px;
    }

    .category-wrapper .filters-wrapper {
        /*margin: 0!important;*/
        border: none!important;
    }

    .newsletter {
        display: none;
    }

    a.fb-like-btn {
        display: none;
    }

    .category-wrapper .sidebar-toggle {
        display: block;
    }
    
    .category-wrapper .filters-wrapper {
        width: 300px !important;
        margin-right: 0px !important;
        overflow-y: auto;
        height: 100vh;
    }
}

.category-wrapper .filters-wrapper {
    width: 285px;
    padding: 2rem 1rem;
    margin-right: 15px;
    border: 1px solid #dddddd;
    border-radius: 3px;
}

.category-wrapper .filters-wrapper .collapsible .collapsible-title {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-wrapper .filters-wrapper .collapsible .collapsible-title span {
    font-weight: 600;
    font-size: 14px;
    background-color: white;
    padding-right: 1rem;
}

.category-wrapper .filters-wrapper .collapsible .collapsible-title:after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #dddddd;
    position: absolute;
    top: 0.75rem;
}

.category-wrapper .filters-wrapper .collapsible .collapsible-content {
    padding: 1rem 0;
    max-height: calc(31px * 15);
    overflow-y: auto;
    margin-bottom: 1rem;
}
.category-wrapper .filters-wrapper .collapsible .collapsible-content.is-price {
    overflow-y: unset;
}

.price-input-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    color: #5f5f5f;
}

.price-input-wrapper input {
    width: 100px;
    border-radius: 17px;
    border: 1px solid #dddddd;
    box-shadow: none;
    padding: 0 .5rem;
    text-align: center;
}

.price-input-wrapper input:focus {
    outline: none;
    border-color: #bcbcbc;
}

.category-wrapper .filters-wrapper .collapsible .form-check {
    padding: 0;
    margin-bottom: .5rem;
}


.category-wrapper .products-wrapper {
    flex: 1;
    position: relative;
}

#ajax-loader {
    cursor: wait;
    z-index: 100;
    margin: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 100%;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
