#shop-sidebar-toggle {
	display: none;
}

@media screen and (max-width: 961px) {
    #genesis-sidebar-primary {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100%;
		padding: 2em;
        background: var(--seashell);
		border-left: 5px solid var(--rust);
        box-shadow: -2px 0 5px rgba(0,0,0,0.2);
        transition: right 0.3s ease;
        z-index: 10001;
        overflow-y: auto;
        touch-action: pan-y;
    }

    #genesis-sidebar-primary.active {
        right: 0;
    }

    #shop-sidebar-toggle {
		display: block;
        position: fixed;
        top: 6em;
        right: 1em;
        z-index: 8001;
        background: #333;
        color: #fff;
        padding: 0.5rem 1rem!important;
        border: none;
        cursor: pointer;
		border: 5px solid var(--rust) !important;
    }

    #shop-sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 20%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 8000;
    }

    #shop-sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    body.sidebar-open {
        overflow: hidden;
    }
	
	.wpc-filters-ul-list.wpc-filters-checkboxes {
		border-bottom: 5px solid var(--desert-sand)!important;
	}
}