:root {
--berkei-swatch-border:        2px solid #ccc;
--berkei-swatch-selected-bg:   #177797;
--berkei-swatch-selected-border: #177797;
--berkei-swatch-hover-border:  #177797;
--berkei-swatch-unavail-opacity: 0.35;
--berkei-swatch-radius:        6px;
--berkei-swatch-gap:           6px;
} .berkei-swatches-container {
display: flex !important;
flex-wrap: wrap;
gap: var(--berkei-swatch-gap);
align-items: center;
margin: 0;
padding: 0;
}
table.variations td.value .berkei-swatches-container {
list-style: none;
width: 100%;
} .berkei-swatch { display: inline-flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
margin: 0;
padding: 5px 10px;
cursor: pointer;
border: var(--berkei-swatch-border);
border-radius: var(--berkei-swatch-radius);
background: #fff;
color: #333;
font-size: 0.9rem;
font-weight: 500;
line-height: 1.2;
text-align: center;
transition: border-color 0.12s ease, background 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
box-shadow: 0 1px 2px rgba(0,0,0,0.05);
user-select: none;
outline: none;
position: relative;
overflow: hidden;
} .berkei-swatch--color {
padding: 0;
border-radius: var(--berkei-swatch-radius);
border: 2px solid rgba(0,0,0,0.12);
} .berkei-swatch--image {
padding: 0;
overflow: hidden;
background: transparent;
border: var(--berkei-swatch-border);
}
.berkei-swatch--image img {
display: block;
pointer-events: none;
} .berkei-swatch--label {
min-width: 36px;
} .berkei-swatch:hover:not(.berkei-swatch--unavailable) {
border-color: var(--berkei-swatch-hover-border);
background: color-mix(in srgb, var(--berkei-swatch-hover-border) 10%, #fff);
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
} .berkei-swatch--color:hover:not(.berkei-swatch--unavailable),
.berkei-swatch--image:hover:not(.berkei-swatch--unavailable) {
border-color: var(--berkei-swatch-hover-border);
background: inherit;
box-shadow: 0 0 0 2px color-mix(in srgb, var(--berkei-swatch-hover-border) 30%, transparent);
} .berkei-swatch--selected.berkei-swatch--label {
background: var(--berkei-swatch-selected-bg);
border-color: var(--berkei-swatch-selected-border);
color: #fff;
box-shadow: 0 2px 6px color-mix(in srgb, var(--berkei-swatch-selected-bg) 30%, transparent);
}
.berkei-swatch--selected.berkei-swatch--color,
.berkei-swatch--selected.berkei-swatch--image {
border-color: var(--berkei-swatch-selected-border);
border-width: 3px;
box-shadow: 0 0 0 2px color-mix(in srgb, var(--berkei-swatch-selected-bg) 40%, transparent);
} .berkei-swatch--unavailable {
opacity: var(--berkei-swatch-unavail-opacity);
cursor: not-allowed;
position: relative;
} .berkei-swatch--unavailable.berkei-swatch--label::after {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 1px;
background: currentColor;
opacity: 0.4;
transform: rotate(-10deg);
} .berkei-loop-swatches {
display: flex;
flex-wrap: wrap;
gap: 4px;
margin-top: 6px;
padding: 0;
}
.berkei-loop-swatch-group {
display: flex;
flex-wrap: wrap;
gap: 3px;
}
.berkei-loop-swatches .berkei-swatch {
box-shadow: none;
} @media (max-width: 782px) {
.berkei-swatch {
font-size: 0.82rem;
padding: 4px 8px;
}
.variations_form table.variations td.value .berkei-swatch {
min-width: 28px !important;
min-height: 28px !important;
padding: 2px 6px !important;
font-size: 0.78rem;
}
.variations_form table.variations td.value .berkei-swatch--image img {
width: 100% !important;
height: 100% !important;
}
.berkei-swatches-container {
gap: 4px;
align-items: flex-start;
}
}.berkei-progress-bar-wrap {
margin: 16px 0 24px;
padding: 16px 20px;
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.berkei-progress-inner {
max-width: 100%;
min-height: 20px;
} .berkei-progress-track {
position: relative;
height: 12px;
background: #e5e7eb;
border-radius: 6px;
overflow: visible;
margin: 42px 48px 32px 28px;
}
.berkei-progress-fill {
position: absolute;
top: 0;
left: 0;
height: 100%;
border-radius: 6px;
transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease;
box-shadow: 0 0 8px rgba(102, 126, 234, 0.3);
}
.berkei-progress-fill--active {
border-radius: 0 6px 6px 0;
box-shadow: none;
} .berkei-progress-milestone {
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
z-index: 2;
}
.berkei-progress-milestone-dot {
display: flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
background: #fff;
border: 3px solid #d1d5db;
border-radius: 50%;
font-size: 11px;
color: transparent;
transition: all 0.4s ease;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.berkei-progress-milestone.reached .berkei-progress-milestone-dot {
background: #22c55e;
border-color: #22c55e;
color: #fff;
box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}
.berkei-progress-milestone-label {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
margin-top: 6px;
font-size: 11px;
font-weight: 600;
color: #6b7280;
white-space: nowrap;
}
.berkei-progress-milestone.reached .berkei-progress-milestone-label {
color: #22c55e;
}
.berkei-progress-milestone-reward {
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
margin-bottom: 9px;
font-size: 10px;
line-height: 1.2;
font-weight: 600;
color: #6b7280;
background: #f3f4f6;
border: 1px solid #d1d5db;
border-radius: 999px;
padding: 2px 8px;
white-space: nowrap;
}
.berkei-progress-milestone.reached .berkei-progress-milestone-reward {
color: #065f46;
background: #d1fae5;
border-color: #6ee7b7;
} .berkei-progress-status {
text-align: center;
font-size: 14px;
color: #374151;
margin-top: 4px;
}
.berkei-progress-complete {
font-size: 16px;
font-weight: 700;
color: #22c55e;
}
.berkei-progress-message strong {
color: #667eea;
font-size: 15px;
}
.berkei-progress-message em {
font-style: normal;
font-weight: 600;
} .berkei-progress-suggestion {
margin-top: 12px;
padding: 10px 14px;
background: #fefce8;
border: 1px solid #fde68a;
border-radius: 8px;
font-size: 13px;
color: #92400e;
text-align: center;
}
.berkei-progress-suggestion a {
color: #92400e;
font-weight: 600;
text-decoration: underline;
}
.berkei-progress-suggestion a:hover {
color: #78350f;
}
.berkei-progress-suggestion em {
font-style: normal;
font-weight: 700;
}
.berkei-progress-suggestion-icon {
font-size: 16px;
}
.berkei-progress-suggestion-thumb {
width: 24px;
height: 24px;
border-radius: 4px;
vertical-align: middle;
margin-right: 4px;
object-fit: cover;
} .berkei-confetti-canvas {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
pointer-events: none;
z-index: 99999;
} .berkei-hunt-egg {
transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}
.berkei-hunt-egg img {
display: block;
pointer-events: none;
}
.berkei-hunt-egg:not(.found):hover {
transform: scale(1.2) !important;
opacity: 1 !important;
} @keyframes berkeiHuntFloat {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-6px); }
}
.berkei-hunt-egg-float {
animation: berkeiHuntFloat 3s ease-in-out infinite;
} .berkei-hunt-hint {
background: linear-gradient(135deg, #fef9c3, #fde68a);
color: #78350f;
padding: 10px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
margin-bottom: 16px;
text-align: center;
border: 1px solid #fbbf24;
}
.berkei-hunt-hint-icon {
font-size: 18px;
vertical-align: middle;
}
.berkei-hunt-hint-count {
font-weight: 700;
color: #92400e;
} .berkei-hunt-message {
position: fixed;
bottom: 30px;
left: 50%;
transform: translateX(-50%) translateY(20px);
background: #1f2937;
color: #fff;
padding: 14px 24px;
border-radius: 10px;
font-size: 15px;
font-weight: 500;
z-index: 99998;
opacity: 0;
transition: opacity 0.3s ease, transform 0.3s ease;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
pointer-events: none;
max-width: 90%;
text-align: center;
}
.berkei-hunt-message.visible {
opacity: 1;
transform: translateX(-50%) translateY(0);
pointer-events: auto;
}
.berkei-hunt-message.success {
background: linear-gradient(135deg, #22c55e, #16a34a);
font-size: 16px;
}
.berkei-hunt-message a,
.berkei-hunt-message a:visited {
color: #93c5fd !important;
text-decoration: underline;
pointer-events: auto;
}
.berkei-hunt-message a:hover {
color: #bfdbfe !important;
}
.berkei-hunt-message.success a,
.berkei-hunt-message.success a:visited {
color: #ecfccb !important;
}
.berkei-hunt-message.success a:hover {
color: #fff !important;
} @media (max-width: 600px) {
.berkei-progress-bar-wrap {
padding: 12px 14px;
}
.berkei-progress-milestone-label {
font-size: 9px;
}
.berkei-progress-milestone-dot {
width: 20px;
height: 20px;
font-size: 9px;
}
.berkei-progress-suggestion {
font-size: 12px;
}
}:root {
--wp--custom--spacing--small: var(--wp--preset--spacing--30, clamp(1.5rem, 5vw, 2rem));
--wp--custom--spacing--medium: var(--wp--preset--spacing--50, clamp(2.5rem, 8vw, 4rem));
--wp--custom--spacing--large: var(--wp--preset--spacing--60, clamp(2.5rem, 8vw, 6rem));
--wp--custom--spacing--outer: max(1.25rem, 4vw);
--wp--preset--spacing--80: min(8rem, 12vw);
} html {
scroll-behavior: smooth;
} body {
-moz-osx-font-smoothing: var(--wp--custom--typography--font-smoothing--moz, auto);
-webkit-font-smoothing: var(--wp--custom--typography--font-smoothing--webkit, auto);
} a {
text-decoration-style: var(--wp--custom--elements--link--static--text-decoration-style, solid);
text-decoration-thickness: var(--wp--custom--elements--link--text-decoration-thickness, 1px);
text-underline-offset: var(--wp--custom--elements--link--text-underline-offset, 0.25ch);
}
a:hover,
a:focus {
text-decoration-style: var(--wp--custom--elements--link--interactive--text-decoration-style, dashed);
}
:where(.wp-site-blocks *:focus) {
outline-width:1px;
outline-style:solid
}
a:active {
text-decoration: none;
} @media (min-width: 600px) {
.site-logo-title {
display:none
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item, 
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container, 
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list {
align-items: flex-start !important;
}
}
@media (max-width: 600px) {
.has-modal-open .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item, 
.has-modal-open .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container, 
.has-modal-open .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list {
align-items: flex-start !important;
}
}
.wp-block-navigation__responsive-container.has-modal-open.is-menu-open .site-logo-title {
display: flex;
flex-wrap: nowrap;
max-width: 100%;
align-items: center;
gap: 0.5rem;
padding-bottom: var(--wp--preset--spacing--30);
position: relative;
padding-inline-end: 52px;
}
.wp-block-navigation__responsive-container.has-modal-open.is-menu-open .site-logo-title::after {
content: "";
position: absolute;
left: calc(-1 * var(--wp--preset--spacing--30));
right: calc(-1 * var(--wp--preset--spacing--30));
bottom: 0;
height: 1px;
background: #8080801d;
}
.wp-block-navigation__responsive-container.has-modal-open.is-menu-open .site-logo-title img {
max-height: 42px !important;
height: auto !important;
width: auto !important;
}
.wp-block-navigation__responsive-container.has-modal-open.is-menu-open .site-logo-title .site-title {
font-size: 1.25rem;
font-weight: 700;
color: var(--wp--preset--color--foreground);
text-transform: uppercase;
letter-spacing: -0.02em;
box-sizing: border-box;
line-height: 1.15;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
padding-top: var(--wp--preset--spacing--30);
}
.has-modal-open .wp-block-navigation__responsive-container-close {
background-color:var(--wp--preset--color--tertiary);
padding: 0.625rem;
border-radius: 100%;
top: -2.5px !important;
}
.has-modal-open .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
gap: 0 !important;
width: 100%;
}
.has-modal-open .wp-block-navrigation__containe, .has-modal-open .wp-block-navigation__container ul {
row-gap: 0.75rem !important;
width: -webkit-fill-available;
max-width: 100%;
}
.has-modal-open .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > ul.wp-block-navigation__container > li.wp-block-navigation-item:not(.wp-block-navigation__submenu-container) {
border-bottom: 1px solid #8080801d;
padding-top: 0.75rem;
padding-bottom: 0.75rem;
width: -webkit-fill-available;
max-width: 100%;
}
.has-modal-open .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container {
padding: 0.75rem 0.75rem 0 0.75rem !important;
gap: 0.75rem !important;
}
.has-modal-open .wp-block-navigation__responsive-dialog ul.wp-block-navigation__container > li:not(.wp-block-navigation__submenu-container) > a.wp-block-navigation-item__content {
font-size: 1.25rem;
font-weight: 600;
}
.has-modal-open .wp-block-navigation__submenu-container {
padding-top: 0.75rem !important;
}
.has-modal-open .wp-block-navigation__responsive-dialog ul.wp-block-navigation__container .wp-block-navigation-submenu .wp-block-navigation-item a {
font-size: 1rem !important;
}
.wp-block-navigation .wp-block-navigation-item a:hover,
.wp-block-navigation .wp-block-navigation-item a:focus {
text-decoration: underline;
text-decoration-style: solid;
} nav .wp-block-pages-list__item.wp-block-navigation-item.menu-item-home {
display: none;
} .wp-block-navigation__responsive-container.is-menu-open {
padding-top: var(--wp--preset--spacing--30);
padding-bottom: var(--wp--preset--spacing--30);
padding-right: var(--wp--preset--spacing--30);
padding-left: var(--wp--preset--spacing--30);
}  .wp-element-button {
transition: background-color 0.15s ease;
}
.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background):hover,
.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
background-color: rgba(159, 159, 159, 0.2);
} .wp-block-table.is-style-stripes tbody tr:nth-child(odd){
background-color: var(--wp--custom--blocks--core-table--variant-stripes--color--background, var(--wp--preset--color--tertiary));
}  footer.wp-block-template-part:not([style*="margin-top"]) {
margin-top: 0;
} blockquote:is(.is-style-plain) {
border: none;
padding-left: 0;
} :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
border-color: var(--wp--custom--elements--input--border--color);
border-radius: var(--wp--custom--elements--button--border--radius);
border-width: var(--wp--custom--elements--input--border--width);
}
:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input {
border-color: transparent;
}
.wp-block-search .wp-block-search__input {
border-radius: var(--wp--custom--elements--button--border--radius);
} .wp-block-image[style*="-radius"]:not([style*="overflow"]) { overflow: hidden } .block-editor-block-list__block.wp-block.is-default-size.wp-block-site-logo .components-resizable-box__container,
.wp-block-site-logo.is-default-size img {
max-height: 42px !important;
height: auto !important;
width: auto !important;
} .wp-block-site-logo img[src*="extendify-demo-"],
.wp-block-site-logo img[src*="ext-custom-logo-"] {
filter: var(--wp--preset--duotone--primary-foreground);
} @media (prefers-reduced-motion: reduce) {
html:focus-within {
scroll-behavior: auto;
}
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
} input, textarea {
caret-color: inherit;
outline-color: inherit;
} :where(.wp-block-post-comments-form) input:not([type=submit]),
:where(.wp-block-post-comments-form) textarea {
background-color: var(--wp--preset--color--background);
color: var(--wp--preset--color--foreground);
border-color: inherit;
} .woocommerce-Tabs-panel--description h2, .woocommerce-Reviews-title {
font-size: var(--wp--preset--font-size--medium);
}
.wp-block-button.wc-block-components-product-button {
flex-direction: row;
flex-wrap: wrap;
justify-content: start;
gap: 1rem;
}
.wp-block-button.wc-block-components-product-button a.added_to_cart {
margin-top: 0;
}
.woocommerce-checkout.woocommerce-page header.wp-block-template-part nav.wp-block-navigation {
visibility: hidden;
}
.wp-site-blocks .wp-block-group.woocommerce.product {
margin-top: 0;
margin-bottom: 0; 
}
.wc-block-product-template__responsive {
grid-row-gap: 2rem;
}
.wc-block-components-product-button__button {
z-index: 1;
} .sticky-header-offset-container .entry-content > .wp-block-group {
scroll-margin-top: var(--wp--preset--spacing--60);
} :not(.block-editor-block-preview__content-iframe)
.has-tertiary-background-color.has-background 
[class*='is-style-ext-preset--group--'][class*='item-card-1']:not(.has-background)
{
background-color: var(--wp--preset--color--background);
}
:not(.block-editor-block-preview__content-iframe)
.has-tertiary-background-color.has-background 
[class*='is-style-ext-preset--group--'][class*='item-card-1']:not(.has-background)::before {
background-color: var(--wp--preset--color--background) !important;
}
:not(.block-editor-block-preview__content-iframe)
.has-tertiary-background-color.has-background 
[class*='is-style-ext-preset--image--']:not(.has-background)::before {
background-color: var(--wp--preset--color--tertiary) !important;
}
:not(.block-editor-block-preview__content-iframe)
.has-tertiary-background-color.has-background 
[class*='is-style-ext-preset--group--'][class*='item-card-1']::before,:not(.block-editor-block-preview__content-iframe)
.has-tertiary-background-color.has-background 
[class*='is-style-ext-preset--media-text--']:before {
background-color: var(--wp--preset--color--background) !important;
}
.block-editor-block-preview__content-iframe 
[class*='is-style-ext-preset--group--natural-1'][class*='item-card-1'] {
background-color: transparent !important;
}
:root {
--grid-vector-bg: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTQ0MCAxMDI0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxnIG9wYWNpdHk9IjAuMDkiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2Utb3BhY2l0eT0iMC43IiBzdHJva2Utd2lkdGg9IjEuMjYwNyI+CiAgICA8bGluZSB4MT0iLTUwLjYxNzIiIHkxPSI2MjQuOTk1IiB4Mj0iMTQ2MC45NiIgeTI9IjYyNC45OTUiIC8+CiAgICA8bGluZSB4MT0iLTUwLjYxNzIiIHkxPSI5NDcuNzMzIiB4Mj0iMTQ2MC45NiIgeTI9Ijk0Ny43MzMiIC8+CiAgICA8bGluZSB4MT0iLTUwLjYxNzIiIHkxPSIzMDIuMjU2IiB4Mj0iMTQ2MC45NiIgeTI9IjMwMi4yNTYiIC8+CiAgICA8bGluZSB4MT0iLTUwLjYxNzIiIHkxPSI0NjMuNjI0IiB4Mj0iMTQ2MC45NiIgeTI9IjQ2My42MjQiIC8+CiAgICA8bGluZSB4MT0iLTUwLjYxNzIiIHkxPSI3ODYuMzYyIiB4Mj0iMTQ2MC45NiIgeTI9Ijc4Ni4zNjIiIC8+CiAgICA8bGluZSB4MT0iLTUwLjYxNzIiIHkxPSIxNDAuODg1IiB4Mj0iMTQ2MC45NiIgeTI9IjE0MC44ODUiIC8+CiAgICA8bGluZSB4MT0iLTUwLjYxNzIiIHkxPSI1NDQuMzExIiB4Mj0iMTQ2MC45NiIgeTI9IjU0NC4zMTEiIC8+CiAgICA8bGluZSB4MT0iLTUwLjYxNzIiIHkxPSI4NjcuMDQ5IiB4Mj0iMTQ2MC45NiIgeTI9Ijg2Ny4wNDkiIC8+CiAgICA8bGluZSB4MT0iLTUwLjYxNzIiIHkxPSIyMjEuNTczIiB4Mj0iMTQ2MC45NiIgeTI9IjIyMS41NzMiIC8+CiAgICA8bGluZSB4MT0iLTUwLjYxNzIiIHkxPSIzODIuOTQiIHgyPSIxNDYwLjk2IiB5Mj0iMzgyLjk0IiAvPgogICAgPGxpbmUgeDE9Ii01MC42MTcyIiB5MT0iNzA1LjY4MiIgeDI9IjE0NjAuOTYiIHkyPSI3MDUuNjgyIiAvPgogICAgPGxpbmUgeDE9Ii01MC42MTcyIiB5MT0iNjAuMjAxNyIgeDI9IjE0NjAuOTYiIHkyPSI2MC4yMDE3IiAvPgogICAgPGxpbmUgeDE9IjY0Mi4xMzgiIHkxPSItNDguODQ3NyIgeDI9IjY0Mi4xMzgiIHkyPSIxMTE4LjU2IiAvPgogICAgPGxpbmUgeDE9IjMxOS4zOTgiIHkxPSItNDguODQ3NyIgeDI9IjMxOS4zOTgiIHkyPSIxMTE4LjU2IiAvPgogICAgPGxpbmUgeDE9Ijk2NC44NzQiIHkxPSItNDguODQ3NyIgeDI9Ijk2NC44NzQiIHkyPSIxMTE4LjU2IiAvPgogICAgPGxpbmUgeDE9IjEyODcuNjEiIHkxPSItNDguODQ3NyIgeDI9IjEyODcuNjEiIHkyPSIxMTE4LjU2IiAvPgogICAgPGxpbmUgeDE9IjE1OC4wMjgiIHkxPSItNDguODQ3NyIgeDI9IjE1OC4wMjgiIHkyPSIxMTE4LjU2IiAvPgogICAgPGxpbmUgeDE9IjgwMy41MDQiIHkxPSItNDguODQ3NyIgeDI9IjgwMy41MDQiIHkyPSIxMTE4LjU2IiAvPgogICAgPGxpbmUgeDE9IjQ4MC43NjgiIHkxPSItNDguODQ3NyIgeDI9IjQ4MC43NjgiIHkyPSIxMTE4LjU2IiAvPgogICAgPGxpbmUgeDE9IjExMjYuMjQiIHkxPSItNDguODQ3NyIgeDI9IjExMjYuMjQiIHkyPSIxMTE4LjU2IiAvPgogICAgPGxpbmUgeDE9Ijc3LjM0NTIiIHkxPSItNDguODQ3NyIgeDI9Ijc3LjM0NTEiIHkyPSIxMTE4LjU2IiAvPgogICAgPGxpbmUgeDE9IjcyMi44MjIiIHkxPSItNDguODQ3NyIgeDI9IjcyMi44MjIiIHkyPSIxMTE4LjU2IiAvPgogICAgPGxpbmUgeDE9IjQwMC4wODEiIHkxPSItNDguODQ3NyIgeDI9IjQwMC4wODEiIHkyPSIxMTE4LjU2IiAvPgogICAgPGxpbmUgeDE9IjEwNDUuNTYiIHkxPSItNDguODQ3NyIgeDI9IjEwNDUuNTYiIHkyPSIxMTE4LjU2IiAvPgogICAgPGxpbmUgeDE9IjEzNjguMyIgeTE9Ii00OC44NDc3IiB4Mj0iMTM2OC4zIiB5Mj0iMTExOC41NiIgLz4KICAgIDxsaW5lIHgxPSIyMzguNzE1IiB5MT0iLTQ4Ljg0NzciIHgyPSIyMzguNzE1IiB5Mj0iMTExOC41NiIgLz4KICAgIDxsaW5lIHgxPSI4ODQuMTkyIiB5MT0iLTQ4Ljg0NzciIHgyPSI4ODQuMTkyIiB5Mj0iMTExOC41NiIgLz4KICAgIDxsaW5lIHgxPSI1NjEuNDUxIiB5MT0iLTQ4Ljg0NzciIHgyPSI1NjEuNDUxIiB5Mj0iMTExOC41NiIgLz4KICAgIDxsaW5lIHgxPSIxMjA2LjkzIiB5MT0iLTQ4Ljg0NzciIHgyPSIxMjA2LjkzIiB5Mj0iMTExOC41NiIgLz4KICA8L2c+CiAgPGcgb3BhY2l0eT0iMC41IiBmaWxsPSJjdXJyZW50Q29sb3IiPgogICAgPHJlY3QgeD0iODAzLjU2MyIgeT0iNzg2LjMwNSIgd2lkdGg9IjgwLjIyNjIiIGhlaWdodD0iODAuMjI2MiIgZmlsbC1vcGFjaXR5PSIwLjQiIC8+CiAgICA8cmVjdCB4PSI0MDAuMTQiIHk9Ijc4Ni4zMDUiIHdpZHRoPSI4MC4yMjYyIiBoZWlnaHQ9IjgwLjIyNjIiIGZpbGwtb3BhY2l0eT0iMC4xOCIgLz4KICAgIDxyZWN0IHg9IjExMjYuNzYiIHk9IjIyMi40MyIgd2lkdGg9IjgwLjIyNjIiIGhlaWdodD0iNzkuMDgwMSIgZmlsbC1vcGFjaXR5PSIwLjA4IiAvPgogICAgPHJlY3QgeD0iNDgwLjM2NyIgeT0iNDY0LjIwMyIgd2lkdGg9IjgwLjIyNjIiIGhlaWdodD0iNzkuMDgwMSIgZmlsbC1vcGFjaXR5PSIwLjEzIiAvPgogICAgPHJlY3QgeD0iMTA0NS4zOSIgeT0iMzAyLjY1NiIgd2lkdGg9IjgwLjIyNjIiIGhlaWdodD0iNzkuMDgwMSIgZmlsbC1vcGFjaXR5PSIwLjAzIiAvPgogICAgPHJlY3QgeD0iMzk5Ljk5NCIgeT0iMjIyLjQzIiB3aWR0aD0iODAuMjI2MiIgaGVpZ2h0PSI3OS4wODAxIiBmaWxsLW9wYWNpdHk9IjAuMTMiIC8+CiAgICA8cmVjdCB4PSIxMDQ1LjM5IiB5PSIyMjIuNDMiIHdpZHRoPSI4MC4yMjYyIiBoZWlnaHQ9Ijc5LjA4MDEiIGZpbGwtb3BhY2l0eT0iMC4wOCIgLz4KICAgIDxyZWN0IHg9IjM5OS45OTQiIHk9IjQ2NC4yMDMiIHdpZHRoPSI4MC4yMjYyIiBoZWlnaHQ9Ijc5LjA4MDEiIGZpbGwtb3BhY2l0eT0iMC4xMyIgLz4KICAgIDxyZWN0IHg9IjMxOS45MTQiIHk9Ijc4Ni4zMDUiIHdpZHRoPSI4MC4yMjYyIiBoZWlnaHQ9IjgwLjIyNjIiIGZpbGwtb3BhY2l0eT0iMC4xOCIgLz4KICAgIDxyZWN0IHg9IjMxOS45MTQiIHk9Ijg2Ni41MzEiIHdpZHRoPSI4MC4yMjYyIiBoZWlnaHQ9IjgxLjM3MjMiIGZpbGwtb3BhY2l0eT0iMC4xOCIgLz4KICAgIDxyZWN0IHg9IjE1OC4zMTUiIHk9IjcwNi4wNzgiIHdpZHRoPSI4MC4yMjYyIiBoZWlnaHQ9IjgwLjIyNjIiIGZpbGwtb3BhY2l0eT0iMC4xOCIgLz4KICAgIDxyZWN0IHg9Ijk2NS4xNjIiIHk9IjYwLjgzMiIgd2lkdGg9IjgwLjIyNjIiIGhlaWdodD0iODAuMjI2MiIgZmlsbC1vcGFjaXR5PSIwLjEzIiAvPgogICAgPHJlY3QgeD0iODg0LjA1OSIgeT0iLTE5Ljg1NTUiIHdpZHRoPSI4MC4yMjYyIiBoZWlnaHQ9Ijc5LjUwNjIiIGZpbGwtb3BhY2l0eT0iMC4xMyIgLz4KICAgIDxyZWN0IHg9Ijg4NC4wNTkiIHk9IjYwLjQwMjMiIHdpZHRoPSI4MC4yMjYyIiBoZWlnaHQ9IjgwLjAyODUiIGZpbGwtb3BhY2l0eT0iMC4xMyIgLz4KICAgIDxyZWN0IHg9IjE1OC4zMTUiIHk9IjEzOS45MSIgd2lkdGg9IjgxLjM3MjMiIGhlaWdodD0iODIuNTE4NCIgZmlsbC1vcGFjaXR5PSIwLjE4IiAvPgogICAgPHJlY3QgeD0iNzYuOTQzNCIgeT0iNTkuNjgzNiIgd2lkdGg9IjgxLjM3MjMiIGhlaWdodD0iODAuMjI2MiIgZmlsbC1vcGFjaXR5PSIwLjE4IiAvPgogICAgPHJlY3QgeD0iLTMuMjgzMiIgeT0iNjAuODI4MSIgd2lkdGg9IjgxLjM3MjMiIGhlaWdodD0iODAuMjI2MiIgZmlsbC1vcGFjaXR5PSIwLjE4IiAvPgogICAgPHJlY3QgeD0iNzYuOTQzNCIgeT0iMTM5LjkxIiB3aWR0aD0iODEuMzcyMyIgaGVpZ2h0PSI4Mi41MTg0IiBmaWxsLW9wYWNpdHk9IjAuMTgiIC8+CiAgICA8cmVjdCB4PSI0MDAuMTQxIiB5PSItMjAuNTQzIiB3aWR0aD0iODEuMzcyMyIgaGVpZ2h0PSI4MC4yMjYyIiBmaWxsLW9wYWNpdHk9IjAuMiIgLz4KICAgIDxyZWN0IHg9IjE1OC4zMTUiIHk9IjMwMS41MDgiIHdpZHRoPSI4MC4yMjYyIiBoZWlnaHQ9IjgxLjM3MjMiIGZpbGwtb3BhY2l0eT0iMC4xOCIgLz4KICAgIDxyZWN0IHg9IjExMjYuNzYiIHk9IjcwNi4wNzgiIHdpZHRoPSI4MC4yMjYyIiBoZWlnaHQ9IjgwLjIyNjIiIGZpbGwtb3BhY2l0eT0iMC4xMyIgLz4KICAgIDxyZWN0IHg9IjEyMDYuOTkiIHk9Ijc4Ni4zMDUiIHdpZHRoPSI4MC4yMjYyIiBoZWlnaHQ9IjgwLjIyNjIiIGZpbGwtb3BhY2l0eT0iMC4xMyIgLz4KICA8L2c+Cjwvc3ZnPg==");
}  [class*="is-style-ext-preset--group--"][class*="--section"].has-tertiary-background-color:has(
+ .has-background-background-color > .wp-block-cover.alignfull
)::after {
content: none !important;
}
[class*="is-style-ext-preset--group--"][class*="--section"].has-tertiary-background-color:has(
+ .has-background-background-color > .wp-block-cover.alignfull
) {
margin-bottom: 0 !important;
}
[class*="is-style-ext-preset--group--"][class*="--section"].has-background-background-color:has(.wp-block-cover.alignfull)
+ .has-tertiary-background-color::before {
content: none !important;
}
[class*="is-style-ext-preset--group--"][class*="--section"].has-background-background-color:has(.wp-block-cover.alignfull)
+ .has-tertiary-background-color {
margin-top: 0 !important;
} .m-0 {
margin: 0 !important;
}
.z-0 {
z-index: 0 !important;
}
.z-10 {
z-index: 10 !important;
}
.z-20 {
z-index: 20 !important;
}
.z-30 {
z-index: 30 !important;
}
.d-none {
display: none;
}
.d-block {
display: block;
}
@media (min-width: 640px) {
.sm-d-none {
display: none;
}
.sm-d-block {
display: block;
}
}
@media (min-width: 768px) {
.md-d-none {
display: none;
}
.md-d-block {
display: block;
}
}
@media (min-width: 1024px) {
.lg-d-none {
display: none;
}
.lg-d-block {
display: block;
}
} [dir="rtl"] [class*="wp-container-core-group-is-layout-"].ext-is-logical-start.is-content-justification-left
> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
margin-inline-start: 0 !important;
margin-inline-end: auto !important;
}
.no-underline, .no-underline a {
text-decoration: none;
} .extendify-agent .preview-is-style-ext-preset--group--matrix-1--section .preview-is-style-ext-preset--group--matrix-1--item-card-1--align-center {
border: solid 6px color-mix(in oklab, var(--wp--preset--color--foreground) 10%, transparent) !important;
}
.extendify-agent .preview-is-style-ext-preset--group--wave-1--section {
--wave-ratio: 1440 / 80;
overflow: visible;
}
.extendify-agent .preview-is-style-ext-preset--group--wave-1--section .preview-is-style-ext-preset--group--wave-1--item-card-1--align-center {
position: relative;
overflow: visible;
}
.extendify-agent .preview-is-style-ext-preset--group--wave-1--section .preview-is-style-ext-preset--group--wave-1--item-card-1--align-center::after {
content: "";
position: absolute;
width: 150%;
left: 50%;
transform: translateX(-35%);
aspect-ratio: var(--wave-ratio);
background-color: var(--wp--preset--color--background);
-webkit-mask: var(--wave-mask) no-repeat center / 100% 100%;
mask: var(--wave-mask) no-repeat center / 100% 100%;
bottom: -1px;
pointer-events: none;
z-index: 1;
}
.extendify-agent .preview-is-style-ext-preset--group--wave-1--section .preview-is-style-ext-preset--group--wave-1--item-card-1--align-center::before {
content: "";
position: absolute;
width: 150%;
left: 50%;
transform: translateX(-65%) scale(-1, -1);
aspect-ratio: var(--wave-ratio);
background-color: var(--wp--preset--color--background);
-webkit-mask: var(--wave-mask) no-repeat center / 100% 100%;
mask: var(--wave-mask) no-repeat center / 100% 100%;
top: -1px;
pointer-events: none;
z-index: 1;
}div.tnp-subscription,
form.tnp-subscription, form.tnp-profile {
display: block;
margin: 1em auto;
max-width: 500px;
width: 100%;
}
div.tnp-profile {
display: block;
margin: 1em 0;
max-width: 500px; } .tnp-subscription div.tnp-field,
.tnp-profile div.tnp-field
{
margin-bottom: .7em;
border: 0;
padding: 0;
}
.tnp-subscription label,
.tnp-profile label
{
display: block;
color: inherit;
font-weight: normal;
line-height: normal;
padding: 0;
margin: 0;
margin-bottom: .25em;
font-size: .9em;
}
.tnp-subscription .tnp-field-checkbox label,
.tnp-profile .tnp-field-checkbox label
{
display: inline-block;
}
.tnp-subscription input[type=text],
.tnp-subscription input[type=email],
.tnp-subscription input[type=submit],
.tnp-subscription select,
.tnp-subscription textarea,
.tnp-profile input[type=text],
.tnp-profile input[type=email],
.tnp-profile input[type=submit],
.tnp-profile select,
.tnp-profile textarea
{
width: 100%;
padding: .7em;
display: block;
border: 1px;
color: #444;
border-color: #ddd;
background-color: #f4f4f4;
background-image: none;
text-shadow: none;
font-size: 1em;
margin: 0;
line-height: normal;
box-sizing: border-box;
}
.tnp-subscription input[type=checkbox],
.tnp-widget input[type=radio],
.tnp-profile input[type=checkbox]
{ max-width: 1em;
display: inline-block;
margin-right: .5em;
} .tnp-subscription select option,
.tnp-profile select option
{
margin-right: .75em;
}
.tnp-subscription input.tnp-submit,
.tnp-profile input.tnp-submit,
.tnp-unsubscribe button.tnp-submit,
.tnp-reactivate button.tnp-submit
{
background-color: #444;
color: #fff;
width: auto;
height: auto;
margin: 0;
display: inline-block;
}
@media all and (max-width: 480px) {
.tnp-subscription input[type=submit],
.tnp-profile input[type=submit] {
width: 100%;
}
}
.tnp-widget {
width: 100%;
display: block;
box-sizing: border-box;
}
.tnp-widget .tnp-field {
margin-bottom: 10px;
border: 0;
padding: 0;
}
.tnp-widget label {
display: block;
color: inherit;
font-size: 14px;
}
.tnp-widget input[type=text], .tnp-widget input[type=email], .tnp-widget input[type=submit], .tnp-widget select {
width: 100%;
padding: 10px;
display: block;
border: 1px solid #ddd ;
border-color: #ddd;
background-color: #f4f4f4;
background-image: none;
text-shadow: none;
color: #444;
font-size: 14px;
line-height: normal;
box-sizing: border-box;
height: auto;
}
.tnp-widget input[type=checkbox], .tnp-widget input[type=radio] {
width: auto;
display: inline-block;
} .tnp-widget select option {
margin-right: 10px;
}
.tnp-widget input.tnp-submit {
background-color: #444;
background-image: none;
text-shadow: none;
color: #fff;
margin: 0;
}
.tnp-field input[type="submit"] {
position: inherit;
}
.tnp-field label {
} .tnp-widget-minimal {
width: 100%;
}
.tnp-widget-minimal form {
margin: 0;
padding: 0;
border: 0;
}
.tnp-widget-minimal input.tnp-email {
width: 100%;
box-sizing: border-box;
padding: 10px;
display: inline-block;
border: 1px solid #ddd;
background-color: #f4f4f4;
color: #444;
font-size: 14px;
}
.tnp-widget-minimal input.tnp-submit {
width: 100%;
box-sizing: border-box;
padding: 10px;
display: inline-block;
border: 1px;
border-color: #ddd;
background-color: #444;
background-image: none;
text-shadow: none;
color: #fff;
font-size: 14px;
line-height: normal;
border-radius: 0px;
height: auto;
margin: 0;
} .tnp-subscription-minimal {
width: 100%;
box-sizing: border-box;
margin: 10px 0;
}
.tnp-subscription-minimal form {
width: auto;
margin: 0;
padding: 0;
border: 0;
white-space: nowrap;
}
.tnp-subscription-minimal input.tnp-email,
.tnp-subscription-minimal input.tnp-name
{
width: 70%;
max-width: 300px;
box-sizing: border-box;
padding: 10px;
display: inline-block;
border: 1px solid #ddd;
background-color: #f4f4f4;
color: #444;
font-size: 14px;
line-height: 20px;
border-radius: 0px;
margin-right: 10px;
}
.tnp-subscription-minimal.with-name input.tnp-email,
.tnp-subscription-minimal.with-name input.tnp-name
{
width: 31%;
}
.tnp-subscription-minimal .tnp-privacy-field {
margin-top: 10px;
} .tnp-subscription-minimal input.tnp-submit {
width: 29%;
box-sizing: border-box;
display: inline-block;
padding: 10px;
border: 1px;
border-color: #ddd;
background-color: #444;
background-image: none;
text-shadow: none;
color: #fff;
font-size: 14px;
line-height: 20px;
border-radius: 0px;
margin: 0;
}
.tnp-subscription-posts {
margin-top: 2em;
margin-bottom: 2em;
padding: 2rem;
}
.tnp-subscription-posts .tnp-subscription {
max-width: auto;
margin: 0;
}
@media all and (max-width: 525px) {
.tnp-subscription-minimal.with-name input.tnp-email,
.tnp-subscription-minimal.with-name input.tnp-name,
.tnp-subscription-minimal input.tnp-submit
{
width: 100%;
max-width: 100%;
margin: 0;
display: block;
margin-bottom: .5rem;
}
} .tnp-button-form button.tnp-submit {
box-sizing: border-box;
padding: 10px;
display: inline-block;
border: 1px;
border-color: #ddd;
background-color: #444;
background-image: none;
text-shadow: none;
color: #fff;
font-size: 14px;
line-height: normal;
border-radius: 0px;
height: auto;
margin: 0;
} .tnp-comments {
clear: both;
margin-top: 15px;
margin-bottom: 15px;
}
.tnp-comments label {
display: block;
}
.tnp-comments input[type=checkbox] {
display: inline-block;
width: auto!important;
} .tnp-lock {
clear: both;
display: block;
box-sizing: border-box;
box-shadow: none;
margin: 20px;
padding: 15px;
background-color: #fff;
border: 1px solid #ddd;
}
.tnp-nl-checkout {
margin-bottom: 1em;
}.wcpay-express-checkout-wrapper{width:100%;clear:both;display:flex;flex-direction:column}.wcpay-express-checkout-wrapper #wcpay-express-checkout-element{opacity:0;transition:all .3s ease-in-out;min-height:0;margin:0}.wcpay-express-checkout-wrapper #wcpay-express-checkout-element.is-ready{opacity:1}.wcpay-express-checkout-wrapper #wcpay-express-checkout-element.is-ready:not(:first-child){margin-top:12px}.woocommerce-cart .wcpay-express-checkout-wrapper{margin-bottom:0}.woocommerce-checkout .wcpay-express-checkout-wrapper #wcpay-express-checkout-element.is-ready:first-child{margin-top:4px}.woocommerce-checkout .wcpay-express-checkout-wrapper #wcpay-woopay-button{margin-top:4px}.woocommerce .type-product .wcpay-express-checkout-wrapper,.wp-block-add-to-cart-form .wcpay-express-checkout-wrapper,.wc-proceed-to-checkout .wcpay-express-checkout-wrapper{margin-top:1em;margin-bottom:1em}.wcpay-express-checkout-wrapper,.wc-block-components-express-payment__event-buttons{list-style:none}.wcpay-express-checkout-wrapper .StripeElement iframe,.wc-block-components-express-payment__event-buttons .StripeElement iframe{max-width:unset}.w-60{
width: 60% !important;
}
.wopb-backorder-field-group {
padding: 15px;
background: #f5f5f5;
border: 1px solid #d8d8d8;
}
.wopb-backorder-field-group .wopb-backorder-title{
border-bottom: 1px solid #bbb;
display: flex;
border-bottom: 1px solid #bbb;
margin: 0;
padding: 0 0 8px;
font-size: 18px;
}
.wopb-backorder-field-group .form-field label{
padding-bottom: 2px;
display: inline-block;
}
.wopb-cart-backorder-badge{
margin-left: 3px;
}
.wopb-cart-backorder-message{
display: none;
}
.wopb-cart-preorder-message .wopb-cart-backorder-message,
.wopb-cart-preorder-message .wopb-backorder-duration {
font-size: 14px;
}
.woocommerce-cart-form__contents .wopb-cart-backorder-message{
display: block;
}
.wc-item-meta-label .wopb-cart-backorder-badge, .display_meta .wopb-cart-backorder-badge{
margin-right: 5px;
}
.wopb-builder-cart .wopb-backorder-wrapper {
display: none;
}.w-100{
width: 100% !important;
}
.w-50{
width: 50% !important;
} .wopb-productx-options-tab-wrap .wopb-tab-title-wrap{
padding: 0px;
background-color: #000000 !important;
text-align: left;
}
.wopb-productx-options-tab-wrap .wopb-tab-title-wrap .wopb-tab-title{
color: #fff !important;
text-decoration: none;
padding: 10px 20px;
}
.wopb-productx-options-tab-wrap a:focus{
box-shadow: unset !important;
}
.wopb-productx-options-tab-wrap .wopb-tab-title.active{
border-bottom: 2px solid #ff176b;
}
.wopb-input-group{
position: relative;
}
.wopb-input-group .dashicons-calendar-alt{
position: absolute;
right: 12px;
top: -3px;
cursor: pointer;
}
#wopb-preorder-select-instruction{
display: none;
}
.wopb-preorder-select-instruction-title {
color: #6b5209;
background-color: #fff3cd;
border-color: #fae7ae;
max-width: 70%;
margin: 50px auto !important;
border-radius: 5px;
padding: 12px 20px !important;
border-width: 1px;
border-style: solid;
font-size: 16px;
}
.wopb-woocommerce-preorder-field-group, .wopb-woocommerce-variable-preorder-field-group {
padding: 15px;
background: #f5f5f5;
border: 1px solid #d8d8d8;
margin-bottom: 15px;
}
.wopb-woocommerce-variable-preorder-field-group .form-field label{
padding-bottom: 2px;
display: inline-block;
}
.wopb-woocommerce-variable-preorder-field-group .form-field input[type=checkbox]{
margin-right: 8px !important;
float: none;
margin-left: 12px !important;
}
.wopb-woocommerce-variable-preorder-field-group .wopb-woocommerce-preorder-title {
border-bottom: 1px solid #bbb;
margin: 0;
padding: 0 0 8px;
font-size: 18px;
}
.wopb-woocommerce-preorder-field-group .wopb-woocommerce-preorder-title{
margin-left: 10px;
margin-bottom: 20px;
margin-top: 10px;
border-bottom: 1px solid #bbb;
padding-bottom: 8px;
font-size: 20px;
display: flex;
}
._wopb_preorder_auto_convert_field .description, ._wopb_preorder_price_manage_field .description{
display: inline !important;
margin-left: 5px !important;
}
.wopb-singlepage-no-date {
display: block;
margin-top: 5px;
}
.wopb-singlepage-no-date .wopb-no-date-message{
font-size: 22px;
}
.wopb-singlepage-preorder-countdown{
display: inline-flex;
padding: 8px;
margin-top: 8px;
margin-bottom: 8px;
}
.wopb-singlepage-preorder-countdown .wopb-countdown-block{
display: flex;
align-items: center;
line-height: 15px;
text-align: center;
}
.wopb-singlepage-preorder-countdown .wopb-preorder-countdown-text{
display: block;
}
.wopb-singlepage-preorder-countdown .wopb-preorder-countdown-separator{
margin: 0px 17px;
}
.wopb-cart-preorder-badge{
margin-left: 3px;
}
.wopb-cart-preorder-message{
display: none;
}
.wopb-cart-preorder-message .wopb-preorder-message,
.wopb-cart-preorder-message .wopb-preorder-duration {
font-size: 14px;
}
.woocommerce-cart-form__contents .wopb-cart-preorder-message{
display: block;
}
.wc-item-meta-label .wopb-cart-preorder-badge, .display_meta .wopb-cart-preorder-badge{
margin-right: 5px;
}
.wopb-preorder-closed{
color: red;
}
#wopb-preorder-field-group-pro-instruction a img{
width: 100%;
margin-top: 10px;
}
.woocommerce_options_panel input[type=datetime-local]{
width: 50%;
float: left;   
}
.wopb-single-product-preorder{
display: none;
}
.summary .wopb-single-product-preorder, 
.wopb-builder-container .wopb-product-wrapper .wopb-single-product-preorder,
.wopb-singlepage-preorder-message,
.wopb-countdown-block-item,
.wopb-singlepage-preorder-remaining-item{
display: block;
}
.wopb-countdown-block-item{
font-weight: 400;
}.wopb-modal-wrap{position:fixed;visibility:hidden;top:0;left:0;right:0;bottom:0;z-index:1400;opacity:0}.wopb-modal-wrap.wopb-sidebar-wrap.wopb-right_sidebar .wopb-modal-content{left:unset}.wopb-modal-wrap.wopb-sidebar-wrap.wopb-left_sidebar .wopb-modal-content{right:unset}.wopb-modal-wrap.wopb-sidebar-wrap .wopb-modal-content{min-width:unset;max-width:460px;width:90%;min-height:100%}.wopb-modal-wrap.wopb-modal-toast-wrapper{position:unset}.wopb-modal-wrap.wopb-modal-toast-wrapper .wopb-modal-content{max-width:100%;width:100%;height:100%;background:unset}.wopb-modal-wrap.wopb-modal-toast-wrapper .wopb-modal-content .wopb-modal-toaster{position:fixed;height:fit-content;z-index:999999;font-size:14px;background:#fff;border-radius:4px;box-shadow:0 6px 16px 0 rgba(0,0,0,.12);max-width:347px;padding:16px 52px 16px 16px}.wopb-modal-wrap.wopb-modal-toast-wrapper .wopb-modal-content .wopb-modal-toaster.wopb-right-top{top:50px;right:50px}.wopb-modal-wrap.active{display:flex;align-items:center;visibility:visible;opacity:1;z-index:999998}.wopb-modal-wrap .wopb-modal-content{min-height:560px;min-width:865px;max-width:1600px;position:absolute;left:0;right:0;margin:0 auto;width:fit-content;height:fit-content;background:#fff;-ms-overflow-style:none;scrollbar-width:none}.wopb-modal-wrap .wopb-modal-content::-webkit-scrollbar{display:none}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading{width:100%;height:100%;background-color:rgba(0,0,0,.5);opacity:0;visibility:hidden}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading.active{display:flex;align-items:center;justify-content:center;opacity:1;visibility:visible;z-index:99}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading{border:none;width:unset;height:unset;padding-top:6.5px;animation:none}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader{width:48px;height:48px;display:inline-block;position:relative}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_1{border-radius:50%;border:3px solid;border-color:#fff #fff transparent;box-sizing:border-box;animation:wopbRotation 1s linear infinite}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_1:after{content:"";box-sizing:border-box;position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;border:3px solid;border-color:transparent #ff176b #ff176b;width:24px;height:24px;border-radius:50%;animation:wopbRotationBack .5s linear infinite;transform-origin:center center}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_2,.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3{width:70px;height:70px}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_2>*,.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3>*{transform-origin:40px 40px;animation:wopbFadeOut 1.2s linear infinite}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_2>:after,.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3>:after{content:" ";display:block;position:absolute;top:3px;left:37px;width:6px;height:18px;border-radius:20%;background:#fff}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_2>:first-child,.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3>:first-child{transform:rotate(0deg);animation-delay:-1.1s}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_2>:nth-child(2),.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3>:nth-child(2){transform:rotate(30deg);animation-delay:-1s}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_2>:nth-child(3),.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3>:nth-child(3){transform:rotate(60deg);animation-delay:-.9s}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_2>:nth-child(4),.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3>:nth-child(4){transform:rotate(90deg);animation-delay:-.8s}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_2>:nth-child(5),.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3>:nth-child(5){transform:rotate(120deg);animation-delay:-.7s}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_2>:nth-child(6),.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3>:nth-child(6){transform:rotate(150deg);animation-delay:-.6s}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_2>:nth-child(7),.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3>:nth-child(7){transform:rotate(180deg);animation-delay:-.5s}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_2>:nth-child(8),.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3>:nth-child(8){transform:rotate(210deg);animation-delay:-.4s}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_2>:nth-child(9),.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3>:nth-child(9){transform:rotate(240deg);animation-delay:-.3s}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_2>:nth-child(10),.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3>:nth-child(10){transform:rotate(270deg);animation-delay:-.2s}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_2>:nth-child(11),.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3>:nth-child(11){transform:rotate(300deg);animation-delay:-.1s}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_2>:nth-child(12),.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3>:nth-child(12){transform:rotate(330deg);animation-delay:0s}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_3>:after{width:10px;height:10px}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_4{height:unset;width:unset;display:flex;justify-content:center;animation:wopbSpin360 2s linear infinite}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_4 svg{margin:9px -31px}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_4 .dot_line{position:absolute;width:100%;height:4px;transform:translateY(80px);background-color:#fff;border-radius:10px;margin:1px 0;animation:wopbUpDownPendulum 2s ease-in-out .7s infinite}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_5{width:unset;height:unset;font-size:60px;--num-dot:15}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_5>*{position:absolute;width:100%;height:100%;top:0;left:0;transform:rotate(calc(1turn/var(--num-dot)*var(--index)))}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_5>:before{position:absolute;content:"";top:.15em;left:.45em;width:.1em;height:.1em;transform:scale(.3);border-radius:50%;background-color:#fff;animation:wopbScaleTo1 1s ease-in-out calc(1s/var(--num-dot)*var(--index)) infinite reverse}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_6{width:80px;height:35px;border-bottom:9.99px solid #fff;border-top:10px solid #fff;box-sizing:border-box}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_6:after,.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_6:before{content:"";position:absolute;left:-1;top:-10px;width:102%;height:10px;background:#ff3d00;box-sizing:border-box;animation:wopbFillUp 1s ease-in-out infinite alternate}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_6:after{top:16px;animation-direction:alternate-reverse}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_7{background-size:cover;background:radial-gradient(circle,#ff176b,transparent,transparent,transparent,transparent,transparent,transparent) 50%;border-radius:50%;border:3px solid #fff;padding:30px}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_7:after,.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_7:before{content:"";position:absolute;height:16px;width:4px;background:#ff176b;top:50%;left:50%;transform:translateX(-50%) rotate(0deg);transform-origin:25% 0;box-sizing:border-box;animation:wopbRotation 10s linear infinite}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-loading .wopb-loading .wopb-loader.loader_7:before{height:22px;width:2px;transform:translateX(-50%) rotate(0deg);animation-duration:1s}.wopb-modal-wrap:not(.wopb-modal-toast-wrapper) .wopb-modal-overlay{position:absolute;top:0;right:0;bottom:0;left:0;background:rgba(0,0,0,.8);z-index:-1}.wopb-modal-wrap .wopb-modal-close-icon{cursor:pointer;position:absolute;top:9px;right:9px;text-indent:-9999px;padding:0;border-radius:0;border:1px solid #090909;background:#090909;width:25px;height:25px;transition:.4s}.wopb-modal-wrap .wopb-modal-close-icon:before{width:16px;border-top:2px solid;margin-top:-1px;margin-left:-8px}.wopb-modal-wrap .wopb-modal-close-icon:after,.wopb-modal-wrap .wopb-modal-close-icon:before{content:"";position:absolute;left:50%;top:50%;transform:rotate(45deg);color:#fff;transition:.4s}.wopb-modal-wrap .wopb-modal-close-icon:after{height:16px;border-left:2px solid;margin-top:-8px;margin-left:-1px}.wopb-modal-wrap .wopb-modal-close-icon:hover{border:1px solid #f31616;background:#f31616}.wopb-modal-wrap .wopb-modal-close-icon:hover:after,.wopb-modal-wrap .wopb-modal-close-icon:hover:before{color:#fff}.wopb-modal-wrap.wopb-unfold .wopb-modal-content{transform:scale(0);animation:wopbZoomIn .5s cubic-bezier(.165,.84,.44,1) .8s forwards}.wopb-modal-wrap.wopb-fold .wopb-modal-content{animation:wopbZoomOut .5s cubic-bezier(.165,.84,.44,1) forwards}.wopb-modal-wrap.wopb-zoom_in .wopb-modal-content{transform:scale(0);animation:wopbZoomIn .8s cubic-bezier(.165,.84,.44,1) .15s forwards}.wopb-modal-wrap.wopb-zoom_out .wopb-modal-content{animation:wopbZoomOut .8s cubic-bezier(.165,.84,.44,1) .15s forwards}.wopb-modal-wrap.wopb-fade_in .wopb-modal-content{animation:wopbFadeIn 1.6s forwards}.wopb-modal-wrap.wopb-fade_out .wopb-modal-content{animation:wopbFadeOut 1.6s forwards}.wopb-modal-wrap.wopb-shrink_in .wopb-modal-content{animation:wopbShrinkIn 1s forwards}.wopb-modal-wrap.wopb-shrink_out .wopb-modal-content{animation:wopbShrinkOut 1s forwards}.wopb-modal-wrap.wopb-flip_in .wopb-modal-content{animation:wopbFlipIn .8s forwards}.wopb-modal-wrap.wopb-flip_out .wopb-modal-content{animation:wopbFlipOut .8s forwards}.wopb-modal-wrap.wopb-slide_up_in .wopb-modal-content{animation:wopbSlideUpIn .8s forwards}.wopb-modal-wrap.wopb-slide_down_in .wopb-modal-content{animation:wopbSlideDownIn .8s forwards}.wopb-modal-wrap.wopb-slide_up_out .wopb-modal-content{animation:wopbSlideUpOut .8s forwards}.wopb-modal-wrap.wopb-slide_down_out .wopb-modal-content{animation:wopbSlideDownOut .8s forwards}.wopb-modal-wrap.wopb-slide_left_in .wopb-modal-content{animation:wopbSlideLeftIn .8s forwards}.wopb-modal-wrap.wopb-slide_right_in .wopb-modal-content{animation:wopbSlideRightIn .8s forwards}.wopb-modal-wrap.wopb-slide_left_out .wopb-modal-content{animation:wopbSlideLeftOut .8s forwards}.wopb-modal-wrap.wopb-slide_right_out .wopb-modal-content{animation:wopbSlideRightOut .8s forwards}.wopb-modal-wrap.wopb-blow_up .wopb-modal-body{animation:wopbBlowUpTable .6s cubic-bezier(.165,.84,.44,1) forwards}@media(max-width:992px){.wopb-modal-wrap .wopb-modal-content{width:80%;min-height:300px;min-width:300px}}@media(max-height:560px){.wopb-modal-wrap .wopb-modal-content{min-height:300px}}.wopb-modal-header{display:flex;justify-content:center;align-items:center;position:relative;border-radius:8px 8px 0 0;height:50px}.wopb-modal-header .wopb-header-title{display:block;font-size:16px;font-weight:600;text-transform:uppercase;color:#070c1a}.wopb-modal-header .wopb-modal-close{position:absolute;right:10px;border-radius:2px;border:1px solid #dadada;background:#090909;width:30px;height:30px;transition:.4s;display:inline-flex;align-items:center;justify-content:center}.wopb-modal-header .wopb-modal-close svg path{stroke:#fff;stroke-width:1.3}.wopb-modal-header .wopb-modal-close:hover{border:1px solid #f31616;background:#f31616}.wopb-unfold{transform:scaleY(.01) scaleX(0);animation:wopbUnfold 1s cubic-bezier(.165,.84,.44,1) forwards}.wopb-fold{transform:scale(1);animation:wopbFold 1s cubic-bezier(.165,.84,.44,1) .3s forwards}.wopb-zoom_out{transform:scale(1);animation:wopbZoomOut .01s cubic-bezier(.165,.84,.44,1) .6s forwards}.wopb-fade_out,.wopb-shrink_out{animation:wopbZoomOut 0s 1s forwards}.wopb-flip_out,.wopb-slide_down_out,.wopb-slide_left_out,.wopb-slide_right_out,.wopb-slide_up_out{animation:wopbZoomOut 0s .8s forwards}.wopb-blow_up{transform:scale(1)}.wopb-blow_down{animation:wopbBlowDownTable .5s cubic-bezier(.165,.84,.44,1) forwards}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes wopbFadeIn{0%{opacity:0}to{opacity:1}}@keyframes wopbFadeOut{0%{opacity:1}to{opacity:0}}@keyframes wopbShrinkIn{0%{transform:scale(2);opacity:0}to{transform:scale(1);opacity:1}}@keyframes wopbShrinkOut{0%{transform:scale(1);opacity:1}to{transform:scale(2);opacity:0}}@keyframes wopbFlipIn{0%{transform:perspective(400px) rotateY(-90deg);opacity:0}to{transform:perspective(400px) rotateY(0);opacity:1}}@keyframes wopbFlipOut{0%{transform:perspective(400px) rotateY(0deg);opacity:1}80%{opacity:0}to{transform:perspective(400px) rotateY(-90deg);opacity:0}}@keyframes wopbSlideUpIn{0%{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes wopbSlideUpOut{0%{transform:translateY(0);opacity:1}to{transform:translateY(-100%);opacity:0}}@keyframes wopbSlideDownIn{0%{transform:translateY(-100%);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes wopbSlideDownOut{0%{transform:translateY(0);opacity:1}to{transform:translateY(100%);opacity:0}}@keyframes wopbSlideLeftOut{0%{transform:translateX(0);opacity:1}to{transform:translateX(-100%);opacity:0}}@keyframes wopbSlideLeftIn{0%{transform:translateX(-100%);opacity:0}to{transform:translateX(0);opacity:1}}@keyframes wopbSlideRightIn{0%{transform:translateX(100%);opacity:0}to{transform:translateX(0);opacity:1}}@keyframes wopbSlideRightOut{0%{transform:translateX(0);opacity:1}to{transform:translateX(100%);opacity:0}}@keyframes wopbZoomIn{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes wopbZoomIn2{0%{transform:scale(1)}to{transform:scale(1.2)}}@keyframes wopbZoomOut{0%{transform:scale(1)}to{transform:scale(0);opacity:0}}@keyframes wopbUnfold{0%{transform:scaleY(.005) scaleX(0)}50%{transform:scaleY(.005) scaleX(1)}to{transform:scaleY(1) scaleX(1)}}@keyframes wopbFold{0%{transform:scaleY(1) scaleX(1)}50%{transform:scaleY(.005) scaleX(1)}to{transform:scaleY(.005) scaleX(0)}}@keyframes wopbBlowUpContent{0%{transform:scale(1)}to{transform:scale(2)}}@keyframes wopbBlowDownContent{0%{transform:scale(2)}to{transform:scale(1)}}@keyframes wopbBlowUpTable{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes wopbBlowDownTable{0%{transform:scale(1);opacity:1}to{transform:scale(0);opacity:0}}@keyframes demoLoading{to{transform:translateX(100%)}}@keyframes wopbRotation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes wopbRotationBack{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}@keyframes wopbScaleTo1{0%{transform:scale(.3)}to{transform:scale(2)}}@keyframes wopbFillUp{0%,20%{width:101%}80%,to{width:0}}@keyframes wopbUpDownPendulum{10%,90%{width:100%;transform:translateY(80px)}20%,80%{width:8%}45%,65%{width:100%;transform:translateY(32px)}}@keyframes wopbSpin360{0%,25%{transform:rotate(0deg)}50%,75%{transform:rotate(180deg)}to{transform:rotate(1turn)}}@keyframes wopbCartZoomIn{0%{transform:scale(1)}50%{transform:scale(1.2)}to{transform:scale(1)}}@keyframes wopbCartClick{0%{transform:scale(1)}50%{transform:scale(.9)}to{transform:scale(1)}}@keyframes wopbCartShake{0%,to{transform:translateX(0)}25%,75%{transform:translateX(-5px)}50%{transform:translateX(5px)}}@keyframes wopbCartBounce{0%,20%,50%,80%,to{transform:translateY(0)}40%{transform:translateY(-10px)}60%{transform:translateY(-10px)}}@keyframes wopbCartWobble{0%,to{transform:rotate(0)}15%{transform:rotate(-10deg)}30%{transform:rotate(7deg)}45%{transform:rotate(-7deg)}60%{transform:rotate(5deg)}75%{transform:rotate(-1deg)}}@keyframes wopbCartPulse{0%,to{transform:scale(1)}30%,70%{transform:scale(1.2)}}@keyframes wopbCartPulse2{0%{opacity:1;left:0;right:0;bottom:0;top:0}to{opacity:0;left:-15px;right:-15px;bottom:-15px;top:-15px}}@keyframes wopbCartColorRipple{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes wopbCartGradientSwap{0%{background-position:0 50%}50%{background-position:100% 50%}to{background-position:0 50%}}@keyframes rotateToLeft{0%{transform:rotateY(90deg)}50%{transform:rotateY(180deg)}to{transform:rotateY(180deg)}}.wopb-wishlist-addon-btn  {
cursor: pointer;
display: inline-flex;
}
.wopb-wishlist-addon-btn span {
display: flex;
align-items: center;
line-height: 1;
gap: 5px;
}
.wopb-wishlist-addon-btn:not(.wopb-wishlist-active) .wopb-wishlist-browse,
.wopb-wishlist-addon-btn.wopb-wishlist-active .wopb-wishlist-text
{
display: none;
} .wopb-wishlist-popup {
display: none;
position: fixed;
background-color: #e4ff00;
padding: 20px;
overflow: hidden;
margin: 0 auto;
width: 600px;
top: 0%;
left: 0%;
}
.wopb-wishlist-popup.active{
display: block;
}
.wopb-modal-wrap .wopb-wishlist-modal {
padding: 0;
}
.wopb-modal-wrap .wopb-wishlist-modal table {
min-height: 80px;
width: 100%;
}
.wopb-wishlist-modal table {
margin: 0;
border: none;
}
.wopb-wishlist-modal table thead { position: sticky;
top: 0;
z-index: 1;
}
.wopb-wishlist-modal table thead tr th {
padding: 12px 15px;
}
.wopb-wishlist-modal table tbody tr td {
padding: 12px 15px;
vertical-align: middle;
text-decoration: none;
}
.wopb-wishlist-modal table tbody tr td.wopb-wishlist-product-action {
min-width: 160px;
}
.wopb-wishlist-modal table tbody tr td.wopb-wishlist-product-price {
min-width: 170px;
}
.wopb-wishlist-modal table tbody tr td.wopb-wishlist-product-price del {
margin-right: 8px;
}
.wopb-wishlist-modal table tbody tr td.wopb-wishlist-product-image a {
line-height: 0;
font-size: 0;
display: inherit;
}
.wopb-wishlist-modal table tbody tr td.wopb-wishlist-product-image img {
width: 80px;
height: 100%;
}
.wopb-wishlist-modal table tbody tr td a.wopb-wishlist-remove {
color: #f37262;
font-size: 20px;
height: 20px;
width: 20px;
line-height: 18px;
text-decoration: none !important;
-webkit-transition: 0.4s;
transition: 0.4s;
border-radius: 100%;
font-weight: 700;
border: 0;
text-align: center;
display: inline-block;
}
.wopb-wishlist-modal table tbody tr td a.wopb-wishlist-remove:hover {
color: #fff;
background: red;
}
.wopb-wishlist-modal table tbody tr td.wopb-wishlist-product-action p.add_to_cart_inline {
padding: 0 !important;
border: none !important;
margin-bottom: 0;
}
.wopb-wishlist-modal table tbody tr td.wopb-wishlist-product-action p.add_to_cart_inline a.button {
margin-left: 0;
}
.wopb-wishlist-modal table tbody tr td.wopb-wishlist-product-name {
line-height: 1.3;
}
.wopb-wishlist-modal td a {
text-decoration: none !important;
}
.wopb-wishlist-product-footer,
.wopb-wishlist-shortcode .wopb-wishlist-product-footer {
padding: 12px 20px;
background: #ededed;
display: flex;
align-items: center;
}
.wopb-wishlist-product-footer span:first-child,
.wopb-wishlist-shortcode .wopb-wishlist-product-footer span:first-child {
display: none;
}
.wopb-wishlist-product-footer span:nth-child(2),
.wopb-wishlist-shortcode .wopb-wishlist-product-footer span:nth-child(2) {
display: flex;
margin-right: auto;
} .wopb-modal-wrap .wopb-wishlist-modal-content {
width: 100%;
left: 0;
right: 0;
top: 0;
margin: 0 auto;
position: relative;
max-width: 1200px;
max-height: 100%;
border-radius: 4px;
}
.wopb-wishlist-table-body {
overflow-y: auto;
height: 80vh;
scrollbar-color: #ff8645;
}
.wopb-wishlist-table-body::-webkit-scrollbar  {
width: 6px;
height: 6px;
}
.wopb-wishlist-table-body::-webkit-scrollbar-track  {
background-color: #eae8e8;
}
.wopb-wishlist-table-body::-webkit-scrollbar-thumb {
background-color: #ff8645;
border-radius: 50px;
}
.wopb-wishlist-table-body::-webkit-scrollbar-thumb:hover  {
background-color: #e24f00;
}
.product-gallery-summary .botiga-single-addtocart-wrapper {
flex-wrap: wrap;
}
.product-gallery-summary .botiga-single-addtocart-wrapper .button {
width: fit-content;
} .woocommerce-shop:not(:has(.wopb-builder-container)):not(:has(.wopb-block-wrapper)) .wopb-wishlist-addon-btn {
display: block;
cursor: pointer;
}
.woocommerce-shop:not(:has(.wopb-builder-container)):has(.wopb-block-wrapper) .wopb-cart-action .wopb-wishlist-addon-btn {
display:none;
}
.woocommerce-shop:not(:has(.wopb-builder-container)) .wopb-wishlist-addon-btn strong {
margin-right: 5px;
font-size: 16px;
}
.woocommerce-shop .wopb-modal-wrap.active .wopb-wishlist-modal .wopb-wishlist-addon-btn , .woocommerce-shop .wopb-modal-wrap.active .wopb-wishlist-modal .wopb-compare-btn , .woocommerce-shop .wopb-modal-wrap.active .wopb-wishlist-modal .wopb-quickview-btn {
display: none;
}
.wopb-modal-continue {
cursor: pointer;
} .wopb-wishlist-nav-item {
display: inline-flex !important;
align-items: center;
gap: 5px;
height: fit-content;
justify-content: center;
cursor: pointer;
line-height: normal;
}
.wopb-wishlist-nav-item.wopb-flex-column-dir
{
flex-direction: column;
gap: 0;
}
.wopb-wishlist-nav-item .wopb-wishlist-icon
{
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.wopb-wishlist-nav-item .wopb-wishlist-icon .wopb-wishlist-count {
position: absolute;
background: #FF176B;
color: #fff;
border-radius: 10px;
width: 16px;
height: 16px;
font-size: 10px;
display: inline-flex;
justify-content: center;
align-items: center;
top: -8px;
right: -5px;
}
.wopb-wishlist-nav-item svg {
width: 18px;
height: 18px;
} .wopb-modal-content .wopb-empty-wishlist-wrap {
text-align: center;
margin-top: 50px;
}
.wopb-wishlist-modal .wopb-wishlist-cart-added a,
.wopb-wishlist-modal .wopb-wishlist-cart-added a:hover {
color: #ffffff;
background-color: #FF176B;
}
.wopb-wishlist-modal .wopb-wishlist-cart-added a {
border-color: #FF176B;
padding: 12px 24px;
}.lazy-hidden,.entry img.lazy-hidden, img.thumbnail.lazy-hidden {
background-color: #ffffff;
background-image: url(//berkei.de/wp-content/plugins/a3-lazy-load/assets/css/loading.gif);
background-repeat: no-repeat;
background-position: 50% 50%;
}
figure.wp-block-image img.lazy-hidden {
min-width: 150px;
}
picture source[type="image/webp"] {
display: block;
}.product.product-type-variable ul.tabs li.product_safety_tab,.wc-gzd-additional-info-placeholder,p.wc-gzd-additional-info:empty{display:none}#order_review .wc-gzd-checkbox-placeholder{clear:both}#order_review .wc-gzd-checkbox-placeholder p.form-row{float:none;padding:0 1em 0 0;text-align:left}#order_review .wc-gzd-checkbox-placeholder p.form-row label{display:inline}#order_review .wc-gzd-checkbox-placeholder:empty{display:none}.woocommerce-checkout .shop_table{background-color:#eee}@media(min-width:768px){table.woocommerce-checkout-review-order-table tr.wc-gzd-cart-item-has-thumbnail .wc-gzd-cart-item-name-wrapper{align-items:center;display:flex}}table.woocommerce-checkout-review-order-table tr.wc-gzd-cart-item-has-thumbnail .wc-gzd-cart-item-name-wrapper .wc-gzd-cart-item-thumbnail{margin-right:1em;max-width:15%;min-width:60px}table.woocommerce-checkout-review-order-table tr.wc-gzd-cart-item-has-thumbnail .wc-gzd-cart-item-name-wrapper .wc-gzd-cart-item-thumbnail img{margin:0}body.theme-astra table.woocommerce-checkout-review-order-table tr.wc-gzd-cart-item-has-thumbnail td.product-name{flex-wrap:wrap}.cart_totals tr.order-total-differential-taxation-notice td:before,.cart_totals tr.order-total-small-business-notice td:before{content:""!important}.includes_tax,.tax_label,.woocommerce dl.variation dd[class*=variation-gzd-],.woocommerce dl.variation div[class*=variation-gzd-],.woocommerce dl.variation dt[class*=variation-gzd-],.woocommerce dl.variation li[class*=variation-gzd-],.woocommerce ul.variation dd[class*=variation-gzd-],.woocommerce ul.variation div[class*=variation-gzd-],.woocommerce ul.variation dt[class*=variation-gzd-],.woocommerce ul.variation li[class*=variation-gzd-],.woocommerce-cart dl.variation dd[class*=variation-gzd-],.woocommerce-cart dl.variation div[class*=variation-gzd-],.woocommerce-cart dl.variation dt[class*=variation-gzd-],.woocommerce-cart dl.variation li[class*=variation-gzd-],.woocommerce-cart ul.variation dd[class*=variation-gzd-],.woocommerce-cart ul.variation div[class*=variation-gzd-],.woocommerce-cart ul.variation dt[class*=variation-gzd-],.woocommerce-cart ul.variation li[class*=variation-gzd-],.woocommerce-checkout dl.variation dd[class*=variation-gzd-],.woocommerce-checkout dl.variation div[class*=variation-gzd-],.woocommerce-checkout dl.variation dt[class*=variation-gzd-],.woocommerce-checkout dl.variation li[class*=variation-gzd-],.woocommerce-checkout ul.variation dd[class*=variation-gzd-],.woocommerce-checkout ul.variation div[class*=variation-gzd-],.woocommerce-checkout ul.variation dt[class*=variation-gzd-],.woocommerce-checkout ul.variation li[class*=variation-gzd-],.woocommerce-mini-cart dl.variation dd[class*=variation-gzd-],.woocommerce-mini-cart dl.variation div[class*=variation-gzd-],.woocommerce-mini-cart dl.variation dt[class*=variation-gzd-],.woocommerce-mini-cart dl.variation li[class*=variation-gzd-],.woocommerce-mini-cart ul.variation dd[class*=variation-gzd-],.woocommerce-mini-cart ul.variation div[class*=variation-gzd-],.woocommerce-mini-cart ul.variation dt[class*=variation-gzd-],.woocommerce-mini-cart ul.variation li[class*=variation-gzd-]{display:none!important}.wc-gzd-small-business-includes-tax{display:inline!important;font-size:.9em;padding-left:3px}.woocommerce-gzd-checkout #order_review_heading{display:none}.woocommerce-checkout .shop_table tr td p{margin-bottom:0}.woocommerce-checkout .shop_table td,.woocommerce-checkout .shop_table th{line-height:1.5}.more-variants-available-info{display:block;font-size:11px;font-weight:400}.shop_table .product-name-inner,.shop_table .product-name-inner tr td{border:none;margin:0;padding:0}.shop_table .product-name-inner tr td:last-child{text-align:right}.cart_totals .wc-gzd-additional-wrapper,.woocommerce-checkout table.shop_table .wc-gzd-additional-wrapper{clear:both;text-align:right}.cart_totals p.wc-gzd-additional-info,.woocommerce-checkout table.shop_table p.wc-gzd-additional-info{display:inline-block;font-size:.8em;font-weight:400;margin-bottom:0}.entry-content .woocommerce #payment{margin-bottom:1em}.woocommerce #payment .wc-terms-and-conditions{display:none!important}.entry-content .woocommerce .checkout-btn-wrap{text-align:right}.woocommerce-checkout p.direct-debit-checkbox{display:none}.unit-price-cart{display:block;font-size:.9em;margin-top:5px}.product_list_widget .wc-gzd-additional-info,.products .wc-gzd-additional-info{font-size:.8em;margin:.7rem 0;padding:0}.product_list_widget .wc-gzd-additional-info,.product_list_widget p.price-unit{line-height:1.8em;margin:.2rem 0}.product_list_widget .wc-gzd-additional-info a{display:inline!important}.product_list_widget .price-unit,.products .product .price-unit{font-size:.8em}.product_list_widget .price-unit{margin-bottom:.7em}.product p.wc-gzd-additional-info{clear:left;font-size:.9em;margin-bottom:.5rem}.product .defect-description:not(:empty){border:2px solid #4b4f58;margin:1em 0;padding:.5em}.product .defect-description:not(:empty) p:last-child{margin-bottom:0}form.cart.wc-gzd-replace-price .single_variation_wrap .woocommerce-variation-price{display:none}.deposit-packaging-type{font-weight:700;text-transform:uppercase}.product p.deposit-packaging-type{font-size:1.2em!important}.wc-gzd-rating-authenticity-status{display:block;font-size:.9em}.woocommerce-product-rating .wc-gzd-rating-authenticity-status{display:inline-block}.product .product_meta{margin-top:1rem}p.footer-info{font-size:.9em;padding-bottom:.5rem;text-align:center}.wc-gzd-item-defect-description p,.wc-gzd-item-desc p{font-size:.9em;font-weight:400}.wc-gzd-edit-data-notice{background:#eee;display:inline-block;padding:1em}.wc-gzd-edit-data-notice p.wc-gzd-info{margin:0;padding:0}.wc-gzd-power-supply{display:flex;flex-wrap:wrap;height:70px;margin:1em 0}.wc-gzd-power-supply svg{align-items:center;display:flex;height:70px;width:70px}.wc-gzd-power-supply svg text{text-anchor:middle;dominant-baseline:middle;font-size:1.8rem;font-weight:600}.wc-gzd-power-supply svg text.min-max-watt-has-decimals,.wc-gzd-power-supply svg text.power-supply-usb-pd{font-size:1.5rem}.wc-gzd-cart-info{display:block}table.product-details-inner{margin:0;padding:0;table-layout:fixed}table.product-details-inner,table.product-details-inner td,table.product-details-inner tr{background:transparent;border:none;margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}table.product-details-inner tr td:last-child{text-align:right}.wc-gzd-product-name-left,.wc-gzd-product-name-right{float:left}.wc-gzd-product-name-left{margin-right:1em;max-width:15%}#order_review .blockMsg{line-height:1.5em}#shipping_parcelshop_post_number_field .optional{display:none!important}.wc-gzd-nutri-score-value{display:block;height:4rem;text-indent:-9999px;width:7.0625rem}.wc-gzd-placeholder-loading{display:flex;flex:0 0 100%;flex-flow:column;overflow:hidden;position:relative}.wc-gzd-placeholder-loading *{box-sizing:border-box}.wc-gzd-placeholder-loading .wc-gzd-placeholder-row{align-items:center;display:flex;vertical-align:middle}.wc-gzd-placeholder-loading .wc-gzd-placeholder-row>*{animation:shimmer 2s infinite;background:#e7e7e7;background-image:linear-gradient(90deg,#e7e7e7,color-mix(in srgb,#e7e7e7 30%,#fff) 30%,#e7e7e7);background-size:200% 100%;border-radius:.375rem;display:block;height:10px}.wc-gzd-placeholder-loading .wc-gzd-placeholder-row .wc-gzd-placeholder-row-col-4{min-width:100px}@keyframes shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}.wc-block-featured-product .wc-gzd-additional-info{color:inherit;font-size:.9em;margin:0;padding:5px 48px 0;text-align:center;width:100%;z-index:1}.wc-block-featured-product .wc-gzd-nutri-score{width:auto}ul.wc-block-grid__products li.wc-block-grid__product .wc-gzd-additional-info{margin:.5em 0}ul.wc-block-grid__products li.wc-block-grid__product .wc-gzd-additional-info:not(.deposit-packaging-type){font-size:.9em;font-weight:400}.theme-twentytwenty form.woocommerce-checkout #order_review_heading,.theme-twentytwentyone form.woocommerce-checkout #order_review_heading{margin-bottom:2rem;padding-left:0;text-align:left;width:100%}