html {
	-webkit-font-smoothing: antialiased;
}
/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
	border: none;
	background: #fff;
	color: #a4aaac;
	-moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
}
/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 16px;
	padding: 8px 10px;
	overflow: hidden;
}
/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
}
/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
	cursor: help;
	margin-left: 4px;
}
/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
	padding: 0;
	font-size: 0;
	line-height: 0;
	position: absolute;
	z-index: 9999999;
	pointer-events: none;
	width: auto;
	overflow: visible;
}
.tooltipster-base .tooltipster-content {
	overflow: hidden;
}
/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
	display: block;
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
	display: block;
	width: 0; 
	height: 0;
	position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-top: 8px solid;
	bottom: -8px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-top: 9px solid;
	bottom: -8px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-bottom: 8px solid;
	top: -8px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-bottom: 9px solid;
	top: -8px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
	left: 0;
	right: 0;
	margin: 0 auto;
	position: absolute;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
	left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	left: 5px;
}
.tooltipster-arrow-top-right span,  .tooltipster-arrow-bottom-right span {
	right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
	right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-left: 8px solid;
	top: 50%;
	margin-top: -7px;
	right: -8px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-left: 9px solid;
	margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-right: 8px solid;
	top: 50%;
	margin-top: -7px;
	left: -8px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-right: 9px solid;
	margin-top: -8px;
}
/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */
.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade-show {
	opacity: 1 !important;
}
.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}
.tooltipster-swing-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
	top: 0;
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
}
.tooltipster-fall-show {
}
.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	top: 0px !important;
	opacity: 0;
}
.tooltipster-slide {
	left: -40px;
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	left: 0px !important;
	opacity: 0;
}
/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
	opacity: 0.5;
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}.wpfFilterWrapper label {
	margin: 0;
}
.wpfHidden{
	display: none!important;
}
.wpfClear{
	clear: both;
}
.wpfVisibilityHidden{
	visibility: hidden;
}
.wpfFilterWrapper {
	box-sizing: border-box;
}
.wpfFilterTitle {
	margin-bottom: 5px;
}
/*Price filter css*/
.wpfFilterWrapper .ui-slider-horizontal {
	height: .6em;
	margin-top: 5px;
	width:100%;
}
.wpfFilterWrapper .ui-slider-range {
	padding: 0 !important;
}
.wpfFilterWrapper .wpfPriceInputs {
	margin-top: 10px;
	text-align:center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.wpfFilterDelimeter {
	margin-left: 10px;
	margin-right: 10px;
}
.wpfFilterWrapper .wpfCurrencySymbol + div + input,
.wpfFilterWrapper input + .wpfCurrencySymbol{
	margin-left: 10px;
}
.wpfPriceInputs .wpfCurrencySymbol {
	margin-right: 3px;
}
.wpfFilterWrapper .ui-widget-header {
	background: #3FE331;
}
.wpfPriceRangeField#wpfMinPrice,
.wpfPriceRangeField#wpfMaxPrice {
	width: 35%;
	min-width: 16%;
	display: inline-block;
}
.wpfSearchResultsBlock{
	position: relative;
	display: block;
	clear: both;
}
.wpfFilterWrapper{
	padding: 5px;
	min-width: 150px;
	margin: 0 auto;
	margin-top: 12px;
	margin-bottom: 12px;
	width: 100%;
}
.wpfFilterWrapper[data-filter-type] {
	padding: 5px;
}
.wpfFilterWrapper[data-display-type="switch"],
.wpfFilterWrapper[data-display-type="switch"] + .wpfFilterWrapper{
	margin-top: 0;
}
.wpfPriceFilterRange{
	margin: 0 auto;
	margin-bottom: 15px;
	width: 100%;
}
.wpfFilterWrapper .wfpTitle{
	display: inline-block;
}
.wpfFilterWrapper .wfpDescription{
	padding-bottom: 5px;
}
.wpfCheckbox {
	vertical-align: middle;
	display: inline-block;
}
.wpfCheckbox input{
	cursor: pointer;
	display: block;
}
.wpfCheckboxHier ul{
	text-align: left;
	list-style: none;
}
.wpfCheckboxHier > ul{
	margin-left: 0px;
	margin-bottom: 0px;
}
.wpfValue {
	padding-left: 5px !important;
}
.wpfFilterWrapper[data-filter-type="wpfPriceRange"] .wpfValue {
	padding-left: 10px !important;
}
.wpfFilterTaxImgWrapper {
	display: inline-block;
	vertical-align: text-bottom;
}
.wpfFilterTaxNameWrapper {
	display: inline;
}
.rtl .wpfValue{
	padding-left: 0 !important;
	padding-right: 5px !important;
}
.wpfFilterButtons{
	clear: both;
}
.wpfFilterButtons .wpfButton{
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}
.wpfFilterButton.wpfButton, .wpfClearButton.wpfButton{
	width: 47%;
}
.wpfPreview{
	margin: 0 auto;
	width: 70px;
}
.wpfFilterVerScroll li {
	display:block;
	width:100%;
}
.wpfFilterVerScroll{
	overflow-y: auto;
}
.wpfFilterVerScroll li label {
	display: block;
	vertical-align: baseline;
}
.wpfFilterWrapper select{
	width: 100%;
	width: -moz-available;          /* WebKit-based browsers will ignore this. */
	width: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
	width: fill-available;
}
.woocommerce-ordering{
	display: none;
}
.wpfSearchWrapper{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.wpfSearchWrapper .wpfSearchFieldsFilter{
	width: 100%;
	margin: 5px 0px;
}
.wpfSlugWrapper{
	display: block;
	padding: 10px 0px;
	clear: both;
}
.wpfSlugTitle{
	display: inline-block;
}
.wpfSlugDelete{
	display: inline-block;
	cursor: pointer;
}
.wpfSlug{
	display: inline-block;
	padding: 5px 15px;
	margin: 5px;
	background-color: #eae1e1;
	border-radius: 33px;
}
.wpfSlugTitle{
	padding-right: 5px;
}
#wpfOverlay{
	position: fixed; /* Sit on top of the page content */
	display: none; /* Hidden by default */
	width: 100%; /* Full width (cover the whole page) */
	height: 100%; /* Full height (cover the whole page) */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5); /* Black background with opacity */
	z-index: 10000; /* Specify a stack order in case you're using a different order for other elements */
	cursor: pointer; /* Add a pointer on hover */
}
#wpfOverlayText{
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 50px;
	color: white;
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
}
#wpfOverlay .wpfPreview{
	display: inline-block;
	margin: 20px;
    vertical-align: middle;
}
.wpfFilterWrapper i, .wpfFilterWrapper svg {
	display: inline-block;
	float: right;
}
.wpfMainWrapper .wpfCount{
	font-size: smaller;
	padding-left: 9px;
}
.wpfMainWrapper .wpfBlockClear{
	display:none;
	cursor: pointer;
	font-size: smaller;
	text-decoration: underline;
}
.wpfPriceTooltipShowAsText {
	padding:0px !important;
	margin:0px !important;
	min-width:auto !important;
	font-size: inherit !important;
	color: inherit !important;
	background:transparent !important;
	border:none !important;
	box-shadow:none !important;
	text-align:center !important;
	outline:0 !important;
}
.wpfVisibleBufferMin, .wpfVisibleBufferMax{
	position: absolute;
	top: -1000px;
	left: -1000px;
	visibility: hidden;
	white-space: nowrap;
}
.rtl .wpfVisibleBufferMin, .rtl .wpfVisibleBufferMax{
    right: -1000px;
    left: 0;
}
.wpfTitleToggle {
	position:relative;
	display:inline-block;
	margin-right: 0;
	text-align: center;
	padding-top: 0px;
	cursor:pointer;
}
.wpfTitleToggle::before {
	display: inline-block;
	cursor:pointer;
}
.wpfColorsFilterHor .wpfColorsRow div {
	display:inline-block;
}
.ms-options ul {
	margin-left:0px;
}
.wpfFilterWrapper .ui-slider-horizontal {
	margin-top:20px !important;
}
.wpfFilterWrapper input[type=checkbox], .wpfFilterWrapper input[type=radio] {
    clear: none;
    cursor: pointer;
    display: inline-block;
    line-height: 0;
}
.wpfColorsFilter input {
	display:none !important;
}
.wpfFilterWrapper ul li::before {
  display:none !important;
}
.wpfFilterWrapper ul:not(.wpfButtonsFilter) li {
	width: auto !important;
}
.wpfFilterWrapper ul:not(.wpfButtonsFilter) li {
    padding-left: 0px !important;
    margin-left: 0px !important;
}
.rtl .wpfFilterWrapper ul:not(.wpfButtonsFilter) li {
  padding-right: 0px !important;
  padding-left: 10px !important;
  margin-right: 0px !important;
}
.wpfFilterWrapper label, .wpfFilterWrapper select, .wpfPriceFilterRange, .wpfFilterWrapper .ui-slider-handle {
	cursor:pointer !important;
}
.wpfFilterVerScroll {
	display: block;
	position: relative;
	width: 100%;
	margin: 0px;
	padding: 0px;
	padding-inline-start: 0;
	padding-left: 0px;
	padding-bottom: 1px;
}
.wpfFilterLayoutVer, .wpfFilterLayoutHor {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: start;
	align-items: start;
}
.wpfFilterLayoutVer>li, .wpfFilterLayoutHor>li {
	width: auto;
	margin-right: 0;
	margin-left: 0;
	padding-right: 10px;
}
.rtl .wpfFilterLayoutVer>li, .rtl .wpfFilterLayoutHor>li {
	padding-right: 0;
	padding-left: 10px;
}

