/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 26 2022 | 02:39:06 */
.shadow-sm, .shadow, .widget.woocommerce.widget_price_filter .price_slider.ui-slider.ui-slider-horizontal .ui-slider-handle.ui-state-default, .shadow-lg, .shadow-hover-sm, .shadow-hover, .shadow-hover-lg, .shadow-inverse-sm, .shadow-inverse, .shadow-inverse-lg {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.shadow-0 {
	box-shadow: none
}

.shadow-sm {
    box-shadow: 0 1px 5px 0 rgb(0 0 0 / 15%);
}

.shadow-hover-sm:hover {
	box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15) 
}

.shadow, .widget.woocommerce.widget_price_filter .price_slider.ui-slider.ui-slider-horizontal .ui-slider-handle.ui-state-default {
	box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.2rem rgba(0, 0, 0, 0.1) 
}

.shadow-hover:hover {
	box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.05), 0 0.625rem 1.5rem rgba(0, 0, 0, 0.15) 
}

.shadow-lg {
	box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.2rem rgba(0, 0, 0, 0.1) 
}

.shadow-hover-lg:hover {
	box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.1), 0 2rem 3rem rgba(0, 0, 0, 0.15) 
}

.shadow-inverse-lg {
    box-shadow: 0 8px 24px -5px rgba(0,0,0,0.15)!important;
}

.shadow-inverse-hover-sm:hover {
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15) 
}

.shadow-inverse {
	box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.05), 0 0.625rem 1.5rem rgba(0, 0, 0, 0.15) 
}

.shadow-inverse-hover:hover {
	box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.2rem rgba(0, 0, 0, 0.1) 
}

.shadow-inverse-hover-lg:hover {
	box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.2rem rgba(0, 0, 0, 0.1) 
}

.shadow-none {
	box-shadow: none 
}

.inner-shadow-b {
	box-shadow: inset 0px -73px 0px -41px red
}

