:root { --superfrete-primary-color: #0fae79;
--superfrete-primary-hover: #0d9969;
--superfrete-secondary-color: #EA961F;
--superfrete-secondary-hover: #d88519; --superfrete-text-color: inherit;
--superfrete-heading-color: inherit;
--superfrete-bg-color: #f8f9fa;
--superfrete-bg-white: #ffffff;
--superfrete-border-color: #ddd;
--superfrete-border-light: #eaeaea; --superfrete-success-color: #4CAF50;
--superfrete-error-color: #e74c3c;
--superfrete-info-color: #2196F3; --superfrete-font-family: inherit;
--superfrete-font-size-base: 1rem;
--superfrete-font-size-small: 0.875rem;
--superfrete-font-size-large: 1.125rem;
--superfrete-font-weight-normal: normal;
--superfrete-font-weight-bold: bold;
--superfrete-line-height: 1.5; --superfrete-spacing-xs: 0.25rem;
--superfrete-spacing-sm: 0.5rem;
--superfrete-spacing-md: 1rem;
--superfrete-spacing-lg: 1.5rem;
--superfrete-spacing-xl: 2rem; --superfrete-radius-sm: 4px;
--superfrete-radius-md: 6px;
--superfrete-radius-lg: 8px; --superfrete-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
--superfrete-shadow-md: 0 2px 5px rgba(0, 0, 0, 0.1);
--superfrete-shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.15); --superfrete-z-overlay: 999;
--superfrete-z-popup: 1000;
--superfrete-z-loading: 1001;
} @media (prefers-color-scheme: dark) {
:root {
--superfrete-bg-color: #2a2a2a;
--superfrete-bg-white: #3a3a3a;
--superfrete-border-color: #555;
--superfrete-border-light: #444;
}
}
.superfrete-popup {
display: none;
position: fixed;
z-index: var(--superfrete-z-popup);
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
.superfrete-popup-content {
background: var(--superfrete-bg-white);
width: 50%;
margin: 10% auto;
padding: var(--superfrete-spacing-lg);
border-radius: var(--superfrete-radius-lg);
text-align: center;
}
.superfrete-popup-close {
float: right;
font-size: 1.5rem;
cursor: pointer;
color: var(--superfrete-text-color);
}
#superfrete-calculator {
background: var(--superfrete-bg-color);
padding: var(--superfrete-spacing-md);
border-radius: var(--superfrete-radius-lg);
box-shadow: var(--superfrete-shadow-md);
max-width: 350px;
margin: var(--superfrete-spacing-lg) auto;
font-family: var(--superfrete-font-family);
display: block;
margin-left: 0;
}
#superfrete-calculator label {
font-size: var(--superfrete-font-size-small);
font-weight: var(--superfrete-font-weight-bold);
color: var(--superfrete-heading-color);
display: block;
margin-bottom: var(--superfrete-spacing-xs);
}
#superfrete-calculator input[type="text"] {
width: -webkit-fill-available;
padding: var(--superfrete-spacing-sm);
font-size: var(--superfrete-font-size-base);
border: 1px solid var(--superfrete-border-color);
border-radius: var(--superfrete-radius-sm);
margin-bottom: var(--superfrete-spacing-sm);
outline: none;
transition: border 0.3s ease-in-out;
font-family: var(--superfrete-font-family);
color: var(--superfrete-text-color);
background-color: var(--superfrete-bg-white);
}
#superfrete-calculator input[type="text"]:focus {
border-color: var(--superfrete-primary-color);
}
#calculate-shipping {
font-weight: var(--superfrete-font-weight-bold);
background: var(--superfrete-primary-color);
color: white;
border: none;
padding: var(--superfrete-spacing-sm);
width: 100%;
border-radius: var(--superfrete-radius-sm);
font-size: var(--superfrete-font-size-base);
cursor: pointer;
transition: background 0.3s ease-in-out;
font-family: var(--superfrete-font-family);
}
#calculate-shipping:hover {
background: var(--superfrete-secondary-color);
}
#superfrete-shipping-result {
margin-top: 15px;
}
#superfrete-shipping-result h4 {
font-size: var(--superfrete-font-size-base);
font-weight: var(--superfrete-font-weight-bold);
color: var(--superfrete-primary-color);
text-transform: uppercase;
}
#superfrete-shipping-result ul {
list-style: none;
padding: 0;
}
#superfrete-shipping-result li {
background: var(--superfrete-bg-white);
padding: var(--superfrete-spacing-sm);
border-radius: var(--superfrete-radius-sm);
margin-top: var(--superfrete-spacing-sm);
border-left: 5px solid var(--superfrete-primary-color);
font-size: var(--superfrete-font-size-small);
color: var(--superfrete-text-color);
box-shadow: var(--superfrete-shadow-sm);
}
.superfrete-alert ul li {
background: var(--superfrete-bg-white);
padding: var(--superfrete-spacing-sm);
border-radius: var(--superfrete-radius-sm);
margin-top: var(--superfrete-spacing-sm);
border-left: 5px solid var(--superfrete-primary-color);
font-size: var(--superfrete-font-size-small);
color: var(--superfrete-text-color);
box-shadow: var(--superfrete-shadow-sm);
}
.superfrete-alert ul {
list-style: none;
padding: 0;
}
#superfrete-shipping-result li strong {
color: var(--superfrete-heading-color);
}
#superfrete-shipping-result img {
display: block;
margin-top: 5px;
} .superfrete-popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(0, 0, 0, 0.5); width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}
.superfrete-popup-content {
background: var(--superfrete-bg-color);
padding: var(--superfrete-spacing-lg);
border-radius: var(--superfrete-radius-lg);
box-shadow: var(--superfrete-shadow-md);
max-width: 400px;
width: 90%;
text-align: center;
font-family: var(--superfrete-font-family);
position: relative;
}
.superfrete-popup-close {
position: absolute;
top: var(--superfrete-spacing-sm);
right: var(--superfrete-spacing-md);
font-size: 1.25rem;
font-weight: var(--superfrete-font-weight-bold);
color: var(--superfrete-text-color);
cursor: pointer;
transition: color 0.3s ease-in-out;
}
.superfrete-popup-close:hover {
color: var(--superfrete-secondary-color);
}
.superfrete-popup h3 {
font-size: var(--superfrete-font-size-large);
font-weight: var(--superfrete-font-weight-bold);
color: var(--superfrete-primary-color);
margin-bottom: var(--superfrete-spacing-sm);
}
.superfrete-popup p {
font-size: var(--superfrete-font-size-small);
color: var(--superfrete-text-color);
margin-bottom: var(--superfrete-spacing-md);
}
.superfrete-popup form {
text-align: left;
}
.superfrete-popup label {
font-size: var(--superfrete-font-size-small);
font-weight: var(--superfrete-font-weight-bold);
color: var(--superfrete-heading-color);
display: block;
margin-bottom: var(--superfrete-spacing-xs);
}
.superfrete-popup input[type="text"] {
width: calc(100% - var(--superfrete-spacing-lg));
padding: var(--superfrete-spacing-sm);
font-size: var(--superfrete-font-size-base);
border: 1px solid var(--superfrete-border-color);
border-radius: var(--superfrete-radius-sm);
margin-bottom: var(--superfrete-spacing-sm);
outline: none;
transition: border 0.3s ease-in-out;
font-family: var(--superfrete-font-family);
color: var(--superfrete-text-color);
background-color: var(--superfrete-bg-white);
}
.superfrete-popup input[type="text"]:focus {
border-color: var(--superfrete-primary-color);
}
.superfrete-popup button {
font-weight: var(--superfrete-font-weight-bold);
background: var(--superfrete-primary-color);
color: white;
border: none;
padding: var(--superfrete-spacing-sm);
width: 100%;
border-radius: var(--superfrete-radius-sm);
font-size: var(--superfrete-font-size-base);
cursor: pointer;
transition: background 0.3s ease-in-out;
font-family: var(--superfrete-font-family);
}
.superfrete-popup button:hover {
background: var(--superfrete-secondary-color);
}
#super-frete-shipping-calculator{
position: relative;
}
.superfrete-processing #super-frete-shipping-calculator:after{
content: "";
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.85);
z-index: var(--superfrete-z-overlay);
top: 0px;
display: flex;
align-content: center;
justify-content: center;
align-items: center;
border-radius: var(--superfrete-radius-lg);
}
.superfrete-processing #super-frete-shipping-calculator:before{
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 24px;
height: 24px;
margin-top: -12px;
margin-left: -12px;
border: 2px solid var(--superfrete-primary-color);
border-top: 2px solid transparent;
border-radius: 50%;
z-index: var(--superfrete-z-loading);
animation: superfrete-spin 0.8s linear infinite;
}
@keyframes superfrete-spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
a.button.superfrete-shipping-calculator-button {
width: 100%;
padding: var(--superfrete-spacing-sm) 0;
}
form.superfrete-woocommerce-shipping-calculator {
position: relative;
} .superfrete-alert {
background: rgba(1, 113, 76, 0.24);
color: var(--superfrete-text-color);
padding: var(--superfrete-spacing-sm);
text-align: center;
font-weight: var(--superfrete-font-weight-bold);
border-radius: var(--superfrete-radius-sm);
margin-bottom: var(--superfrete-spacing-sm);
box-shadow: var(--superfrete-shadow-md);
} .superfrete-container {
position: relative;
background: var(--superfrete-bg-color);
padding: var(--superfrete-spacing-lg);
border-radius: var(--superfrete-radius-lg);
box-shadow: var(--superfrete-shadow-md);
max-width: 400px;
margin: var(--superfrete-spacing-lg) auto;
font-family: var(--superfrete-font-family);
} .superfrete-shipping-calculator-button {
display: block;
background: var(--superfrete-primary-color);
color: white;
text-align: center;
font-size: var(--superfrete-font-size-base);
padding: var(--superfrete-spacing-md);
border-radius: var(--superfrete-radius-sm);
text-decoration: none;
transition: background 0.3s ease-in-out;
font-weight: var(--superfrete-font-weight-bold);
}
.superfrete-shipping-calculator-button:hover {
background: var(--superfrete-secondary-color);
} .superfrete-shipping-calculator-form {
display: none;
margin-top: var(--superfrete-spacing-md);
padding: var(--superfrete-spacing-md);
background: var(--superfrete-bg-white);
border-radius: var(--superfrete-radius-sm);
box-shadow: var(--superfrete-shadow-md);
} .superfrete-error {
color: var(--superfrete-error-color);
padding: var(--superfrete-spacing-sm);
border-radius: var(--superfrete-radius-sm);
margin-bottom: var(--superfrete-spacing-sm);
font-size: var(--superfrete-font-size-small);
text-align: center;
font-weight: var(--superfrete-font-weight-bold);
} .superfrete-woocommerce-shipping-calculator select,
.superfrete-woocommerce-shipping-calculator input {
width: 100%;
padding: var(--superfrete-spacing-md);
font-size: var(--superfrete-font-size-base);
border: 1px solid var(--superfrete-border-color);
border-radius: var(--superfrete-radius-sm);
margin-bottom: var(--superfrete-spacing-sm);
outline: none;
transition: border 0.3s ease-in-out;
font-family: var(--superfrete-font-family);
color: var(--superfrete-text-color);
background-color: var(--superfrete-bg-white);
}
.superfrete-woocommerce-shipping-calculator input:focus,
.superfrete-woocommerce-shipping-calculator select:focus {
border-color: var(--superfrete-primary-color);
} .superfrete-update-address-button {
font-weight: var(--superfrete-font-weight-bold);
background: var(--superfrete-primary-color);
color: white;
border: none;
padding: var(--superfrete-spacing-md);
width: 100%;
border-radius: var(--superfrete-radius-sm);
font-size: var(--superfrete-font-size-base);
cursor: pointer;
transition: background 0.3s ease-in-out;
margin-top: var(--superfrete-spacing-sm);
font-family: var(--superfrete-font-family);
}
.superfrete-update-address-button:hover {
background: var(--superfrete-secondary-color);
} @media (max-width: 480px) {
.superfrete-container {
max-width: 90%;
}
.superfrete-shipping-calculator-button,
.superfrete-update-address-button {
font-size: 14px;
padding: 10px;
}
} .woocommerce_page_wc-settings input[type="color"] {
position: relative;
z-index: 1;
outline: none;
}
.woocommerce_page_wc-settings input[type="color"]:focus {
outline: none;
box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
} .woocommerce_page_wc-settings input[type="color"]::-webkit-color-swatch-wrapper {
padding: 0;
border: none;
border-radius: 3px;
}
.woocommerce_page_wc-settings input[type="color"]::-webkit-color-swatch {
border: none;
border-radius: 3px;
} .woocommerce_page_wc-settings input[type="color"] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 50px;
height: 40px;
border: 2px solid #ddd;
border-radius: 4px;
background: none;
cursor: pointer;
}
.woocommerce_page_wc-settings input[type="color"]::-webkit-color-swatch-wrapper {
padding: 0;
border: none;
border-radius: 2px;
}
.woocommerce_page_wc-settings input[type="color"]::-webkit-color-swatch {
border: none;
border-radius: 2px;
} #billing_document.error {
border-color: var(--superfrete-error-color, #e74c3c) !important;
box-shadow: 0 0 0 1px var(--superfrete-error-color, #e74c3c) !important;
}
#billing_document:focus {
border-color: var(--superfrete-primary-color, #0fae79) !important;
box-shadow: 0 0 0 1px var(--superfrete-primary-color, #0fae79) !important;
}
.superfrete-field-feedback {
font-size: var(--superfrete-font-size-small, 12px);
margin-top: var(--superfrete-spacing-xs, 4px);
line-height: 1.4;
animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-5px);
}
to {
opacity: 1;
transform: translateY(0);
}
} #billing_document_field::before {
content: "🆔";
position: absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
font-size: 16px;
opacity: 0.7;
z-index: 1;
}
#billing_document_field {
position: relative;
}
#billing_document_field input {
padding-left: 35px !important;
} .woocommerce-checkout .form-row .description {
font-size: 12px;
color: #666;
margin-top: 5px;
font-style: italic;
display: block;
} .woocommerce-info.superfrete-number-notice {
background-color: #f0f8ff;
border-left: 4px solid var(--superfrete-primary-color, #0fae79);
margin-bottom: 20px;
}
.woocommerce-info.superfrete-number-notice strong {
color: var(--superfrete-primary-color, #0fae79);
} #billing_number_field label:after,
#shipping_number_field label:after {
content: " (ou N/A)";
font-size: 11px;
color: #999;
font-weight: normal;
}.wpb_category_n_menu_accordion * {
-webkit-font-smoothing: antialiased;
}
.wpb_category_n_menu_accordion ul li {
list-style: none;
display: block;
position: relative;
}
.wpb_category_n_menu_accordion>ul {
padding: 0 !important;
margin: 0 !important;
}
.wpb_category_n_menu_accordion>ul>ul {
padding: 0 !important;
margin: 0 0 0 20px !important;
}
.wpb_category_n_menu_accordion ul.children,
.wpb_category_n_menu_accordion ul.sub-menu {
display: none;
}
.wpb_category_n_menu_accordion ul>li {
margin: 0 !important;
padding: 0 !important;
}
.wpb_category_n_menu_accordion ul>li li {
margin: 0 !important;
}
.wpb_category_n_menu_accordion a {
display: block;
outline: none;
text-decoration: none;
}
.wpb_category_n_menu_accordion li a:focus {
outline: 0;
}
.wpb_category_n_menu_accordion ul li>a>span.wpb-submenu-indicator {
position: absolute;
right: 0;
width: 47px;
height: 100%;
top: 0;
text-align: center;
font-size: 20px;
font-weight: bolder;
display: inline-flex;
align-items: center;
justify-content: center;
z-index: 2;
-o-transition: transform .3s linear;
-moz-transition: transform .3s linear;
-webkit-transition: transform .3s linear;
-ms-transition: transform .3s linear;
}
.wpb_category_n_menu_accordion li.wpb-submenu-indicator-minus>a>span.wpb-submenu-indicator {
-ms-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.wpb_category_n_menu_accordion>ul>li li>a {
-o-transition: all .2s linear;
-moz-transition: all .2s linear;
-webkit-transition: all .2s linear;
transition: all .2s linear;
}
.wpb_category_n_menu_accordion li a {
position: relative;
font-size: 12px;
line-height: 18px;
padding: 14px 22px;
font-weight: 600;
-o-transition: color .2s linear, background .2s linear;
-moz-transition: color .2s linear, background .2s linear;
-webkit-transition: color .2s linear, background .2s linear;
transition: color .2s linear, background .2s linear;
}
.wpb_category_n_menu_accordion>ul>li>a {
font-size: 14px;
line-height: 20px;
padding: 14px 22px;
}
.wpb_category_n_menu_accordion>ul>li:last-child>a {
border-bottom: 0;
}
.wpb_category_n_menu_accordion>ul>li>ul>li>a,
.wpb_category_n_menu_accordion>ul>li>ul>li>ul>li>a {
border-bottom: 0;
} .wpb_category_n_menu_accordion ul li .wpb-wmca-cat-count {
min-width: 20px;
position: absolute;
right: 40px;
top: 15px;
font-size: 11px;
text-align: center;
border-radius: 50%;
height: 20px;
line-height: 20px;
-webkit-font-smoothing: antialiased;
}
.wpb_category_n_menu_accordion ul ul li .wpb-wmca-cat-count {
top: 8px;
} .widget-area .widget .wpb_category_n_menu_accordion>ul>li a:not(.button),
.widget .wpb_category_n_menu_accordion ul li a:hover {
text-decoration: none;
}
.widget .wpb_category_n_menu_accordion li a {
display: block;
}
.fusion-footer-widget-area .fusion-footer-widget-column:not(.widget_icl_lang_sel_widget) .wpb_category_n_menu_accordion ul:first-child>li:first-child>a,
.fusion-footer-widget-area .fusion-footer-widget-column:not(.widget_icl_lang_sel_widget) .wpb_category_n_menu_accordion>ul>li:first-child>a {
padding-top: 14px;
}
.widget_text .wpb_category_n_menu_accordion li a {
margin-bottom: 0;
} .wpb_wmca_accordion_wrapper_theme_dark>ul>li>a {
background: #414956;
color: #f5f5f5 !important;
}
.wpb_wmca_accordion_wrapper_theme_dark>ul>li li>a {
border-left: 6px solid transparent;
}
.wpb_wmca_accordion_wrapper_theme_dark ul ul li a {
padding: 10px 15px;
}
.wpb_wmca_accordion_wrapper_theme_dark>ul>li>a:hover,
.wpb_wmca_accordion_wrapper_theme_dark>ul>li.wpb-wmca-focus>a,
.wpb_wmca_accordion_wrapper_theme_dark>ul>li.current_page_ancestor>a,
.wpb_wmca_accordion_wrapper_theme_dark>ul>li.current_page_parent>a,
.wpb_wmca_accordion_wrapper_theme_dark>ul>li.current_page_item>a,
.wpb_wmca_accordion_wrapper_theme_dark>ul>li.current-menu-parent>a,
.wpb_wmca_accordion_wrapper_theme_dark>ul>li.current-menu-ancestor>a,
.wpb_wmca_accordion_wrapper_theme_dark>ul>li.current-menu-item>a,
.wpb_wmca_accordion_wrapper_theme_dark>ul>li.current-cat>a,
.wpb_wmca_accordion_wrapper_theme_dark>ul>li.wpb-wmca-current-cat-parent>a,
.wpb_wmca_accordion_wrapper_theme_dark>ul>li.wpb-submenu-indicator-minus>a {
background-color: #383F4A;
color: #fff;
}
.wpb_wmca_accordion_wrapper_theme_dark>ul>li li:hover>a,
.wpb_wmca_accordion_wrapper_theme_dark>ul>li li.wpb-wmca-focus>a,
.wpb_wmca_accordion_wrapper_theme_dark>ul>li li.current-cat>a,
.wpb_wmca_accordion_wrapper_theme_dark>ul>li li.current-menu-item>a,
.wpb_wmca_accordion_wrapper_theme_dark li.current_page_item>a {
border-color: #414956;
}
.wpb_wmca_accordion_wrapper_theme_dark>ul>li:not(:last-child)>a {
border-bottom: 1px solid #383F4A !important;
}
.wpb_wmca_accordion_wrapper_theme_dark>ul ul {
background: #383838;
margin: 0 !important;
padding-left: 20px !important;
}
.wpb_wmca_accordion_wrapper_theme_dark ul>li li {
margin: 0 !important;
}
.wpb_wmca_accordion_wrapper_theme_dark ul>li li a {
color: #f5f5f5 !important;
}
.wpb_wmca_accordion_wrapper_theme_dark li>a:hover>span.wpb-submenu-indicator {
color: #fff;
}
.wpb_wmca_accordion_wrapper_theme_dark ul li .wpb-wmca-cat-count {
color: #555;
background: #f0f0f0;
} .wpb_wmca_accordion_wrapper_theme_transparent ul li a {
color: #3F4254 !important;
border-radius: 4px;
border-left: 3px solid transparent;
}
.wpb_wmca_accordion_wrapper_theme_transparent ul ul {
margin: 5px 0 0 20px!important;
}
.wpb_wmca_accordion_wrapper_theme_transparent ul li a:hover,
.wpb_wmca_accordion_wrapper_theme_transparent>ul>li.wpb-wmca-focus>a,
.wpb_wmca_accordion_wrapper_theme_transparent>ul>li.current_page_ancestor>a,
.wpb_wmca_accordion_wrapper_theme_transparent>ul>li.current_page_parent>a,
.wpb_wmca_accordion_wrapper_theme_transparent>ul>li.current_page_item>a,
.wpb_wmca_accordion_wrapper_theme_transparent>ul>li.current-menu-parent>a,
.wpb_wmca_accordion_wrapper_theme_transparent>ul>li.current-menu-ancestor>a,
.wpb_wmca_accordion_wrapper_theme_transparent>ul>li.current-menu-item>a,
.wpb_wmca_accordion_wrapper_theme_transparent>ul>li.current-cat>a,
.wpb_wmca_accordion_wrapper_theme_transparent>ul>li.wpb-wmca-current-cat-parent>a,
.wpb_wmca_accordion_wrapper_theme_transparent>ul>li.wpb-submenu-indicator-minus>a {
background-color: rgba(245, 248, 250, 0.8);
}
.wpb_wmca_accordion_wrapper_theme_transparent>ul>li li:hover>a,
.wpb_wmca_accordion_wrapper_theme_transparent>ul>li li.wpb-wmca-focus>a,
.wpb_wmca_accordion_wrapper_theme_transparent>ul>li li.current-cat>a,
.wpb_wmca_accordion_wrapper_theme_transparent>ul>li li.current-menu-item>a,
.wpb_wmca_accordion_wrapper_theme_transparent li.current_page_item>a {
border-color: #009EF7;
}
.wpb_wmca_accordion_wrapper_theme_transparent ul>li li {
margin: 0 !important;
}
.wpb_wmca_accordion_wrapper_theme_transparent ul ul li a {
padding: 10px 15px;
}
.wpb_wmca_accordion_wrapper_theme_transparent ul li .wpb-wmca-cat-count {
color: #A1A5B7!important;
} body.rtl .wpb_category_n_menu_accordion ul li>a>span.wpb-submenu-indicator {
right: unset;
left: 0;
}
body.rtl .wpb_category_n_menu_accordion>ul>li li>a {
border-right: solid 6px transparent;
border-left: 0;
}
body.rtl .wpb_category_n_menu_accordion>ul>li li:hover>a,
body.rtl .wpb_category_n_menu_accordion>ul>li li.current-cat>a,
body.rtl .wpb_category_n_menu_accordion>ul>li li.current-menu-item>a,
body.rtl .wpb_category_n_menu_accordion li.wpb-submenu-indicator-minus>a {
border-right-color: #414956;
}
body.rtl .wpb_category_n_menu_accordion ul li .wpb-wmca-cat-count {
left: 40px;
right: inherit;
}
.rtl .wpb_wmca_accordion_wrapper_theme_transparent ul ul {
margin: 5px 20px 0 0!important;
}
.rtl .wpb_wmca_accordion_wrapper_theme_dark > ul ul {
padding: 0 20px 0 0!important;
}.yith-wcan-filters {
background-color: var(--yith-wcan-filters_colors_background, transparent);
margin-bottom: 30px;
}
.yith-wcan-filters h3.mobile-only {
display: none;
}
.yith-wcan-filters .yith-wcan-filter {
margin-bottom: 30px;
}
.yith-wcan-filters .yith-wcan-filter .filter-title {
color: var(--yith-wcan-filters_colors_titles, #434343);
}
.yith-wcan-filters .yith-wcan-filter .filter-title.collapsable {
cursor: pointer;
position: relative;
}
.yith-wcan-filters .yith-wcan-filter .filter-title.collapsable:after {
background-size: 100% auto;
content: "";
display: block;
height: 10px;
position: absolute;
right: 15px;
top: calc(50% - 5px);
width: 10px;
}
.yith-wcan-filters .yith-wcan-filter .filter-title.collapsable.closed:after, .yith-wcan-filters .yith-wcan-filter .filter-title.collapsable:not(.opened):after, .yith-wcan-filters .yith-wcan-filter .filter-title.collapsable:not(.open):after {
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/arrow-down.svg);
}
.yith-wcan-filters .yith-wcan-filter .filter-title.collapsable.open:after, .yith-wcan-filters .yith-wcan-filter .filter-title.collapsable.opened:after {
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/arrow-up.svg);
}
.yith-wcan-filters .yith-wcan-filter .filter-title.collapsable:after {
right: 5px;
}
.yith-wcan-filters .yith-wcan-filter .filter-title.collapsable.collapsable.closed + .filter-content {
display: none;
}
.yith-wcan-filters .yith-wcan-filter .filter-items {
float: none;
list-style: none;
padding-left: 0;
}
.yith-wcan-filters .yith-wcan-filter .filter-items.level-0 {
margin: 0;
padding: 0;
}
.yith-wcan-filters .yith-wcan-filter .filter-items.level-0 ul {
padding-left: 15px;
}
.yith-wcan-filters .yith-wcan-filter .filter-items.filter-color {
font-size: 0;
margin: 0 -5px;
}
.yith-wcan-filters .yith-wcan-filter .filter-items.filter-label {
font-size: 0;
margin: 0 -5px;
}
.yith-wcan-filters .yith-wcan-filter .filter-items.filter-dropdown {
display: none;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item {
line-height: 2;
margin: 0;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item > a, .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item > label > a {
color: var(--yith-wcan-anchors_style_text, #434343);
text-decoration: none;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item > a:hover, .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item > label > a:hover {
color: var(--yith-wcan-anchors_style_text_hover, #4e8ba2);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.disabled {
opacity: 0.5;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.disabled > a, .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.disabled > label > a {
color: #B4B4B4;
cursor: not-allowed;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active > a, .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active > label > a {
color: var(--yith-wcan-anchors_style_text_active, #4e8ba2);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color {
display: inline-block;
margin-bottom: 10px;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color > a {
display: inline-block;
position: relative;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color.no-color, .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color.no-image {
font-size: 1rem;
text-align: center;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color.label-below, .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color.label-right {
font-size: 1rem;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color.label-right {
display: block;
margin: 0 0 10px;
width: 100%;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color.label-right .term-color,
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color.label-right .term-image {
margin-bottom: 0;
margin-right: 10px;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color.label-right .term-label {
display: inline-block;
font-size: 1em;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color .term-color {
border: 2px solid transparent;
border-radius: var(--yith-wcan-color_swatches_border_radius, 4px);
display: inline-block;
height: calc(var(--yith-wcan-color_swatches_size, 45px) + 4px);
margin-bottom: 5px;
overflow: hidden;
vertical-align: middle;
width: calc(var(--yith-wcan-color_swatches_size, 45px) + 4px);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color .term-color .color-swatch {
display: block;
height: 100%;
width: 100%;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color .term-color.bi-color .color-swatch {
border-style: solid;
border-width: 0 0 var(--yith-wcan-color_swatches_size, 45px) var(--yith-wcan-color_swatches_size, 45px);
border-left-color: transparent !important;
border-right-color: transparent !important;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color .term-color:hover {
border-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color .term-image {
border: 2px solid transparent;
border-radius: var(--yith-wcan-color_swatches_border_radius, 4px);
display: inline-block;
font-size: 0;
height: calc(var(--yith-wcan-color_swatches_size, 45px) + 4px);
margin-bottom: 5px;
overflow: hidden;
vertical-align: middle;
width: calc(var(--yith-wcan-color_swatches_size, 45px) + 4px);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color .term-image:hover {
border-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color .term-image img {
height: auto;
width: 100%;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color.disabled .term-color, .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color.disabled .term-image img {
opacity: 0.4;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color .term-label {
display: block;
font-size: 0.6em;
line-height: 1.4;
text-align: center;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color.label-hide .term-label {
display: none;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active.color .term-color, .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active.color .term-image {
border-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active.color:not(.no-color):not(.no-image):not(.label-right) > a:after {
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/close.svg);
background-position: center;
background-repeat: no-repeat;
background-size: 60%;
border-radius: 100%;
color: #fff;
content: "";
font-size: 16px;
height: 15px;
line-height: 15px;
position: absolute;
right: -5px;
text-align: center;
text-decoration: none;
top: -5px;
width: 15px;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label {
background-color: var(--yith-wcan-labels_style_background, #fff);
box-shadow: 0 0 0 1px #D7D7D7;
border-radius: 4px;
display: inline-block;
margin: 0 5px 10px;
padding: 7px;
text-align: center;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label > a {
color: var(--yith-wcan-labels_style_text, #434343);
display: block;
height: 100%;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label.active.with-image:not(.label-right) > a {
position: relative;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label.active.with-image:not(.label-right) > a:after {
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/close.svg);
background-position: center;
background-repeat: no-repeat;
background-size: 60%;
border-radius: 100%;
color: #fff;
content: "";
font-size: 16px;
height: 15px;
line-height: 15px;
position: absolute;
right: -5px;
text-align: center;
text-decoration: none;
top: -5px;
width: 15px;
right: -13px;
top: -15px;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label.active.with-image, .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label:not(.disabled):hover {
box-shadow: 0 0 0 2px var(--yith-wcan-filters_colors_accent, #4e8ba2);
color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label.active:not(.with-image) {
background-color: var(--yith-wcan-labels_style_background_active, #4e8ba2);
box-shadow: 0 0 0 2px var(--yith-wcan-labels_style_background_active, #4e8ba2);
color: var(--yith-wcan-labels_style_text_active, #fff);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label.active:not(.with-image) .term-label,
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label.active:not(.with-image) .item-count {
color: var(--yith-wcan-labels_style_text_active, #fff);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label:not(.with-image):not(.disabled):hover {
background-color: var(--yith-wcan-labels_style_background_hover, #4e8ba2);
box-shadow: 0 0 0 2px var(--yith-wcan-labels_style_background_hover, #4e8ba2);
color: var(--yith-wcan-labels_style_text_hover, #fff);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label:not(.with-image):not(.disabled):hover .term-label,
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label:not(.with-image):not(.disabled):hover .item-count {
color: var(--yith-wcan-labels_style_text_hover, #fff);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label.label-right.with-image {
background: none;
box-shadow: none;
display: block;
padding: 0;
text-align: left;
width: 100%;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label.label-right.with-image > a {
display: inline-block;
color: var(--yith-wcan-anchors_style_text, #434343);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label.label-right.with-image > a:hover {
color: var(--yith-wcan-anchors_style_text_hover, #4e8ba2);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label.label-right.with-image.active > a {
color: var(--yith-wcan-anchors_style_text_active, #4e8ba2);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label.label-right.with-image .term-image {
margin-right: 10px;
max-width: 70px;
vertical-align: middle;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label.label-right.with-image .term-label {
display: inline-block;
vertical-align: middle;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label .term-image {
display: inline-block;
font-size: 0;
max-width: 100%;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label .term-image img {
width: 100%;
height: auto;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label .term-label {
display: block;
font-size: 0.8rem;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label.label-hide.with-image .term-label {
display: none;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.hierarchy-collapsable {
position: relative;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.hierarchy-collapsable .toggle-handle {
background-size: 50% auto;
background-position: center center;
background-repeat: no-repeat;
cursor: pointer;
display: block;
height: 20px;
position: absolute;
right: 10px;
top: 0;
width: 20px;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.hierarchy-collapsable.closed > .toggle-handle {
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/arrow-down.svg);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.hierarchy-collapsable.opened > .toggle-handle {
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/arrow-up.svg);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.hierarchy-collapsable:after {
top: 5px;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item .item-count {
color: #B4B4B4;
font-size: 1em;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item .star-rating {
display: inline-block;
line-height: 1.4;
margin-right: 10px;
vertical-align: middle;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item .checkboxbutton.checked:before {
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
border-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item .radiobutton.checked:before {
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.filter-has-1-column {
display: inline-block;
margin: 0 5px 10px;
vertical-align: top;
width: calc(100% - 10px);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.filter-has-2-column {
display: inline-block;
margin: 0 5px 10px;
vertical-align: top;
width: calc(50% - 10px);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.filter-has-3-column {
display: inline-block;
margin: 0 5px 10px;
vertical-align: top;
width: calc(33.3333333333% - 10px);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.filter-has-4-column {
display: inline-block;
margin: 0 5px 10px;
vertical-align: top;
width: calc(25% - 10px);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.filter-has-5-column {
display: inline-block;
margin: 0 5px 10px;
vertical-align: top;
width: calc(20% - 10px);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.filter-has-6-column {
display: inline-block;
margin: 0 5px 10px;
vertical-align: top;
width: calc(16.6666666667% - 10px);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.filter-has-7-column {
display: inline-block;
margin: 0 5px 10px;
vertical-align: top;
width: calc(14.2857142857% - 10px);
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.filter-has-8-column {
display: inline-block;
margin: 0 5px 10px;
vertical-align: top;
width: calc(12.5% - 10px);
}
.yith-wcan-filters .yith-wcan-filter.label-design .filter-items {
font-size: 0;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-tooltip {
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
border-radius: 0;
color: #fff;
cursor: initial;
font-size: 0.6875rem;
line-height: normal;
padding: 7px 10px;
pointer-events: none;
text-align: center;
display: none;
top: calc(50% - 15px);
z-index: 1006;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-tooltip:before {
background: transparent !important;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-right: 5px solid var(--yith-wcan-filters_colors_accent, #4e8ba2);
content: "";
bottom: -5px;
display: block;
height: 0;
left: -5px;
position: absolute;
top: calc(50% - 5px);
width: 0;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-tooltip > img {
min-width: 40px;
height: auto;
}
.yith-wcan-filters .yith-wcan-filter .filter-color .yith-wcan-tooltip,
.yith-wcan-filters .yith-wcan-filter .filter-label .yith-wcan-tooltip {
bottom: calc(100% + 15px);
top: auto;
white-space: nowrap;
}
.yith-wcan-filters .yith-wcan-filter .with-tooltip {
position: relative;
}
.yith-wcan-filters .yith-wcan-filter .with-tooltip .yith-wcan-tooltip {
position: absolute;
}
.yith-wcan-filters .yith-wcan-filter .filter-color .with-tooltip .yith-wcan-tooltip:before,
.yith-wcan-filters .yith-wcan-filter .filter-label .with-tooltip .yith-wcan-tooltip:before {
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid var(--yith-wcan-filters_colors_accent, #4e8ba2);
left: calc(50% - 5px);
top: 100%;
}
.yith-wcan-filters .yith-wcan-filter .price-slider.both {
padding: 20px 10px;
}
.yith-wcan-filters .yith-wcan-filter .price-slider.both:after {
content: "";
display: block;
clear: both;
}
.yith-wcan-filters .yith-wcan-filter .price-slider.both .price-slider-min,
.yith-wcan-filters .yith-wcan-filter .price-slider.both .price-slider-max {
min-width: 0;
width: 50px;
}
.yith-wcan-filters .yith-wcan-filter .price-slider.both .irs {
margin-bottom: 20px;
}
.yith-wcan-filters .yith-wcan-filter .price-slider.both .price-slider-min {
float: left;
}
.yith-wcan-filters .yith-wcan-filter .price-slider.both .price-slider-max {
float: right;
}
.yith-wcan-filters .yith-wcan-filter .price-slider.fields {
padding: 20px 0;
}
.yith-wcan-filters .yith-wcan-filter .price-slider.fields .price-slider-min,
.yith-wcan-filters .yith-wcan-filter .price-slider.fields .price-slider-max {
min-width: 0;
width: 70px;
margin: 0 5px;
}
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-bar,
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-line {
height: 5px;
border-radius: 4px;
}
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-bar {
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
}
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-handle {
border: 4px solid var(--yith-wcan-filters_colors_accent, #4e8ba2);
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
cursor: grab;
height: 18px;
top: 29px;
width: 18px;
}
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-min,
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-max {
background: none;
top: -5px;
}
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-from,
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-to,
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-single {
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
border-radius: 0;
color: #fff;
cursor: initial;
font-size: 0.6875rem;
line-height: normal;
padding: 7px 10px;
pointer-events: none;
text-align: center;
top: -8px;
}
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-from:before,
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-to:before,
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-single:before {
background: transparent !important;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-right: 5px solid var(--yith-wcan-filters_colors_accent, #4e8ba2);
content: "";
bottom: -5px;
display: block;
height: 0;
left: -5px;
position: absolute;
top: calc(50% - 5px);
width: 0;
}
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-from > img,
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-to > img,
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-single > img {
min-width: 40px;
height: auto;
}
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-from:before,
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-to:before,
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-single:before {
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid var(--yith-wcan-filters_colors_accent, #4e8ba2);
left: calc(50% - 2px);
top: 100%;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown {
border: 1px solid #D7D7D7;
border-radius: 4px;
padding: 8px 15px;
cursor: pointer;
position: relative;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown:after {
background-size: 100% auto;
content: "";
display: block;
height: 10px;
position: absolute;
right: 15px;
top: calc(50% - 5px);
width: 10px;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown.closed:after, .yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown:not(.opened):after, .yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown:not(.open):after {
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/arrow-down.svg);
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown.open:after, .yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown.opened:after {
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/arrow-up.svg);
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper {
background-color: #fff;
border: 1px solid rgba(var(--yith-wcan-filters_colors_accent_r, 73), var(--yith-wcan-filters_colors_accent_g, 139), var(--yith-wcan-filters_colors_accent_b, 162), 0.3);
border-radius: 4px;
box-shadow: 0 0 7px 0 rgba(var(--yith-wcan-filters_colors_accent_r, 73), var(--yith-wcan-filters_colors_accent_g, 139), var(--yith-wcan-filters_colors_accent_b, 162), 0.3);
display: none;
left: 0;
padding: 15px;
position: absolute;
right: 0;
top: calc(100% + 10px);
z-index: 1011;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .search-field-container {
margin-bottom: 15px;
position: relative;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .search-field-container .search-field {
padding-right: 40px;
width: 100%;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .search-field-container .search-field:active, .yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .search-field-container .search-field:focus {
border-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
box-shadow: 0 0 2px var(--yith-wcan-filters_colors_accent, #4e8ba2);
outline-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .search-field-container:after {
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/search.svg);
background-size: 100% auto;
content: "";
display: block;
height: 25px;
position: absolute;
right: 10px;
top: 10px;
width: 25px;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .matching-items {
margin-bottom: 0;
max-height: 200px;
overflow-y: scroll;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .matching-items li {
margin-bottom: 5px;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .matching-items li > a {
display: inline-block;
vertical-align: middle;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .matching-items::-webkit-scrollbar {
-webkit-appearance: none;
width: 6px;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .matching-items::-webkit-scrollbar-thumb {
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
border-radius: 4px;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .show-more {
color: var(--yith-wcan-anchors_style_text_hover, #4e8ba2);
display: inline-block;
font-size: 0.8em;
margin-top: 10px;
text-decoration: none;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .show-more:hover {
color: var(--yith-wcan-anchors_style_text, #434343);
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-label {
vertical-align: middle;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-label .star-rating {
display: inline-block;
line-height: 1.4;
margin-right: 10px;
vertical-align: middle;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown.open {
border-color: rgba(var(--yith-wcan-filters_colors_accent_r, 73), var(--yith-wcan-filters_colors_accent_g, 139), var(--yith-wcan-filters_colors_accent_b, 162), 0.3);
box-shadow: 0 0 7px 0 rgba(var(--yith-wcan-filters_colors_accent_r, 73), var(--yith-wcan-filters_colors_accent_g, 139), var(--yith-wcan-filters_colors_accent_b, 162), 0.3);
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown.open .dropdown-wrapper {
display: block;
}
.yith-wcan-filters .yith-wcan-filter a.clear-selection {
font-size: 0.9em;
display: inline-block;
margin-bottom: 20px;
cursor: pointer;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .select-placeholder {
height: calc(1.5em + 16px);
background-color: #B4B4B4 !important;
border: 0 !important;
border-radius: 4px;
box-shadow: none;
color: #B4B4B4 !important;
display: block;
max-width: 100% !important;
opacity: 0.15;
outline: 0 !important;
overflow: hidden !important;
pointer-events: none;
position: relative !important;
width: auto;
z-index: 1;
cursor: pointer;
position: relative;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .select-placeholder:before {
animation: loading__animation 1.5s ease-in-out infinite;
background-image: linear-gradient(90deg, #B4B4B4, #f0f0f0, #B4B4B4);
background-repeat: no-repeat;
content: " ";
display: block;
height: 100%;
left: 0;
position: absolute;
right: 0;
top: 0;
transform: translateX(-100%);
}
@keyframes loading__animation {
to {
transform: translateX(100%);
}
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .select-placeholder:after {
background-size: 100% auto;
content: "";
display: block;
height: 10px;
position: absolute;
right: 15px;
top: calc(50% - 5px);
width: 10px;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .select-placeholder.closed:after, .yith-wcan-filters .yith-wcan-filter.filter-placeholder .select-placeholder:not(.opened):after, .yith-wcan-filters .yith-wcan-filter.filter-placeholder .select-placeholder:not(.open):after {
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/arrow-down.svg);
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .select-placeholder.open:after, .yith-wcan-filters .yith-wcan-filter.filter-placeholder .select-placeholder.opened:after {
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/arrow-up.svg);
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .slider-placeholder {
position: relative;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .slider-placeholder .item-placeholder {
height: 5px;
margin: 45px 0;
background-color: #B4B4B4 !important;
border: 0 !important;
border-radius: 4px;
box-shadow: none;
color: #B4B4B4 !important;
display: block;
max-width: 100% !important;
opacity: 0.15;
outline: 0 !important;
overflow: hidden !important;
pointer-events: none;
position: relative !important;
width: auto;
z-index: 1;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .slider-placeholder .item-placeholder:before {
animation: loading__animation 1.5s ease-in-out infinite;
background-image: linear-gradient(90deg, #B4B4B4, #f0f0f0, #B4B4B4);
background-repeat: no-repeat;
content: " ";
display: block;
height: 100%;
left: 0;
position: absolute;
right: 0;
top: 0;
transform: translateX(-100%);
}
@keyframes loading__animation {
to {
transform: translateX(100%);
}
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .slider-placeholder .irs-handle {
border-radius: 100%;
border: 4px solid #ebebeb;
background-color: #ebebeb;
top: calc(50% - 9px);
z-index: 2;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .slider-placeholder .irs-handle.from {
left: 0;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .slider-placeholder .irs-handle.to {
right: 0;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .filter-items {
margin-bottom: 0;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .filter-items .filter-item {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .filter-items input {
cursor: not-allowed;
pointer-events: none;
vertical-align: middle;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .filter-items .item-placeholder {
height: 1em;
vertical-align: middle;
cursor: none;
background-color: #B4B4B4 !important;
border: 0 !important;
border-radius: 4px;
box-shadow: none;
color: #B4B4B4 !important;
display: block;
max-width: 100% !important;
opacity: 0.15;
outline: 0 !important;
overflow: hidden !important;
pointer-events: none;
position: relative !important;
width: auto;
z-index: 1;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder .filter-items .item-placeholder:before {
animation: loading__animation 1.5s ease-in-out infinite;
background-image: linear-gradient(90deg, #B4B4B4, #f0f0f0, #B4B4B4);
background-repeat: no-repeat;
content: " ";
display: block;
height: 100%;
left: 0;
position: absolute;
right: 0;
top: 0;
transform: translateX(-100%);
}
@keyframes loading__animation {
to {
transform: translateX(100%);
}
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder.checkbox-design .item-placeholder, .yith-wcan-filters .yith-wcan-filter.filter-placeholder.radio-design .item-placeholder, .yith-wcan-filters .yith-wcan-filter.filter-placeholder.filter-price-range .item-placeholder, .yith-wcan-filters .yith-wcan-filter.filter-placeholder.filter-orderby .item-placeholder, .yith-wcan-filters .yith-wcan-filter.filter-placeholder.filter-review .item-placeholder, .yith-wcan-filters .yith-wcan-filter.filter-placeholder.filter-stock-sale .item-placeholder {
flex: auto;
display: inline-block;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder.label-design .filter-items {
font-size: inherit;
display: flex;
flex-wrap: wrap;
column-gap: 5px;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder.label-design .filter-items .filter-item {
display: block;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder.label-design .filter-items .filter-item:nth-child(1) {
width: calc(40% - 5px);
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder.label-design .filter-items .filter-item:nth-child(2) {
width: calc(25% - 5px);
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder.label-design .filter-items .filter-item:nth-child(3) {
width: calc(35% - 5px);
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder.label-design .filter-items .filter-item:nth-child(4) {
width: calc(30% - 5px);
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder.label-design .filter-items .filter-item .item-placeholder {
height: 2em;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder.color-design .filter-items .filter-item {
border-radius: var(--yith-wcan-color_swatches_border_radius, 4px);
display: inline-block;
height: calc(var(--yith-wcan-color_swatches_size, 45px) + 4px);
margin-right: 15px;
vertical-align: middle;
width: calc(var(--yith-wcan-color_swatches_size, 45px) + 4px);
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder.color-design .filter-items .filter-item .item-placeholder {
height: 100%;
}
.yith-wcan-filters .yith-wcan-filter.filter-placeholder.text-design .filter-items .filter-item {
display: block;
margin-bottom: 25px;
}
.yith-wcan-filters.custom-style span.checkboxbutton {
position: relative;
}
.yith-wcan-filters.custom-style span.checkboxbutton input[type=checkbox] {
bottom: 0;
cursor: pointer;
height: 20px;
left: 0;
opacity: 0;
position: absolute;
right: 0;
width: 20px;
}
.yith-wcan-filters.custom-style span.checkboxbutton:before {
content: "";
display: inline-block;
width: 20px;
height: 20px;
background: #ffffff;
border: 1px solid #D7D7D7;
border-radius: 4px;
margin-right: 10px;
text-align: center;
line-height: 23px;
font-size: 17px;
vertical-align: middle;
cursor: pointer;
margin-bottom: 5px;
transition: background-color ease 0.3s;
}
.yith-wcan-filters.custom-style span.checkboxbutton.checked:before {
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/check.svg) !important;
background-size: 65%;
background-position: center center;
background-repeat: no-repeat !important;
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
border-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
color: #ffffff;
content: "";
}
.yith-wcan-filters.custom-style span.radiobutton {
position: relative;
}
.yith-wcan-filters.custom-style span.radiobutton input[type=radio] {
bottom: 0;
cursor: pointer;
height: 23px;
left: 0;
opacity: 0;
position: absolute;
right: 0;
width: 23px;
}
.yith-wcan-filters.custom-style span.radiobutton:before {
content: "";
background: #ffffff;
background-clip: content-box;
border: 1px solid #D7D7D7;
border-radius: 100%;
cursor: pointer;
display: inline-block;
font-size: 20px;
height: 20px;
line-height: 20px;
padding: 2px;
margin-bottom: 5px;
margin-right: 10px;
text-align: center;
vertical-align: middle;
width: 20px;
}
.yith-wcan-filters.custom-style span.radiobutton.checked:before {
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
background-clip: content-box !important;
}
.yith-wcan-filters.custom-style .star-rating {
color: #e3a405;
}
.yith-wcan-filters.custom-style .yith-wcan-filter.filter-placeholder span.checkboxbutton:before,
.yith-wcan-filters.custom-style .yith-wcan-filter.filter-placeholder span.radiobutton:before {
border: 1px solid #B4B4B4;
background-color: #B4B4B4;
opacity: 0.15;
}
.yith-wcan-filters .apply-filters {
margin-top: 15px;
}
.yith-wcan-filters.filters-modal {
bottom: 0;
box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.4);
left: 0;
margin: 0;
position: fixed;
right: 0;
top: 0;
transform: translate(-100%, 0);
transition: 0.3s transform cubic-bezier(0.645, 0.045, 0.355, 1);
z-index: 1002;
}
.yith-wcan-filters.filters-modal h3 {
background: #eee;
font-size: 1.2em;
height: 60px;
left: 0;
line-height: 60px;
margin: 0;
position: absolute;
right: 0;
text-align: center;
top: 0;
z-index: 1007;
}
.yith-wcan-filters.filters-modal h3.mobile-only {
display: block;
}
.yith-wcan-filters.filters-modal .filters-container {
height: calc(100% - 65px);
margin-top: 65px;
overflow-y: scroll;
padding: 20px;
}
.yith-wcan-filters.filters-modal .filters-container::-webkit-scrollbar {
-webkit-appearance: none;
width: 6px;
}
.yith-wcan-filters.filters-modal .filters-container::-webkit-scrollbar-thumb {
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
border-radius: 4px;
}
.yith-wcan-filters.filters-modal .filters-container > .clear-selection {
cursor: pointer;
display: inline-block;
margin-bottom: 20px;
}
.yith-wcan-filters.filters-modal.with-filter-button .filters-container {
height: calc(100% - 130px);
}
.yith-wcan-filters.filters-modal .yith-wcan-filter {
border: 1px solid #D7D7D7;
border-radius: 4px;
margin-bottom: 15px;
padding: 15px;
}
.yith-wcan-filters.filters-modal .yith-wcan-filter .filter-title {
margin: 0;
}
.yith-wcan-filters.filters-modal .yith-wcan-filter .filter-title.collapsable:after {
right: 5px;
}
.yith-wcan-filters.filters-modal .yith-wcan-filter .filter-content {
margin-top: 15px;
}
.yith-wcan-filters.filters-modal.open {
display: block;
opacity: 1;
transform: translate(0, 0);
}
.yith-wcan-filters.filters-modal .close-button {
color: var(--yith-wcan-anchors_style_text, #434343);
cursor: pointer;
font-size: 1.5em;
height: 35px;
line-height: 1;
position: absolute;
text-align: center;
text-decoration: none;
right: 20px;
top: 15px;
vertical-align: middle;
width: 35px;
z-index: 1008;
}
.yith-wcan-filters.filters-modal .close-button:hover {
color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
}
.yith-wcan-filters.filters-modal .main-modal-button {
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
border-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
border-radius: 0;
bottom: 0;
display: none;
height: 60px;
line-height: 60px;
left: 0;
margin: 0;
padding: 0;
position: fixed;
right: 0;
width: 100%;
}
.yith-wcan-filters.horizontal:not(.filters-modal) {
text-align: left;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter {
display: inline-block;
margin-bottom: 8px;
min-width: 200px;
position: relative;
vertical-align: top;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter .filter-title.collapsable {
border: 1px solid #D7D7D7;
border-radius: 4px;
font-weight: 400;
margin-top: 0;
margin-bottom: 10px;
margin-right: 15px;
padding: 10px 40px 10px 20px;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter .filter-title.collapsable:after {
right: 15px;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter .filter-title.collapsable span.filter-count {
border: 2px solid var(--yith-wcan-filters_colors_accent, #4e8ba2);
padding: 0 5px;
font-size: 0.8em;
margin: 0 10px;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter .filter-title.collapsable.opened, .yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter .filter-title.collapsable.opened + .filter-content {
border: 1px solid rgba(var(--yith-wcan-filters_colors_accent_r, 73), var(--yith-wcan-filters_colors_accent_g, 139), var(--yith-wcan-filters_colors_accent_b, 162), 0.3);
box-shadow: 0 0 7px 0 rgba(var(--yith-wcan-filters_colors_accent_r, 73), var(--yith-wcan-filters_colors_accent_g, 139), var(--yith-wcan-filters_colors_accent_b, 162), 0.3);
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter .filter-title.collapsable + .filter-content {
background-color: #fff;
border: 1px solid #D7D7D7;
border-radius: 4px;
min-width: 300px;
position: absolute;
padding: 20px;
width: 100%;
z-index: 1001;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter .filter-title.collapsable + .filter-content .filter-content-footer {
background-color: #f0f0f0;
margin: 20px -20px -20px;
padding: 15px 20px;
text-align: right;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter .filter-title.collapsable + .filter-content .filter-content-footer .apply-filters {
margin: 0;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter .filter-title.collapsable + .filter-content .filter-content-footer .clear-selection {
background: #CBCBCB;
border-color: #CBCBCB;
color: #434343;
margin-bottom: 0;
margin-right: 15px;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter .filter-content > .filter-items {
max-height: 200px;
overflow-y: scroll;
overflow-x: hidden;
padding: 5px 2px 0 0;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter .filter-content > .filter-items::-webkit-scrollbar {
-webkit-appearance: none;
width: 6px;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter .filter-content > .filter-items::-webkit-scrollbar-thumb {
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
border-radius: 4px;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter.label-design .filter-items {
padding-top: 8px;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter .dropdown-wrapper .search-field-container {
margin-bottom: 20px;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter .dropdown-wrapper .search-field-container input {
width: 100%;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter .dropdown-wrapper .matching-items a {
cursor: pointer;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter.filter-placeholder .filter-title {
visibility: hidden;
height: 0;
margin: 0;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter.filter-placeholder .filter-content {
height: calc(1.5em + 16px);
margin-bottom: 10px;
background-color: #B4B4B4 !important;
border: 0 !important;
border-radius: 4px;
box-shadow: none;
color: #B4B4B4 !important;
display: block;
max-width: 100% !important;
opacity: 0.15;
outline: 0 !important;
overflow: hidden !important;
pointer-events: none;
position: relative !important;
width: auto;
z-index: 1;
cursor: pointer;
position: relative;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter.filter-placeholder .filter-content:before {
animation: loading__animation 1.5s ease-in-out infinite;
background-image: linear-gradient(90deg, #B4B4B4, #f0f0f0, #B4B4B4);
background-repeat: no-repeat;
content: " ";
display: block;
height: 100%;
left: 0;
position: absolute;
right: 0;
top: 0;
transform: translateX(-100%);
}
@keyframes loading__animation {
to {
transform: translateX(100%);
}
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter.filter-placeholder .filter-content:after {
background-size: 100% auto;
content: "";
display: block;
height: 10px;
position: absolute;
right: 15px;
top: calc(50% - 5px);
width: 10px;
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter.filter-placeholder .filter-content.closed:after, .yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter.filter-placeholder .filter-content:not(.opened):after, .yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter.filter-placeholder .filter-content:not(.open):after {
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/arrow-down.svg);
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter.filter-placeholder .filter-content.open:after, .yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter.filter-placeholder .filter-content.opened:after {
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/arrow-up.svg);
}
.yith-wcan-filters.horizontal:not(.filters-modal) .yith-wcan-filter.filter-placeholder .filter-content * {
display: none;
}
.yith-wcan-filters.horizontal:not(.filters-modal) form > .apply-filters {
margin-top: 0;
}
body.admin-bar .yith-wcan-filters.filters-modal {
top: 32px;
}
body.yith-wcan-preset-modal-open:after {
background: rgba(0, 0, 0, 0.5);
bottom: 0;
content: "";
display: block;
left: 0;
pointer-events: none;
position: fixed;
right: 0;
top: 0;
z-index: 1001;
}
body.yith-wcan-preset-modal-open:after.admin-bar {
top: 32px;
}
body.rtl .yith-wcan-filters .yith-wcan-filter .filter-items.level-0 ul {
padding-left: 0;
padding-right: 15px;
}
body.rtl .yith-wcan-filters .yith-wcan-filter .filter-title.collapsable:after {
left: 5px;
right: auto;
}
@media (max-width: 991px) {
body.filters-in-modal .yith-wcan-filters {
display: none;
}
}
@media (max-width: 782px) {
body.admin-bar .yith-wcan-filters.filters-modal {
top: 46px;
}
} .yith-wcan-active-filters {
font-size: 0.8em;
margin-bottom: 20px;
}
.yith-wcan-active-filters .active-filter {
display: inline-block;
margin-bottom: 5px;
margin-right: 15px;
}
.yith-wcan-active-filters .active-filter b {
display: inline-block;
margin-right: 15px;
}
.yith-wcan-active-filters .active-filter .active-filter-label {
border: 1px solid var(--yith-wcan-filters_colors_accent, #4e8ba2);
border-radius: 5px;
color: var(--yith-wcan-anchors_style_text, #434343);
cursor: pointer;
display: inline-block;
font-size: 13px;
font-weight: 400;
line-height: 1.5;
margin-right: 5px;
margin-bottom: 0;
padding: 4px 15px 3px;
position: relative;
text-decoration: none;
position: relative;
}
.yith-wcan-active-filters .active-filter .active-filter-label:after {
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/close.svg);
background-position: center;
background-repeat: no-repeat;
background-size: 60%;
border-radius: 100%;
color: #fff;
content: "";
font-size: 16px;
height: 15px;
line-height: 15px;
position: absolute;
right: -5px;
text-align: center;
text-decoration: none;
top: -5px;
width: 15px;
}
.yith-wcan-active-filters .active-filter .active-filter-label .star-rating {
display: inline-block;
line-height: 1.4;
margin-right: 10px;
vertical-align: middle;
margin-right: 0;
}
.yith-wcan-active-filters.no-titles .active-filter {
margin-right: 0;
}
.yith-wcan-active-filters.custom-style .star-rating {
color: #e3a405;
}
.yith-wcan-active-filters .reset-filters {
border: 1px solid var(--yith-wcan-filters_colors_accent, #4e8ba2);
border-radius: 5px;
color: var(--yith-wcan-anchors_style_text, #434343);
cursor: pointer;
display: inline-block;
font-size: 13px;
font-weight: 400;
line-height: 1.5;
margin-right: 5px;
margin-bottom: 0;
padding: 4px 15px 3px;
position: relative;
text-decoration: none;
background-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
color: #fff;
}
.yith-wcan-active-filters .reset-filters:hover {
background-color: rgb(calc(var(--yith-wcan-filters_colors_accent_r, 73) * 0.8), calc(var(--yith-wcan-filters_colors_accent_g, 139) * 0.8), calc(var(--yith-wcan-filters_colors_accent_b, 162) * 0.8));
border-color: rgb(calc(var(--yith-wcan-filters_colors_accent_r, 73) * 0.8), calc(var(--yith-wcan-filters_colors_accent_g, 139) * 0.8), calc(var(--yith-wcan-filters_colors_accent_b, 162) * 0.8));
} .yith-wcan-filters-opener {
border: 1px solid #D7D7D7;
border-radius: 4px;
background: #fff;
color: var(--yith-wcan-anchors_style_text, #434343);
display: none;
outline-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
}
.yith-wcan-filters-opener i.filter-icon {
background-image: url(//vps2.vinhedo.oci.flycomp.cloud/wp-content/plugins/yith-woocommerce-ajax-navigation/assets/images/filters.svg);
background-position: center center;
background-size: 100% auto;
background-repeat: no-repeat;
display: inline-block;
height: 15px;
margin-right: 2px;
vertical-align: middle;
width: 15px;
}
.yith-wcan-filters-opener:hover {
background: var(--yith-wcan-filters_colors_accent, #4e8ba2);
border-color: var(--yith-wcan-filters_colors_accent, #4e8ba2);
color: #fff;
}
.yith-wcan-filters-opener:hover i.filter-icon {
filter: brightness(0) invert(1);
}