.wpfFilterWrapper[data-filter-type="wpfPriceRange"] .wpfCheckbox input {
  position: relative;
}
.wpfFilterWrapper .irs-line {
	overflow: initial;
}
.wpfCheckboxHier li>ul {
    margin-left: 1em;
	padding-left: 0;
}
.wpfCheckboxHier li>ul.wpfHideParent li {
	width: 100%!important;
}
.wfpClickable {
	cursor: pointer;
}
.rtl .wpfFilterWrapper li {
	text-align: right !important;
}
.rtl .wpfTitleToggle {
	float: left !important;
}
.wpfBlockAnimated.wpfHide {
    max-height: 0;
    -webkit-transition: max-height 0.4s ease-out;
	-moz-transition: max-height 0.4s ease-out;
	transition: max-height 0.4s ease-out;
}
.wpfFilterContent {
    width: 100%;
    box-sizing: border-box;
}
.wpfFilterContent ul input[type="checkbox"] {
    appearance: auto !important;
}
.wpfBlockAnimated {
	overflow: hidden;
    max-height: 1000px;
    -webkit-transition: max-height 0.8s ease-in;
	-moz-transition: max-height 0.8s ease-in;
	transition: max-height 0.8s ease-in;
}
.wpfFilterWrapper[data-filter-type="wpfPrice"] .wpfFilterContent {
	overflow: visible;
	padding-left: 10px;
	padding-right: 10px;
}
.wpfFilterWrapper[data-filter-type="wpfPrice"] .wpfFilterContent.wpfHide {
	display: none;
}
.wpfOptionDisabled {
	color: #acacac;
}
.wpfPriceRangeField::-webkit-outer-spin-button,
.wpfPriceRangeField::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.wpfSearchHidden, .wpfSelectCopies {
	display: none !important;
}
.wpfFilterContent .ms-search {
	display: inline-block;
	margin: 0;
	min-height: 26px;
	padding: 4px;
	position: relative;
	white-space: nowrap;
	width: 100%;
}
.wpfFilterWrapper .wpfFilterContent .ms-options-wrap > .ms-options > .ms-search input {
	border: 1px groove;
	width: 100%;
	outline: none;
	border-radius: 0;
	height: auto;
}
@media only screen and (min-width : 1140px) {
	.wpfFilterWrapper .wpfPriceInputs {
		white-space: nowrap;
	}
}

.hidePageCategory {
	display: none !important;
}

ul ul.wpfHideAllParent {
	margin: 0;
}
.rtl .wpfSingleInputSearch button, .rtl .wpfSearchWrapper button {
	left: 0 !important;
	right: auto !important;
}
.rtl .wpfSingleInputSearch input, .rtl .wpfSearchWrapper input {
	padding-left: 25px !important;
}
.rtl .wpfMainWrapper .wpfCount {
	padding-left: 0;
	padding-right: 10px;
}
.rtl .wpfFilterWrapper i, .rtl .wpfFilterWrapper svg {
    float: left;
}