:root {
--joinchat-ico: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M3.516 3.516c4.686-4.686 12.284-4.686 16.97 0s4.686 12.283 0 16.97a12 12 0 0 1-13.754 2.299l-5.814.735a.392.392 0 0 1-.438-.44l.748-5.788A12 12 0 0 1 3.517 3.517zm3.61 17.043.3.158a9.85 9.85 0 0 0 11.534-1.758c3.843-3.843 3.843-10.074 0-13.918s-10.075-3.843-13.918 0a9.85 9.85 0 0 0-1.747 11.554l.16.303-.51 3.942a.196.196 0 0 0 .219.22zm6.534-7.003-.933 1.164a9.84 9.84 0 0 1-3.497-3.495l1.166-.933a.79.79 0 0 0 .23-.94L9.561 6.96a.79.79 0 0 0-.924-.445l-2.023.524a.797.797 0 0 0-.588.88 11.754 11.754 0 0 0 10.005 10.005.797.797 0 0 0 .88-.587l.525-2.023a.79.79 0 0 0-.445-.923L14.6 13.327a.79.79 0 0 0-.94.23z'/%3E%3C/svg%3E");
--joinchat-font: -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
}
.joinchat {
--sep: 20px;
--bottom: var(--sep);
--s: 60px;
--h: calc(var(--s)/2);
--header: max(50px, var(--s)*1.166667);
--vh: 100vh;
--ch: 142;
--cs: 70%;
--cl: 49%;
--bw: 1;
--text: hsl(0deg 0% clamp(0%, var(--bw)*1000%, 100%) / clamp(70%, var(--bw)*1000%, 100%));
--hover: hsl(var(--ch) var(--cs) calc(var(--cl) + 20%));
--hsl: var(--ch) var(--cs) var(--cl);
--color: hsl(var(--hsl));
--dark: hsl(var(--ch) var(--cs) calc(var(--cl) - 10%));
--bg: hsl(var(--hsl) / 4%);
--msg: var(--color);
color: var(--text);
display: none;
position: fixed;
z-index: 9000;
right: var(--sep);
bottom: var(--bottom);
font: normal normal normal 16px/1.625em var(--joinchat-font);
letter-spacing: 0;
animation: joinchat_show 500ms cubic-bezier(0.18, 0.89, 0.32, 1.28) 10ms both;
transform: scale3d(0, 0, 0);
transform-origin: calc(var(--s)/-2) calc(var(--s)/-4);
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
touch-action: manipulation;
-webkit-font-smoothing: antialiased;
-webkit-tap-highlight-color: rgb(0 0 0 / 0%);
}
.joinchat *,
.joinchat *::before,
.joinchat *::after {
box-sizing: border-box;
}
.joinchat--show {
display: block;
transform: scale3d(1, 1, 1);
}
.joinchat--left {
right: auto;
left: var(--sep);
}
.joinchat--dark {
--msg: var(--dark);
}
.joinchat--noanim {
animation: none;
}
.joinchat--chatbox:not(.joinchat--noanim) {
transform-origin: 0 0;
animation-timing-function: ease-in-out;
}
.joinchat--hidden {
display: none !important;
}
@supports not (width: clamp(1px, 1%, 10px)) {
.joinchat {
--text: hsl(0deg 0% calc(var(--bw)*1%) / 90%);
}
}
.joinchat__button {
position: absolute;
z-index: 2;
bottom: 8px;
right: 8px;
height: var(--s);
width: var(--s);
background: #25d366 var(--joinchat-ico) center / 60% no-repeat;
color: inherit;
border-radius: 50%;
box-shadow: 1px 6px 24px 0 rgba(7, 94, 84, 0.24);
cursor: pointer;
transition: background-color 0.2s linear;
}
.joinchat__button:hover {
background-color: #128c7e;
}
.joinchat:has(.joinchat__chatbox) .joinchat__button:hover {
transition-duration: 1.5s;
}
.joinchat__button:active {
background-color: #128c7e;
transition: none;
}
.joinchat--left .joinchat__button {
right: auto;
left: 8px;
}
.joinchat--chatbox .joinchat__button {
display: none;
}
.joinchat__button__ico {
position: absolute;
inset: 0;
display: flex;
border-radius: 50%;
overflow: hidden;
color: var(--text) !important;
}
.joinchat__button__ico svg {
width: var(--ico-size, 100%);
height: var(--ico-size, 100%);
margin: calc((100% - var(--ico-size, 100%))/2);
}
.joinchat__button:has(.joinchat__button__ico) {
background: var(--color);
box-shadow: 1px 6px 24px 0 hsl(var(--ch) var(--cs) calc(var(--cl) - 10%) / 24%);
}
.joinchat__button:has(.joinchat__button__ico):hover,
.joinchat__button:has(.joinchat__button__ico):active {
background: var(--hover);
}
.joinchat__button__image {
position: absolute;
inset: 1px;
border-radius: 50%;
overflow: hidden;
opacity: 0;
}
.joinchat__button__image img,
.joinchat__button__image video {
display: block;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center;
object-position: center;
}
.joinchat--show .joinchat__button__image {
animation: joinchat_image_loop 20s linear 5s infinite normal both;
}
.joinchat--img .joinchat__button__image {
opacity: 1;
animation: none;
}
.joinchat__badge {
position: absolute;
z-index: 2;
bottom: calc(var(--s) - 8px);
right: 4px;
width: 20px;
height: 20px;
border: none;
border-radius: 50%;
background: #e82c0c;
color: #fff;
font-size: 12px;
font-weight: 600;
line-height: 20px;
text-align: center;
box-shadow: none;
opacity: 0;
pointer-events: none;
}
.joinchat--left .joinchat__badge {
right: auto;
left: calc(var(--s) - 8px);
}
.joinchat__badge.joinchat__badge--in {
animation: joinchat_badge_in 500ms cubic-bezier(0.27, 0.9, 0.41, 1.28) 1 both;
}
.joinchat__badge.joinchat__badge--out {
animation: joinchat_badge_out 400ms cubic-bezier(0.215, 0.61, 0.355, 1) 1 both;
}
.joinchat__tooltip {
position: absolute;
top: calc(var(--h) - 16px);
right: calc(var(--s) + 16px);
max-width: calc(100vw - var(--s) - 45px);
height: 32px;
padding: 0 14px;
border: none;
border-radius: 16px;
background: #fff;
color: rgba(0, 0, 0, 0.8);
line-height: 31px;
white-space: nowrap;
opacity: 0;
transition: opacity 0.3s ease-out 0.4s;
filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
pointer-events: none;
}
.joinchat__tooltip::after {
content: '';
display: block;
position: absolute;
top: 10px;
right: -6px;
border: 8px solid transparent;
border-width: 6px 0 6px 8px;
border-left-color: #fff;
}
.joinchat__tooltip div {
width: -moz-max-content;
width: max-content;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
}
.joinchat--tooltip .joinchat__tooltip {
animation: joinchat_tootlip 20s linear 5s 1 normal both;
}
.joinchat--chatbox .joinchat__tooltip {
display: none;
}
.joinchat--left .joinchat__tooltip {
right: auto;
left: calc(var(--s) + 16px);
}
.joinchat--left .joinchat__tooltip::after {
left: -6px;
right: auto;
border-color: transparent;
border-width: 6px 8px 6px 0;
border-right-color: #fff;
}
.joinchat__qr {
position: absolute;
z-index: 2;
bottom: calc(var(--s) + 24px);
right: 8px;
display: none;
flex-direction: column-reverse;
width: 228px;
min-height: 200px;
padding: 14px 14px 10px;
border: none;
border-radius: 16px;
background: #fff;
color: rgba(0, 0, 0, 0.8);
text-align: center;
white-space: nowrap;
filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
animation: joinchat_badge_in 400ms cubic-bezier(0.11, 0.84, 0.83, 1.01) 500ms both;
pointer-events: none;
}
.joinchat__qr::after {
content: '';
display: block;
position: absolute;
bottom: -6px;
right: calc(var(--h) - 6px);
border: 8px solid transparent;
border-width: 8px 6px 0;
border-top-color: #fff;
}
.joinchat--left .joinchat__qr {
left: 8px;
right: auto;
}
.joinchat--left .joinchat__qr::after {
left: calc(var(--h) - 6px);
right: auto;
}
.joinchat__qr div {
font-size: 14px;
color: #4a4a4a;
overflow: hidden;
text-overflow: ellipsis;
}
.joinchat__qr canvas {
display: block;
width: 200px;
height: 200px;
margin: 0;
image-rendering: pixelated;
}
.joinchat__chatbox {
content-visibility: hidden;
display: flex;
flex-direction: column;
position: absolute;
bottom: 0;
right: 0;
z-index: 1;
width: calc(100vw - var(--sep)*2);
max-width: 400px;
max-height: calc(var(--vh) - var(--bottom) - var(--sep));
border-radius: calc(var(--h) + 2px);
background: #fff linear-gradient(180deg, var(--color), var(--color) var(--header), var(--bg) var(--header), var(--bg));
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.5);
text-align: left;
overflow: hidden;
transform: scale3d(0, 0, 0);
opacity: 0;
transition: max-height 0.2s ease-out, opacity 0.4s ease-out, transform 0s linear 0.3s;
}
[dir="rtl"] .joinchat__chatbox {
text-align: right;
}
.joinchat--chatbox .joinchat__chatbox {
content-visibility: visible;
opacity: 1;
transform: scale3d(1, 1, 1);
transition: max-height 0.2s ease-out, opacity 0.2s ease-out, transform 0s linear;
}
.joinchat--left .joinchat__chatbox {
right: auto;
left: 0;
}
.joinchat--dark .joinchat__chatbox {
background: #1a1a1a linear-gradient(180deg, var(--dark), var(--dark) var(--header), var(--bg) var(--header), var(--bg));
}
.joinchat__header {
display: flex;
flex-flow: row;
align-items: center;
position: relative;
flex-shrink: 0;
height: var(--header);
padding: 0 70px 0 26px;
margin: 0;
}
[dir="rtl"] .joinchat__header {
padding: 0 26px 0 70px;
}
.joinchat__header span {
font-size: 19px;
font-weight: 600;
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
opacity: 0.8;
}
.joinchat__header a {
font-size: 11px;
line-height: 18px;
color: inherit !important;
text-decoration: none !important;
fill: currentcolor;
opacity: 0.8;
}
.joinchat__header a svg {
display: inline-block;
width: auto;
height: 18px;
vertical-align: -30%;
}
.joinchat__header a:hover,
.joinchat__header a:active {
color: inherit !important;
text-decoration: none !important;
opacity: 0.9;
filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}
.joinchat__wa {
display: block;
fill: currentcolor;
opacity: 0.8;
}
.joinchat__close {
--size: 34px;
position: absolute;
top: calc(50% - var(--size)/2);
right: 24px;
width: var(--size);
height: var(--size);
border-radius: 50%;
background: rgba(0, 0, 0, 0.4) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3E%3Cpath d='M24 2.4 21.6 0 12 9.6 2.4 0 0 2.4 9.6 12 0 21.6 2.4 24l9.6-9.6 9.6 9.6 2.4-2.4-9.6-9.6z'/%3E%3C/svg%3E") center / 12px no-repeat;
cursor: pointer;
transition: background-color 0.3s ease-out;
}
.joinchat__close:hover {
background-color: rgba(0, 0, 0, 0.6);
}
.joinchat__close:active {
background-color: rgba(0, 0, 0, 0.7);
}
[dir="rtl"] .joinchat__close {
right: auto;
left: 24px;
}
.joinchat__scroll {
overflow: hidden scroll;
overscroll-behavior-y: contain;
-webkit-overflow-scrolling: touch;
}
.joinchat__scroll::-webkit-scrollbar {
width: 4px;
background: rgb(0 0 0 / 0%);
}
.joinchat__scroll::-webkit-scrollbar-thumb {
border-radius: 2px;
background: rgb(0 0 0 / 0%);
}
.joinchat--blur .joinchat__scroll {
background: hsl(var(--hsl) / 2%);
backdrop-filter: blur(10px);
}
.joinchat__scroll:hover::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.2);
}
.joinchat__content {
display: flex;
flex-direction: column;
width: calc(100% + 4px);
padding: 20px 0 8px;
}
.joinchat__content::after {
content: '';
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 4px;
height: calc(var(--s) + 20px);
background: #fff linear-gradient(180deg, var(--bg), var(--bg));
-webkit-mask-image: linear-gradient(rgb(0 0 0 / 0%) 0, rgb(0 0 0 / 60%) 25%, rgb(0 0 0 / 92%) 70%, rgb(0 0 0 / 100%) 95%, rgb(0 0 0 / 100%));
mask-image: linear-gradient(rgb(0 0 0 / 0%) 0, rgb(0 0 0 / 60%) 25%, rgb(0 0 0 / 92%) 70%, rgb(0 0 0 / 100%) 95%, rgb(0 0 0 / 100%));
pointer-events: none;
}
.joinchat--dark .joinchat__content::after {
background-color: #1a1a1a;
}
.joinchat__open {
position: sticky;
z-index: 2;
bottom: 8px;
align-self: flex-end;
display: flex;
flex-direction: row;
min-width: var(--s);
height: var(--s);
margin: 0 8px;
background: var(--color);
color: inherit;
border-radius: var(--h);
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
overflow: hidden;
cursor: pointer;
transition: background-color 0.2s linear;
}
[dir="rtl"] .joinchat__open {
align-self: flex-start;
flex-direction: row-reverse;
}
.joinchat__open:hover,
.joinchat__open:active {
background: var(--hover);
}
.joinchat--left .joinchat__open {
align-self: flex-start;
flex-direction: row-reverse;
}
[dir="rtl"] .joinchat--left .joinchat__open {
flex-direction: row;
}
.joinchat--optout .joinchat__open {
background-color: #999;
pointer-events: none;
}
.joinchat__open__icon {
flex-shrink: 0;
width: var(--s);
height: var(--s);
max-width: var(--s);
padding: calc(var(--s)*0.18);
margin: 0;
overflow: hidden;
}
.joinchat__open__icon path {
fill: none !important;
stroke: var(--text) !important;
stroke-linecap: round;
stroke-width: 33px;
animation: none;
}
.joinchat__open__icon .joinchat__pa {
--stroke: 1097;
}
.joinchat__open__icon .joinchat__pb {
--stroke: 1020;
}
.joinchat--chatbox .joinchat__open__icon path {
stroke-dasharray: var(--stroke);
stroke-dashoffset: var(--stroke);
animation: joinchat_send_svg 6s 0.2s ease-in-out infinite;
}
.joinchat--chatbox .joinchat__open__icon .joinchat__pb {
animation-delay: 3.2s;
}
.joinchat--optout .joinchat__open__icon path {
animation: none;
}
.joinchat--optout .joinchat__open__icon .joinchat__pa {
stroke-dasharray: 0;
}
.joinchat__open__text {
max-width: 0;
padding: 0;
border-radius: var(--s);
font-weight: 600;
line-height: var(--s);
white-space: nowrap;
opacity: 0;
overflow: hidden;
text-overflow: ellipsis;
transition: none;
}
.joinchat--chatbox .joinchat__open__text {
max-width: min(400px - 16px - var(--s), 100vw - 16px - var(--s) - 2*var(--sep));
padding: 0 4px 0 24px;
opacity: 1;
transition: max-width 0.2s linear, opacity 0.4s ease-out 0.2s;
}
.joinchat--chatbox.joinchat--left .joinchat__open__text {
padding: 0 24px 0 4px;
}
.joinchat__optin {
padding: 0 16px;
margin-bottom: 16px;
color: #4a4a4a;
font-size: 13px;
line-height: 1.33;
}
.joinchat__optin a {
display: inline;
padding: 0;
color: inherit !important;
text-decoration: underline;
}
.joinchat__optin a:hover {
text-decoration-thickness: 2px;
}
.joinchat__optin input {
position: absolute;
visibility: hidden;
}
.joinchat__optin label {
position: relative;
display: block;
margin: 0;
padding: 0 0 0 30px;
color: inherit;
font: inherit;
cursor: pointer;
}
.joinchat__optin label::before {
content: '';
display: block;
position: absolute;
top: min(50% - 11px, 5px);
left: 0;
width: 22px;
height: 22px;
border: 3px solid var(--color);
border-radius: 4px;
background: #fff;
box-shadow: 0 0 0 1px var(--text);
transition: box-shadow 0.3s ease-in-out;
}
.joinchat--dark .joinchat__optin label::before {
background: #000;
}
.joinchat__optin label::after {
content: '';
display: none;
position: absolute;
top: min(50% - 8px, 8px);
left: 8px;
width: 6px;
height: 14px;
border: solid var(--text);
border-width: 0 3px 3px 0;
transform: rotate3d(0, 0, 1, 45deg);
}
[dir="rtl"] .joinchat__optin label {
padding: 0 30px 0 0;
}
[dir="rtl"] .joinchat__optin label::before {
left: auto;
right: 0;
}
[dir="rtl"] .joinchat__optin label::after {
left: auto;
right: 8px;
}
.joinchat__optin input:checked+label::before {
box-shadow: 0 0 0 1px var(--text), inset 0 0 0 10px var(--color);
}
.joinchat__optin input:checked+label::after {
display: block;
}
.joinchat--dark .joinchat__optin {
color: #d8d8d8;
}
.joinchat__chat {
--peak_l: path("M17 25V0C17 12.877 6.082 14.9 1.031 15.91c-1.559.31-1.179 2.272.004 2.272C9.609 18.182 17 18.088 17 25z");
--peak_r: path("M0 25.68V0c0 13.23 10.92 15.3 15.97 16.34 1.56.32 1.18 2.34 0 2.34-8.58 0-15.97-.1-15.97 7Z");
--peak: var(--peak_l);
display: flex;
flex-direction: column;
align-items: flex-start;
padding-bottom: 10px;
}
[dir="rtl"] .joinchat__chat {
--peak: var(--peak_r);
}
.joinchat__bubble {
position: relative;
min-width: 60px;
max-width: calc(100% - 52px);
min-height: 56px;
padding: 15px 20px;
margin: 0 26px 16px;
border-radius: 26px;
background: #fff;
color: #4a4a4a;
word-break: break-word;
filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
transform-origin: 0 50%;
animation: joinchat_show 250ms cubic-bezier(0, 0, 0.58, 1.19) 10ms both;
}
[dir="rtl"] .joinchat__bubble {
transform-origin: 100% 50%;
}
.joinchat__bubble::before {
content: '';
display: block;
position: absolute;
bottom: 18px;
left: -15px;
width: 17px;
height: 25px;
background: inherit;
clip-path: var(--peak);
}
[dir="rtl"] .joinchat__bubble::before {
left: auto;
right: -15px;
}
.joinchat--dark .joinchat__bubble {
background: #505050;
color: #d8d8d8;
}
.joinchat__bubble.joinchat__bubble--loading {
width: 70px;
border: none;
background: transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='4' cy='12' r='3'%3E%3Canimate id='c' attributeName='cy' begin='0;a.end+0.1s' calcMode='spline' dur='0.4s' keySplines='.33,.66,.66,1;.33,0,.66,.33' values='12;6;12'/%3E%3C/circle%3E%3Ccircle cx='12' cy='12' r='3'%3E%3Canimate attributeName='cy' begin='c.begin+0.1s' calcMode='spline' dur='0.4s' keySplines='.33,.66,.66,1;.33,0,.66,.33' values='12;6;12'/%3E%3C/circle%3E%3Ccircle cx='20' cy='12' r='3'%3E%3Canimate id='a' attributeName='cy' begin='c.begin+0.2s' calcMode='spline' dur='0.4s' keySplines='.33,.66,.66,1;.33,0,.66,.33' values='12;6;12'/%3E%3C/circle%3E%3C/svg%3E") 20px 20px no-repeat !important;
transform-origin: 50% !important;
animation: joinchat_show 100ms ease-out 10ms both;
}
.joinchat--dark .joinchat__bubble.joinchat__bubble--loading {
filter: invert(.5);
}
.joinchat__bubble.joinchat__bubble--note {
min-height: 0;
padding: 0;
background: none !important;
font-size: 13px;
line-height: 1.33;
filter: none;
animation: none;
}
.joinchat__bubble.joinchat__bubble--media {
padding: 5px;
}
.joinchat__bubble.joinchat__bubble--loading::before,
.joinchat__bubble.joinchat__bubble--note::before {
content: none;
}
.joinchat__bubble a {
color: var(--msg) !important;
font-size: 1em;
text-decoration: underline;
}
.joinchat__bubble a:hover,
.joinchat__bubble a:active {
color: var(--hover) !important;
border-color: var(--hover);
}
.joinchat__bubble a.joinchat__btn {
display: inline-block;
min-height: 46px;
max-width: 100%;
padding: 10px 20px;
margin: 5px 0;
border: 3px solid var(--msg);
border-radius: 23px;
line-height: 20px;
text-align: center;
text-decoration: none !important;
overflow: hidden;
text-overflow: ellipsis;
}
.joinchat__bubble a.joinchat__btn+.joinchat__bubble a.joinchat__btn {
margin-top: -5px;
}
.joinchat__bubble img,
.joinchat__bubble video {
max-width: 100%;
height: auto;
margin: 0.2em 0;
border-radius: 4px;
box-shadow: 0 1px 5px rgb(0 0 0 / 10%);
}
.joinchat__bubble .joinchat--inline {
display: inline-block;
margin: -10px 0;
border-radius: 0;
box-shadow: none;
vertical-align: middle;
}
.joinchat__bubble--media img,
.joinchat__bubble--media video,
.joinchat__bubble--media .joinchat--inline {
display: block;
margin: 0;
border-radius: 21px;
}
.joinchat__bubble code {
padding: 2px 5px;
font-size: 90%;
color: #c7254e;
background-color: #f9f2f4;
border-radius: 4px;
}
.joinchat__bubble hr {
width: 100% !important;
height: 0 !important;
padding: 0 !important;
border: none !important;
border-top: 2px solid var(--msg) !important;
margin: 10px 0 !important;
}
@keyframes joinchat_show {
from {
transform: scale3d(0, 0, 0);
}
to {
transform: scale3d(1, 1, 1);
}
}
@keyframes joinchat_badge_in {
from {
opacity: 0;
transform: translate3d(0, 50px, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@keyframes joinchat_badge_out {
from {
opacity: 1;
transform: translate3d(0, 0, 0);
}
to {
opacity: 0;
transform: translate3d(0, -20px, 0);
}
}
@keyframes joinchat_send_svg {
0%,
50%,
100% {
stroke-dashoffset: var(--stroke);
}
5%,
45% {
stroke-dashoffset: 0;
}
}
@keyframes joinchat_image_loop {
0% {
opacity: 0;
}
3%,
20% {
opacity: 1;
}
25%,
100% {
opacity: 0;
}
}
@keyframes joinchat_tootlip {
0% {
opacity: 0;
transform: scale3d(1, 0, 1);
}
1%,
20% {
opacity: 1;
transform: scale3d(1, 1, 1);
}
25%,
100% {
opacity: 0;
transform: scale3d(1, 1, 1);
}
}
.joinchat__woo-btn__wrapper {
clear: both;
}
.joinchat__woo-btn {
--s: 40px;
display: inline-block;
box-sizing: border-box;
height: var(--s);
max-width: 100%;
padding: 0 calc(var(--s)/2) 0 var(--s);
background: #25d366 var(--joinchat-ico) calc(var(--s)*0.2) 50% no-repeat;
background-size: calc(var(--s)*0.6);
color: #fff;
border-radius: calc(var(--s)/2);
font: 700 normal calc(var(--s)*0.35)/var(--s) var(--joinchat-font);
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
cursor: pointer;
transition: background-color 200ms;
}
.joinchat__woo-btn:empty {
padding-right: 0;
}
.joinchat__woo-btn:hover {
background-color: #128c7e;
}
@media (orientation: portrait) and (width >=481px),
(orientation: landscape) and (height >=481px) {
.joinchat--mobile {
display: none !important;
}
}
@media (width <=767px) {
.joinchat--footer-bar {
--bottom: 76px !important;
}
}
@media (width <=480px),
(orientation: landscape) and (height <=480px) {
.joinchat {
--sep: 6px;
--header: max(50px, var(--s)*0.9166667)
}
.joinchat__header__text {
font-size: 17px;
}
.joinchat__close {
--size: 28px;
}
.joinchat__bubble {
max-width: calc(100% - 40px);
padding: 16px;
margin: 0 20px 10px;
line-height: 24px
}
}
@media (hover: hover) {
.joinchat__button:hover .joinchat__tooltip {
opacity: 1;
animation: none;
transition: opacity 0.2s;
}
.joinchat--btn .joinchat__button:hover~.joinchat__qr,
.joinchat--chatbox:has(.joinchat__open:hover) .joinchat__qr {
display: flex;
}
}
@media (prefers-color-scheme: dark) {
.joinchat--dark-auto {
--msg: var(--dark);
}
.joinchat--dark-auto .joinchat__chatbox {
background: #1a1a1a linear-gradient(180deg, var(--dark), var(--dark) var(--header), var(--bg) var(--header), var(--bg));
}
.joinchat--dark-auto .joinchat__content::after {
background-color: #1a1a1a;
}
.joinchat--dark-auto .joinchat__optin label::before {
background: #000
}
.joinchat--dark-auto .joinchat__optin {
color: #d8d8d8
}
.joinchat--dark-auto .joinchat__bubble {
background: #505050;
color: #d8d8d8
}
.joinchat--dark-auto .joinchat__bubble.joinchat__bubble--loading {
filter: invert(.5)
}
}
@media (prefers-reduced-motion) {
.joinchat {
animation: none
}
.joinchat__open__icon path {
animation: none;
}
.joinchat__open__icon .joinchat__pa {
stroke-dasharray: 0;
}
.joinchat__open__text {
transition: none !important
}
.joinchat__bubble {
animation: none !important
}
}.wd-header-nav.wd-full-height .wd-nav>li>.wd-dropdown-menu{margin-top:0 !important}.wd-header-nav.wd-full-height .wd-nav>li>.wd-dropdown-menu:after{width:auto !important;height:auto !important}.rtl .wd-header-nav .wd-nav.wd-icon-right>li>a .wd-nav-img{order:0;margin:0;margin-inline-end:7px}.rtl .wd-header-nav .wd-nav.wd-icon-left>li>a .wd-nav-img{order:1;margin:0;margin-inline-start:7px}.wd-nav-mobile>li>a>.menu-label,.wd-nav-mobile>li>ul li>a>.menu-label{position:static;margin-top:0;margin-inline-start:5px;opacity:1;align-self:center}.wd-nav-mobile>li>a>.menu-label:before,.wd-nav-mobile>li>ul li>a>.menu-label:before{content:none}.whb-flex-row{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between}.whb-column{display:flex;align-items:center;flex-direction:row;max-height:inherit}.whb-col-left,.whb-mobile-left{justify-content:flex-start;margin-left:-10px}.whb-col-right,.whb-mobile-right{justify-content:flex-end;margin-right:-10px}.whb-col-mobile{flex:1 1 auto;justify-content:center;margin-inline:-10px}.whb-clone .whb-general-header-inner{height:var(--wd-header-clone-h);max-height:var(--wd-header-clone-h)}.whb-flex-flex-middle .whb-col-center{flex:1 1 0%}.whb-flex-equal-sides :is(.whb-col-left,.whb-col-right){flex:1 1 0%}.whb-col-1 :is(.whb-flex-row,.whb-column){max-width:calc(100% + 20px);justify-content:center}.whb-col-1 :is(.whb-col-left,.whb-mobile-left){flex:1 1 auto;margin-inline:-10px}.whb-col-1 .wd-header-html{max-width:100%}.whb-general-header :is(.whb-mobile-left,.whb-mobile-right){flex:1 1 0%}.whb-empty-column+.whb-mobile-right{flex:1 1 auto}.wd-header-overlap:where(:not(.single-product)) .wd-content-layout:first-child{padding-top:0}.whb-overcontent{min-height:.2px}.whb-overcontent .whb-main-header{position:absolute}body:not(.single-product) .whb-overcontent,.whb-overcontent.whb-custom-header{margin-bottom:0;padding-top:0 !important}.whb-with-shadow{box-shadow:0 1px 8px rgba(0,0,0,0.1)}.whb-main-header{position:relative;top:0;right:0;left:0;z-index:390;backface-visibility:hidden;-webkit-backface-visibility:hidden}.whb-clone{position:fixed;z-index:391;visibility:hidden;opacity:0;transition:opacity .1s ease, visibility .1s ease, transform .3s ease;animation:wd-fadeOutUpBig .1s ease;pointer-events:none}.whb-clone .whb-flex-row{border:none}.whb-clone.whb-sticked{visibility:visible;opacity:1;animation:wd-fadeInDownBig .3s ease;pointer-events:visible;pointer-events:unset}.whb-clone.whb-sticked .whb-not-sticky-row{display:block}.whb-clone .wd-header-main-nav{text-align:center}.whb-clone.whb-hide-on-scroll{transform:translateY(-100%);animation:none}.whb-clone.whb-scroll-up{transform:none}.whb-sticky-prepared{padding-top:var(--wd-header-h)}.whb-sticky-prepared .whb-main-header{position:absolute}:root:has(.whb-sticky-prepared):not(:has(.whb-top-bar)){--wd-top-bar-h: .00001px;--wd-top-bar-sm-h: .00001px}:root:has(.whb-sticky-prepared):not(:has(.whb-general-header)){--wd-header-general-h: .00001px;--wd-header-general-sm-h: .00001px}:root:has(.whb-sticky-prepared):not(:has(.whb-header-bottom)){--wd-header-bottom-h: .00001px;--wd-header-bottom-sm-h: .00001px;--wd-header-bottom-brd-w: .00001px}.whb-scroll-stick .whb-flex-row{transition:height .2s ease, max-height .2s ease}.whb-scroll-stick.whb-sticked .whb-flex-row{transition-duration:.3s}.whb-scroll-stick:is(.whb-scroll-down,.whb-scroll-up) .whb-main-header{transition:transform .3s ease}.whb-scroll-stick.whb-scroll-down .whb-main-header{transform:translateY(-100%)}.whb-scroll-stick.whb-scroll-up .whb-main-header{transform:none}.whb-scroll-slide.whb-sticked .whb-main-header{animation:wd-fadeInDownBig .4s ease}.whb-scroll-slide:is(.whb-scroll-down,.whb-scroll-up) .whb-main-header{transition:transform .3s ease}.whb-scroll-slide.whb-hide-on-scroll.whb-sticked .whb-main-header{transform:translateY(-100%);animation:none}.whb-scroll-slide.whb-hide-on-scroll.whb-scroll-up .whb-main-header{transform:none}.whb-sticked .whb-main-header{position:fixed}.whb-sticked .whb-row{transition:background-color .3s ease}.whb-sticked .whb-not-sticky-row{display:none}.whb-sticky-shadow.whb-sticked .whb-main-header{box-shadow:0 1px 3px rgba(0,0,0,0.1)}.whb-sticky-shadow.whb-sticked .whb-row:last-child{border-bottom:none}.whb-sticky-shadow.whb-sticked .whb-row:last-child .whb-flex-row{border-bottom:none}.whb-sticky-shadow+.whb-clone{box-shadow:0 1px 3px rgba(0,0,0,0.1)}.whb-sticky-shadow+.whb-clone .whb-row{border-bottom:none}.whb-row{transition:background-color .2s ease}.whb-color-dark:not(.whb-with-bg){background-color:#fff}.whb-color-light:not(.whb-with-bg){background-color:#212121}body:not(.single-product) .whb-overcontent:not(.whb-sticked) .whb-row:not(.whb-with-bg){background-color:transparent}.whb-row.whb-with-bdf,.whb-row.whb-with-bdf>.container{position:relative}.whb-row.whb-with-bdf:before{content:'';position:absolute;inset:0}@keyframes wd-fadeInDownBig{from{transform:translate3d(0, -100%, 0)}to{transform:none}}@keyframes wd-fadeOutUpBig{from{transform:none}to{transform:translate3d(0, -100%, 0)}}.wd-header-nav,.site-logo{padding-inline:10px}.wd-header-nav.wd-full-height,.wd-header-nav.wd-full-height :is(.wd-nav,.wd-nav>li,.wd-nav>li>a),.wd-header-divider.wd-full-height,.wd-header-divider.wd-full-height:before{height:100%}.wd-header-nav{flex:1 1 auto}.wd-header-nav.wd-inline{flex:0 0 auto;max-width:100%}.whb-color-light .wd-header-nav>span{color:rgba(255,255,255,0.8)}.wd-nav-main:not(.wd-offsets-calculated)>li>.wd-dropdown:not(.wd-design-default){opacity:0;pointer-events:none}@supports (-webkit-touch-callout: none){.wd-nav-main:not(.wd-offsets-calculated)>li>.wd-dropdown:not(.wd-design-default){transform:translateY(15px) translateZ(0)}}.wd-nav-main>li>a,.wd-nav-secondary>li>a{height:40px;font-weight:var(--wd-header-el-font-weight);font-style:var(--wd-header-el-font-style);font-size:var(--wd-header-el-font-size);font-family:var(--wd-header-el-font);text-transform:var(--wd-header-el-transform)}.wd-header-sticky-nav .wd-tools-icon:before{content:"\f15a";font-family:"woodmart-font"}.whb-top-bar .wd-nav-secondary>li>a{font-weight:400;font-size:12px}.wd-nav-secondary:not(.wd-offsets-calculated)>li>.wd-dropdown:not(.wd-design-default){opacity:0;pointer-events:none}@supports (-webkit-touch-callout: none){.wd-nav-secondary:not(.wd-offsets-calculated)>li>.wd-dropdown:not(.wd-design-default){transform:translateY(15px) translateZ(0)}}.site-logo{max-height:inherit}.wd-logo{max-height:inherit;transition:none}.wd-logo picture{max-height:inherit}.wd-logo picture img{max-width:inherit}.wd-logo img{padding-top:5px;padding-bottom:5px;max-height:inherit;transform:translateZ(0);backface-visibility:hidden;-webkit-backface-visibility:hidden;perspective:800px}.wd-logo img[src$=".svg"]{height:100%}.wd-logo img[width]:not([src$=".svg"]){width:auto;object-fit:contain}.wd-switch-logo .wd-sticky-logo{display:none;animation:wd-fadeIn .5s ease}:is(.whb-sticked,.whb-clone) .wd-switch-logo .wd-main-logo{display:none}:is(.whb-sticked,.whb-clone) .wd-switch-logo .wd-sticky-logo{display:block}.wd-header-divider:before{content:"";display:block;height:18px;border-right:1px solid}.whb-color-dark .wd-header-divider:before{border-color:var(--wd-divider-color, rgba(0,0,0,0.105))}.whb-color-light .wd-header-divider:before{border-color:var(--wd-divider-color, rgba(255,255,255,0.25))}.whb-col-right .wd-header-divider:last-child,.whb-mobile-right .wd-header-divider:last-child,.whb-col-mobile .wd-header-divider:last-child{padding-right:10px}.whb-col-left .wd-header-divider:first-child,.whb-mobile-left .wd-header-divider:first-child,.whb-col-mobile .wd-header-divider:first-child{padding-left:10px}.whb-col-center .wd-header-divider:first-child{padding-left:10px}.whb-col-center .wd-header-divider:last-child{padding-right:10px}.wd-header-mobile-nav .wd-tools-icon:before{content:"\f15a";font-family:"woodmart-font"}.mobile-nav .wd-heading{position:relative;z-index:6;background-color:inherit}.mobile-nav .searchform{--wd-form-brd-width: 0;--wd-form-bg: transparent;--wd-form-color: var(--color-gray-500);--wd-form-placeholder-color: var(--color-gray-500);z-index:4;box-shadow:0 -1px 9px rgba(0,0,0,0.17)}.mobile-nav .searchform input[type="text"]{padding-right:70px;padding-left:20px;height:70px;font-weight:600}.mobile-nav .wd-search-results{position:relative;z-index:4;border-radius:0;inset-inline:auto}.mobile-nav .wd-search-results:not(.wd-opened){display:none}.mobile-nav .wd-suggestion{padding:10px 20px}.mobile-nav .create-nav-msg{padding:20px}.wd-nav-mobile{display:none;margin-inline:0;animation:wd-fadeIn 1s ease}.wd-nav-mobile>li{flex:1 1 100%;max-width:100%;width:100%}.wd-nav-mobile>li>a{color:var(--color-gray-800)}.wd-nav-mobile li.menu-item-has-children>a:after{content:none}.wd-nav-mobile li:active>a,.wd-nav-mobile li.opener-page>a{background-color:var(--bgcolor-gray-100)}.wd-nav-mobile li:is(.current-menu-item,.wd-active)>a{color:var(--wd-primary-color)}.wd-nav-mobile .wd-with-icon>a:before{margin-right:7px;font-weight:400;font-family:"woodmart-font"}.wd-nav-mobile .menu-item-account>a:before{content:"\f124"}.wd-nav-mobile .menu-item-wishlist>a:before{content:"\f106"}.wd-nav-mobile .menu-item-compare>a:before{content:"\f128"}.wd-nav-mobile.wd-active{display:block}.wd-nav-mobile:not(.wd-html-block-on) .menu-item-has-block .wd-nav-opener{display:none}.wd-nav-mobile.wd-html-block-on .wd-mob-nav-html-block{overflow:hidden;border-bottom:1px solid var(--brdcolor-gray-300);max-width:var(--wd-side-hidden-w)}.wd-nav-mobile.wd-html-block-on .menu-item-has-block .wd-negative-gap>.elementor-container{--wd-el-column-gap: .001px}.wd-nav-mobile.wd-html-block-on .menu-item-has-block .mega-menu-list li>a{background:transparent !important}.wd-nav-mobile>li,.wd-nav-mobile>li>ul li{display:flex;flex-wrap:wrap}.wd-nav-mobile>li>a,.wd-nav-mobile>li>ul li>a{flex:1 1 0%;padding:5px 20px;min-height:50px;border-bottom:1px solid var(--brdcolor-gray-300)}.wd-nav-mobile>li>:is(.wd-sub-menu,.sub-sub-menu),.wd-nav-mobile>li>ul li>:is(.wd-sub-menu,.sub-sub-menu){display:none;flex:1 1 100%;order:3}.wd-nav-mob-tab{--nav-gap: .001px;display:flex;margin:0;border-bottom:1px solid var(--brdcolor-gray-300);background-color:rgba(0,0,0,0.04)}.wd-nav-mob-tab>li{flex:1 0 50%;max-width:50%}.wd-nav-mob-tab>li>a{padding:0;height:100%;font-weight:900}.wd-nav-mob-tab>li.wd-active>a{background-color:rgba(0,0,0,0.05)}.wd-nav-mob-tab[class*="wd-style-underline"]{--nav-color: #909090;--nav-color-hover: #333;--nav-color-active: #333}.wd-nav-mob-tab[class*="wd-style-underline"] .nav-link-text{position:static;flex:1 1 auto;padding:18px 15px;text-align:center}.wd-nav-mob-tab[class*="wd-style-underline"] .nav-link-text:after{top:auto;bottom:-1px}.wd-nav-mob-tab[class*="wd-style-underline"]:after{top:auto;bottom:-1px}.wd-nav-mob-tab.wd-swap{flex-direction:row-reverse}.wd-nav-mob-tab:not(.wd-swap) li:first-child .nav-link-text:after,.wd-nav-mob-tab.wd-swap li:last-child .nav-link-text:after{right:0;left:auto}.mobile-nav .wd-nav-opener{border-left:1px solid var(--brdcolor-gray-300);border-bottom:1px solid var(--brdcolor-gray-300)}.widgetarea-mobile{padding:20px}.mobile-menu-widget{margin:0 -20px 20px -20px;padding:0 20px 20px 20px;border-bottom:1px solid var(--brdcolor-gray-300)}.mobile-menu-widget:last-child{margin-bottom:0;padding-bottom:0;border-bottom:none}@media (min-width: 1025px){.whb-top-bar-inner{height:var(--wd-top-bar-h);max-height:var(--wd-top-bar-h)}.whb-sticked .whb-top-bar-inner{height:var(--wd-top-bar-sticky-h);max-height:var(--wd-top-bar-sticky-h)}.whb-general-header-inner{height:var(--wd-header-general-h);max-height:var(--wd-header-general-h)}.whb-sticked:not(.whb-clone) .whb-general-header-inner{height:var(--wd-header-general-sticky-h);max-height:var(--wd-header-general-sticky-h)}.whb-header-bottom-inner{height:var(--wd-header-bottom-h);max-height:var(--wd-header-bottom-h)}.whb-sticked .whb-header-bottom-inner{height:var(--wd-header-bottom-sticky-h);max-height:var(--wd-header-bottom-sticky-h)}.whb-hidden-lg,.whb-hidden-desktop{display:none}.whb-clone,.whb-sticked .whb-main-header{top:var(--wd-admin-bar-h)}.wd-header-overlap .wd-page-title{padding-top:calc(var(--wd-header-h) + var(--wd-header-boxed-sp, 0.001px) + var(--wd-title-sp))}.single-product .whb-overcontent:not(.whb-custom-header){padding-top:calc(var(--wd-header-h) + var(--wd-header-boxed-sp, 0.001px))}.whb-full-width .whb-row>.container,.whb-full-width+.whb-clone .whb-row>.container{max-width:100%;width:clamp(var(--wd-container-w), 95%, 100%)}.wd-nav-mobile>li>a:hover{color:var(--wd-primary-color)}}@media (max-width: 1024px){.whb-top-bar-inner{height:var(--wd-top-bar-sm-h);max-height:var(--wd-top-bar-sm-h)}.whb-general-header-inner{height:var(--wd-header-general-sm-h);max-height:var(--wd-header-general-sm-h)}.whb-header-bottom-inner{height:var(--wd-header-bottom-sm-h);max-height:var(--wd-header-bottom-sm-h)}.whb-visible-lg,.whb-hidden-mobile{display:none}.wd-header-overlap .wd-page-title{padding-top:calc(var(--wd-header-sm-h) + var(--wd-title-sp))}.single-product .whb-overcontent:not(.whb-custom-header){padding-top:var(--wd-header-sm-h)}.whb-sticky-prepared{padding-top:var(--wd-header-sm-h)}}.wd-tools-element{position:relative;--wd-header-el-color: #333;--wd-header-el-color-hover: rgba(51,51,51,.6);--wd-tools-icon-base-width: 20px}.wd-tools-element>a{display:flex;align-items:center;justify-content:center;height:40px;color:var(--wd-header-el-color);line-height:1;padding-inline:10px}.wd-tools-element .wd-tools-icon{position:relative;display:flex;align-items:center;justify-content:center;font-size:0}.wd-tools-element .wd-tools-icon:before{font-size:var(--wd-tools-icon-base-width)}.wd-tools-element .wd-tools-text{margin-inline-start:8px;text-transform:var(--wd-header-el-transform);white-space:nowrap;font-weight:var(--wd-header-el-font-weight);font-style:var(--wd-header-el-font-style);font-size:var(--wd-header-el-font-size);font-family:var(--wd-header-el-font)}.wd-tools-element .wd-tools-count{z-index:1;width:var(--wd-count-size, 15px);height:var(--wd-count-size, 15px);border-radius:50%;text-align:center;letter-spacing:0;font-weight:400;line-height:var(--wd-count-size, 15px)}.wd-tools-element:hover>a{color:var(--wd-header-el-color-hover)}.wd-tools-element.wd-style-icon .wd-tools-text{display:none !important}.whb-top-bar .wd-tools-element{--wd-count-size: 13px;--wd-tools-icon-base-width: 14px}.whb-top-bar .wd-tools-element .wd-tools-text{font-weight:400;font-size:12px}.whb-color-light .wd-tools-element{--wd-header-el-color: #fff;--wd-header-el-color-hover: rgba(255,255,255,0.8)}.wd-custom-icon,picture.wd-custom-icon img{max-width:var(--wd-tools-icon-width, 38px);width:var(--wd-tools-icon-width, revert-layer);transition:all .25s ease}.wd-tools-custom-icon .wd-tools-icon:before,.wd-tools-custom-icon .wd-tools-icon:after{display:none}.wd-tools-custom-icon:hover .wd-custom-icon{opacity:.6}.wd-tools-element:is(.wd-design-2,.wd-design-5).wd-style-icon.wd-with-count{margin-inline-end:5px}.wd-tools-element:is(.wd-design-2,.wd-design-5).wd-style-text.wd-with-count .wd-tools-text{margin-inline-start:14px}.wd-tools-element:is(.wd-design-2,.wd-design-5) .wd-tools-count{position:absolute;top:-5px;inset-inline-end:-9px;background-color:var(--wd-primary-color);color:#fff;font-size:9px}.wd-tools-element.wd-design-1.wd-with-count .wd-tools-count{margin-inline-start:8px}.wd-tools-element.wd-design-1 .wd-tools-count{width:auto;height:auto;text-transform:var(--wd-header-el-transform);font-weight:var(--wd-header-el-font-weight);font-style:var(--wd-header-el-font-style);font-size:var(--wd-header-el-font-size);font-family:var(--wd-header-el-font);line-height:inherit}.wd-tools-element.wd-design-1 .subtotal-divider{display:inline}.wd-tools-element.wd-design-4{--wd-count-size: 19px}.wd-tools-element.wd-design-4.wd-with-count .wd-tools-count{margin-inline-start:6px}.wd-tools-element.wd-design-4 .wd-tools-count{display:inline-block;padding:0 2px;background-color:var(--wd-primary-color);color:#fff;font-weight:700;font-size:10px}.whb-top-bar .wd-tools-element.wd-design-4{--wd-count-size: 16px}.wd-tools-element:is(.wd-design-6,.wd-design-7,.wd-design-8){--wd-count-size: 18px}.wd-tools-element:is(.wd-design-6,.wd-design-7,.wd-design-8) .wd-tools-inner{position:relative}.wd-tools-element:is(.wd-design-6,.wd-design-7,.wd-design-8) .wd-tools-inner .wd-tools-icon{position:static}.wd-tools-element:is(.wd-design-6,.wd-design-7,.wd-design-8) .wd-custom-icon{max-width:var(--wd-tools-icon-width, var(--wd-tools-icon-base-width))}.wd-tools-element:is(.wd-design-6,.wd-design-7,.wd-design-8) .wd-tools-count{position:absolute;top:-3px;inset-inline-end:-7px;background-color:#fff;box-shadow:0 0 4px rgba(0,0,0,0.17);color:var(--wd-primary-color);font-size:11px}.whb-top-bar .wd-tools-element:is(.wd-design-6,.wd-design-7,.wd-design-8){--wd-count-size: 13px}.wd-tools-element:is(.wd-design-6,.wd-design-7){--wd-tools-sp: 13px}.wd-tools-element:is(.wd-design-6,.wd-design-7) :is(.wd-tools-inner,.wd-tools-icon){height:42px;border-radius:42px}.wd-tools-element:is(.wd-design-6,.wd-design-7) .wd-tools-inner{display:flex;align-items:center;padding:0 var(--wd-tools-sp)}.wd-tools-element:is(.wd-design-6,.wd-design-7):not(.wd-with-wrap) .wd-tools-icon{width:42px}.whb-top-bar .wd-tools-element:is(.wd-design-6,.wd-design-7){--wd-tools-sp: 9px}.whb-top-bar .wd-tools-element:is(.wd-design-6,.wd-design-7) :is(.wd-tools-inner,.wd-tools-icon){height:28px}.whb-top-bar .wd-tools-element:is(.wd-design-6,.wd-design-7):not(.wd-with-wrap) .wd-tools-icon{width:28px}.whb-top-bar .wd-tools-element:is(.wd-design-6,.wd-design-7) .wd-tools-count{font-size:9px}.wd-tools-element.wd-design-6>a>:is(.wd-tools-inner,.wd-tools-icon){border:1px solid rgba(0,0,0,0.105)}.whb-color-light .wd-tools-element.wd-design-6>a>:is(.wd-tools-inner,.wd-tools-icon){border-color:rgba(255,255,255,0.25)}.wd-tools-element.wd-design-7>a>:is(.wd-tools-inner,.wd-tools-icon){background-color:var(--wd-primary-color);color:#fff;transition:inherit}.wd-tools-element.wd-design-7:hover>a>:is(.wd-tools-inner,.wd-tools-icon){color:rgba(255,255,255,0.8)}.whb-column>.info-box-wrapper,.wd-header-text,.whb-column>.wd-button-wrapper,.whb-column>.wd-social-icons,.wd-header-html{padding-inline:10px}.whb-column>.info-box-wrapper .wd-info-box{--ib-icon-sp: 10px}.wd-header-text{--wd-tags-mb: 10px;flex:1 1 auto}.wd-header-text p:first-child:empty{display:none}.wd-header-text.wd-inline{flex:0 0 auto}.whb-top-bar .wd-header-text{font-size:12px;line-height:1.2}.whb-color-light .wd-header-text{--wd-text-color: rgba(255,255,255,0.8);--wd-title-color: #fff;--wd-link-color: rgba(255,255,255,0.9);--wd-link-color-hover: #fff;color:var(--wd-text-color)}.wd-header-wishlist .wd-tools-icon:before{content:"\f106";font-family:"woodmart-font"}.wd-header-compare .wd-tools-icon:before{content:"\f128";font-family:"woodmart-font"}.wd-dropdown-compare a{justify-content:space-between}.wd-dropdown-compare .count{margin-inline-start:10px;color:var(--color-gray-300)}.wd-social-icons{display:flex;align-items:center;flex-wrap:wrap;gap:var(--wd-social-gap, calc(var(--wd-social-size, 40px) / 4));justify-content:var(--wd-align)}.wd-social-icons>a{display:inline-flex;align-items:center;justify-content:center;width:var(--wd-social-size, 40px);height:var(--wd-social-size, 40px);font-size:var(--wd-social-icon-size, calc(var(--wd-social-size, 40px) / 2.5));color:var(--wd-social-color);background-color:var(--wd-social-bg, unset);box-shadow:var(--wd-social-shadow);border:var(--wd-social-brd) var(--wd-social-brd-color);border-radius:var(--wd-social-radius);line-height:1}.wd-social-icons>a:hover{color:var(--wd-social-color-hover, var(--wd-social-color));background-color:var(--wd-social-bg-hover, var(--wd-social-bg));border-color:var(--wd-social-brd-color-hover, var(--wd-social-brd-color));box-shadow:var(--wd-social-shadow-hover)}.wd-social-icons .wd-icon:before{content:var(--wd-social-icon, unset);font-family:"woodmart-font"}.social-facebook{--wd-social-brand-color: #365493;--wd-social-icon: "\f180"}.social-twitter{--wd-social-brand-color: #000;--wd-social-icon: "\f154"}.social-instagram{--wd-social-brand-color: #774430;--wd-social-icon: "\f163"}.social-email{--wd-social-brand-color: #F89A1E;--wd-social-icon: "\f157"}.social-pinterest{--wd-social-brand-color: #CB2027;--wd-social-icon: "\f156"}.social-youtube{--wd-social-brand-color: #CB2027;--wd-social-icon: "\f162"}.social-tumblr{--wd-social-brand-color: #36465D;--wd-social-icon: "\f165"}.social-linkedin{--wd-social-brand-color: #0274B3;--wd-social-icon: "\f158"}.social-vimeo{--wd-social-brand-color: #1AB7EA;--wd-social-icon: "\f177"}.social-flickr{--wd-social-brand-color: #FE0072;--wd-social-icon: "\f164"}.social-github{--wd-social-brand-color: #171515;--wd-social-icon: "\f155"}.social-dribbble{--wd-social-brand-color: #EC5E95;--wd-social-icon: "\f166"}.social-behance{--wd-social-brand-color: #1F6FFC;--wd-social-icon: "\f170"}.social-soundcloud{--wd-social-brand-color: #F9490D;--wd-social-icon: "\f172"}.social-spotify{--wd-social-brand-color: #2EBD59;--wd-social-icon: "\f171"}.social-ok{--wd-social-brand-color: #EE8208;--wd-social-icon: "\f176"}.social-whatsapp{--wd-social-brand-color: #1EBEA5;--wd-social-icon: "\f175"}.social-vk{--wd-social-brand-color: #4C75A3;--wd-social-icon: "\f168"}.social-snapchat{--wd-social-brand-color: #FFFC00;--wd-social-icon: "\f178"}.social-tg{--wd-social-brand-color: #37AEE2;--wd-social-icon: "\f179"}.social-viber{--wd-social-brand-color: #834995;--wd-social-icon: "\f181"}.social-tiktok{--wd-social-brand-color: #010101;--wd-social-icon: "\f133"}.social-discord{--wd-social-brand-color: #5562EA;--wd-social-icon: "\f184"}.social-yelp{--wd-social-brand-color: #FF1A1A;--wd-social-icon: "\f187"}.social-bluesky{--wd-social-brand-color: #218CFF;--wd-social-icon: "\f189"}.social-threads{--wd-social-brand-color: #0A0A0A;--wd-social-icon: "\f188"}.wd-social-icons.wd-style-default{gap:0;--wd-social-color: rgba(0,0,0,0.6);--wd-social-color-hover: rgba(0,0,0,0.8)}.wd-social-icons.wd-style-default>a{width:auto;height:auto;padding:var(--wd-social-gap, calc(var(--wd-social-size, 40px) / 6))}.wd-social-icons.wd-style-default.color-scheme-light,[class*="color-scheme-light"] .wd-social-icons.wd-style-default{--wd-social-color: #fff;--wd-social-color-hover: rgba(255,255,255,0.6)}.wd-social-icons.wd-size-small{--wd-social-size: 30px;--wd-social-gap: 6px;--wd-social-icon-size: 14px}.wd-social-icons.wd-shape-circle{--wd-social-radius: 50%}.wd-social-icons.wd-shape-rounded{--wd-social-radius: 5px}.wd-social-icons:not([class*="wd-layout-"]) .wd-label{flex:1 1 100%}.wd-social-icons.wd-layout-justify .wd-label{flex:1 1 auto;text-align:start}@media (min-width: 1025px){.wd-social-icons.wd-size-large{--wd-social-size: 60px}}.btn-color-primary{--btn-color: #fff;--btn-color-hover: #fff;--btn-bgcolor: var(--wd-primary-color);--btn-bgcolor-hover: var(--wd-primary-color);--btn-brd-color: var(--wd-primary-color);--btn-brd-color-hover: var(--wd-primary-color);--btn-box-shadow-hover: inset 0 0 0 1000px rgba(0,0,0,0.1)}.btn-color-primary.btn-style-bordered{--btn-color: var(--wd-primary-color)}.btn-color-primary.btn-style-link{--btn-color: var(--color-gray-800);--btn-color-hover: var(--color-gray-500)}.btn-color-alt{--btn-color: #fff;--btn-color-hover: #fff;--btn-bgcolor: var(--wd-alternative-color);--btn-bgcolor-hover: var(--wd-alternative-color);--btn-brd-color: var(--wd-alternative-color);--btn-brd-color-hover: var(--wd-alternative-color);--btn-box-shadow-hover: inset 0 0 0 1000px rgba(0,0,0,0.1)}.btn-color-alt.btn-style-bordered{--btn-color: var(--wd-alternative-color)}.btn-color-alt.btn-style-link{--btn-color: var(--color-gray-800);--btn-color-hover: var(--color-gray-500)}.btn-color-black{--btn-color: #fff;--btn-color-hover: #fff;--btn-bgcolor: #212121;--btn-bgcolor-hover: #212121;--btn-brd-color: #212121;--btn-brd-color-hover: #212121;--btn-box-shadow-hover: inset 0 0 0 1000px rgba(0,0,0,0.1)}.btn-color-black.btn-style-bordered{--btn-color: #333}.btn-color-black.btn-style-link{--btn-color: var(--color-gray-800);--btn-color-hover: var(--color-gray-500)}.btn-color-white{--btn-color: #333;--btn-color-hover: #333;--btn-bgcolor: #fff;--btn-bgcolor-hover: #fff;--btn-brd-color: rgba(255,255,255,0.5);--btn-brd-color-hover: #fff;--btn-box-shadow-hover: inset 0 0 0 1000px rgba(0,0,0,0.1)}.btn-color-white.btn-style-bordered{--btn-color: #fff}.btn-color-white.btn-style-link{--btn-color: #fff;--btn-color-hover: #fff}.btn.btn-style-3d{--btn-box-shadow: inset 0 -2px 0 rgba(0,0,0,0.15);--btn-box-shadow-hover: inset 0 -2px 0 rgba(0,0,0,0.15)}.btn.btn-style-3d:active{box-shadow:none;top:1px}.btn.btn-style-bordered{--btn-bgcolor: transparent;--btn-brd-width: 2px;--btn-box-shadow-hover: none}.btn.btn-style-link{--btn-bgcolor: transparent;--btn-bgcolor-hover: transparent;--btn-brd-width: 2px;--btn-box-shadow-hover: none;--btn-height: none;--btn-padding: 0;border-top:0;border-inline:0}.btn-size-extra-small{--btn-padding: 5px 10px;--btn-height: 28px;--btn-font-size: 11px}.btn-size-small{--btn-padding: 5px 14px;--btn-height: 36px;--btn-font-size: 12px}.btn-shape-round,.btn-style-round{--btn-brd-radius: 35px}.btn-shape-semi-round,.btn-style-semi-round{--btn-brd-radius: 5px}.btn-icon-pos-left{flex-direction:row-reverse}.btn-icon-pos-right{flex-direction:row}@media (min-width: 1025px){.btn-size-large{--btn-padding: 5px 28px;--btn-height: 48px;--btn-font-size: 14px}.btn-size-extra-large{--btn-padding: 5px 40px;--btn-height: 56px;--btn-font-size: 16px}}.cart-widget-side{display:flex;flex-direction:column}.cart-widget-side .widget_shopping_cart{position:relative;flex:1 1 100%}.cart-widget-side .widget_shopping_cart_content{display:flex;flex:1 1 auto;flex-direction:column;height:100%}.cart-widget-side .shopping-cart-widget-body{position:relative;flex:1 1 auto}.cart-widget-side .wd-scroll-content{position:absolute;inset:0;max-height:100%;overscroll-behavior:none}.cart-widget-side .woocommerce-mini-cart .mini_cart_item{margin-bottom:0;padding:15px;transition:background-color .3s ease}.cart-widget-side .woocommerce-mini-cart .mini_cart_item:hover{background-color:var(--bgcolor-gray-100)}.cart-widget-side .woocommerce-mini-cart .remove{top:13px;inset-inline-end:10px}.cart-widget-side .shopping-cart-widget-footer{flex:0 0 auto;padding-bottom:15px}.cart-widget-side .shopping-cart-widget-footer>*{padding-inline:15px}.cart-widget-side .woocommerce-mini-cart__total{margin-top:0}.cart-widget-side .wd-empty-mini-cart{margin-top:20px;padding-inline:15px}.whb-col-right .wd-dropdown-cart{right:0;left:auto;margin-left:0;margin-right:calc(var(--nav-gap, .001px) / 2 * -1)}.wd-header-cart .wd-tools-icon:before{content:"\f105";font-family:"woodmart-font"}.wd-header-cart .wd-tools-icon.wd-icon-alt:before{content:"\f126";font-family:"woodmart-font"}.wd-header-cart :is(.wd-cart-subtotal,.subtotal-divider,.wd-tools-count){vertical-align:middle}.wd-header-cart .wd-cart-number>span,.wd-header-cart .subtotal-divider{display:none}.wd-header-cart .wd-cart-subtotal .amount{color:inherit;font-weight:inherit;font-size:inherit}.wd-header-cart:is(.wd-design-5,.wd-design-6,.wd-design-7):not(.wd-style-text) .wd-tools-text{display:none}.wd-header-cart.wd-design-2.wd-style-icon{margin-inline-end:5px}.wd-header-cart.wd-design-2 .wd-tools-text{margin-inline-start:15px}.wd-header-cart.wd-design-4 .wd-cart-number{display:inline-block;padding:0 2px;margin-inline-start:6px;width:19px;height:19px;border-radius:50%;background-color:var(--wd-primary-color);color:#fff;text-align:center;font-weight:700;font-size:10px;line-height:19px}.wd-header-cart.wd-design-4:not(.wd-style-text) .wd-tools-text{display:none}.whb-top-bar .wd-header-cart.wd-design-4 .wd-cart-number{width:16px;height:16px;line-height:16px}.wd-header-cart.wd-design-5:not(.wd-style-text){margin-inline-end:5px}.wd-header-cart.wd-design-5 .wd-tools-text{margin-inline-start:15px}.wd-dropdown-cart{padding:20px;width:330px}:is(.woocommerce-cart,.woocommerce-checkout) :is(.cart-widget-side,.wd-dropdown-cart){display:none}.wd-header-cart.wd-design-2 .wd-cart-number,.wd-header-cart.wd-design-5 .wd-cart-number{position:absolute;top:-5px;inset-inline-end:-9px;z-index:1;width:15px;height:15px;border-radius:50%;background-color:var(--wd-primary-color);color:#fff;text-align:center;letter-spacing:0;font-weight:400;font-size:9px;line-height:15px}.whb-top-bar .wd-header-cart.wd-design-2 .wd-cart-number,.whb-top-bar .wd-header-cart.wd-design-5 .wd-cart-number{width:13px;height:13px;line-height:13px}.wd-custom-dropdown{padding-inline:10px}@media (max-width: 1024px){.wd-dropdown-cart{display:none}}li:hover .cart-info .wd-entities-title{color:var(--wd-entities-title-color-hover)}.woocommerce-mini-cart>li{position:relative;display:flex;align-items:flex-start}.woocommerce-mini-cart>li a{margin-bottom:0}.woocommerce-mini-cart .remove{position:absolute;top:1px;inset-inline-end:0;z-index:2;width:20px;height:20px;border-radius:50%;color:var(--color-gray-800);text-align:center;font-size:0;line-height:20px}.woocommerce-mini-cart .remove:after{font-size:10px;content:"\f112";font-family:"woodmart-font"}.woocommerce-mini-cart .remove:hover{background-color:var(--bgcolor-white);box-shadow:0 0 3px rgba(0,0,0,0.1)}.woocommerce-mini-cart .blockOverlay{display:none !important}.cart-item-link{z-index:1;font-size:0}.cart-item-image{position:relative;flex:0 0 auto;overflow:hidden;margin-inline-end:15px}.cart-item-image img{float:none !important;margin-inline-end:0 !important;transition:opacity .6s ease}.cart-item-image:after{position:absolute;top:calc(50% - 10px);left:calc(50% - 10px);opacity:0;transition:opacity .6s ease;content:"";display:inline-block;width:20px;height:20px;border:1px solid rgba(0,0,0,0);border-left-color:var(--color-gray-900);border-radius:50%;vertical-align:middle;animation:wd-rotate 450ms infinite linear var(--wd-anim-state, paused)}.removing-process .cart-item-image:after,.wd-loading .cart-item-image:after{opacity:1;--wd-anim-state: running}.removing-process .cart-item-image img,.wd-loading .cart-item-image img{opacity:.2}.cart-info{flex:1 1 auto;padding-inline-end:20px}.cart-info .wd-entities-title{transition:all .25s ease}.cart-info .wd-entities-title p{margin-block:5px;color:var(--wd-text-color);font-weight:var(--wd-text-font-weight);font-style:var(--wd-text-font-style);font-size:90%;font-family:var(--wd-text-font)}.cart-info ul.variation{margin-bottom:6px;--li-mb: 5px;--list-mb: 0}.cart-info span.quantity{display:block;color:var(--color-gray-300);font-size:90%}.cart-info div.quantity{--wd-form-height: 32px;position:relative;z-index:1;display:inline-flex;margin-bottom:8px;transition:opacity .6s ease}.cart-info li.wd-loading>a{pointer-events:none}.cart-info li.wd-loading div.quantity{opacity:.6;cursor:none;pointer-events:none}.cart-info .wd-product-detail{margin-bottom:5px}.shopping-cart-widget-footer>*{margin-bottom:10px}.shopping-cart-widget-footer>*:last-child{margin-bottom:0}.shopping-cart-widget-footer .woocommerce-mini-cart__total{margin-bottom:0}.woocommerce-mini-cart__total{display:flex;align-items:center;flex-wrap:wrap;margin-top:15px;padding-block:15px;font-size:130%;border-top:1px solid var(--brdcolor-gray-300)}.woocommerce-mini-cart__total strong{color:var(--color-gray-900)}.woocommerce-mini-cart__total .woocommerce-Price-amount{flex-grow:1;text-align:end}.woocommerce-mini-cart__total .tax_label{margin-inline-start:5px}.woocommerce-mini-cart__buttons{display:block;text-align:center}.woocommerce-mini-cart__buttons>*{margin-bottom:10px;width:100%}.woocommerce-mini-cart__buttons>*:last-child{margin-bottom:0}.woocommerce-mini-cart__buttons .btn-cart{border-radius:var(--btn-default-brd-radius);color:var(--btn-default-color);box-shadow:var(--btn-default-box-shadow);background-color:var(--btn-default-bgcolor);text-transform:var(--btn-default-transform, var(--btn-transform, uppercase));font-weight:var(--btn-default-font-weight, var(--btn-font-weight, 600));font-family:var(--btn-default-font-family, var(--btn-font-family, inherit));font-style:var(--btn-default-font-style, var(--btn-font-style, unset))}.woocommerce-mini-cart__buttons .btn-cart:hover{color:var(--btn-default-color-hover);box-shadow:var(--btn-default-box-shadow-hover);background-color:var(--btn-default-bgcolor-hover)}.woocommerce-mini-cart__buttons .btn-cart:active{box-shadow:var(--btn-default-box-shadow-active);bottom:var(--btn-default-bottom-active)}.woocommerce-mini-cart__buttons .checkout{border-radius:var(--btn-accented-brd-radius);color:var(--btn-accented-color);box-shadow:var(--btn-accented-box-shadow);background-color:var(--btn-accented-bgcolor);text-transform:var(--btn-accented-transform, var(--btn-transform, uppercase));font-weight:var(--btn-accented-font-weight, var(--btn-font-weight, 600));font-family:var(--btn-accented-font-family, var(--btn-font-family, inherit));font-style:var(--btn-accented-font-style, var(--btn-font-style, unset))}.woocommerce-mini-cart__buttons .checkout:hover{color:var(--btn-accented-color-hover);box-shadow:var(--btn-accented-box-shadow-hover);background-color:var(--btn-accented-bgcolor-hover)}.woocommerce-mini-cart__buttons .checkout:active{box-shadow:var(--btn-accented-box-shadow-active);bottom:var(--btn-accented-bottom-active, 0)}.wd-empty-mini-cart{padding-block:10px;text-align:center}.wd-empty-mini-cart:before{display:block;margin-bottom:20px;color:rgba(var(--bgcolor-black-rgb), 0.07);font-size:86px;line-height:1;content:"\f147";font-family:"woodmart-font"}.wd-empty-mini-cart .btn{padding:5px 14px;min-height:36px;font-size:12px;border-radius:var(--btn-accented-brd-radius);color:var(--btn-accented-color);box-shadow:var(--btn-accented-box-shadow);background-color:var(--btn-accented-bgcolor);text-transform:var(--btn-accented-transform, var(--btn-transform, uppercase));font-weight:var(--btn-accented-font-weight, var(--btn-font-weight, 600));font-family:var(--btn-accented-font-family, var(--btn-font-family, inherit));font-style:var(--btn-accented-font-style, var(--btn-font-style, unset))}.wd-empty-mini-cart .btn:hover{color:var(--btn-accented-color-hover);box-shadow:var(--btn-accented-box-shadow-hover);background-color:var(--btn-accented-bgcolor-hover)}.wd-empty-mini-cart .btn:active{box-shadow:var(--btn-accented-box-shadow-active);bottom:var(--btn-accented-bottom-active, 0)}.product_list_widget>li{margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid var(--brdcolor-gray-300)}.product_list_widget>li:after{content:"";display:block;clear:both}.product_list_widget>li>a{display:block;margin-bottom:8px}.product_list_widget>li img{float:inline-start;margin-inline-end:15px;min-width:65px;max-width:65px;border-radius:calc(var(--wd-brd-radius) / 1.5)}.product_list_widget>li .widget-product-wrap{display:flex}.product_list_widget>li .widget-product-img{flex:0 0 auto;overflow:hidden;margin-inline-end:15px}.product_list_widget>li .widget-product-img img{float:none;margin-inline-end:0}.product_list_widget>li .widget-product-info{flex:1 1 auto}.product_list_widget>li .widget-product-info .price{display:block}.product_list_widget>li .wd-entities-title{margin-bottom:8px;font-size:inherit}.product_list_widget>li .star-rating{margin-bottom:4px;margin-inline-end:5px}.product_list_widget>li .reviewer{display:block;color:var(--color-gray-300)}.product_list_widget>li:last-child{margin-bottom:0;padding-bottom:0;border-bottom:none}.whb-col-right .wd-dropdown-register{right:0;left:auto;margin-left:0;margin-right:calc(var(--nav-gap, .001px) / 2 * -1)}.wd-dropdown-register[class*="wd-active"]{visibility:visible;opacity:1;transform:none !important;pointer-events:visible;pointer-events:unset}.wd-dropdown-register{padding:25px;width:350px}.wd-dropdown-register .wd-heading{padding:0 0 12px 0;margin-bottom:15px}.wd-dropdown-register .woocommerce-form-login{--wd-tags-mb: 15px}.form-style-underlined .wd-dropdown-register :is(.form-row-username,.form-row-password){margin-bottom:25px}.woocommerce-form-login>*:last-child{margin-bottom:0}.woocommerce-form-login:not(.hidden-form){display:block !important}.password-input{position:relative;display:block}.password-input input{padding-inline-end:var(--wd-form-height) !important}.show-password-input{display:flex;justify-content:center;align-items:center;position:absolute;top:0;inset-inline-end:0;width:var(--wd-form-height);height:var(--wd-form-height);cursor:pointer;font-size:16px;color:var(--color-gray-600);transition:all .25s ease;padding:0 !important;border:none !important;background:none !important;box-shadow:none !important;min-height:unset !important}.show-password-input:hover{color:var(--color-gray-400)}.show-password-input:before{font-family:"woodmart-font";content:"\f11a"}.show-password-input.display-password:before{content:"\f11b"}.login-form-footer{display:flex;align-items:center;flex-wrap:wrap;justify-content:space-between;gap:10px}.login-form-footer .lost_password{order:2;color:var(--wd-primary-color)}.login-form-footer .lost_password:hover{color:var(--wd-primary-color);text-decoration:underline;opacity:.7}.login-form-footer .woocommerce-form-login__rememberme{order:1;margin-bottom:0}:is(.register,.woocommerce-form-login) .button{width:100%;border-radius:var(--btn-accented-brd-radius);color:var(--btn-accented-color);box-shadow:var(--btn-accented-box-shadow);background-color:var(--btn-accented-bgcolor);text-transform:var(--btn-accented-transform, var(--btn-transform, uppercase));font-weight:var(--btn-accented-font-weight, var(--btn-font-weight, 600));font-family:var(--btn-accented-font-family, var(--btn-font-family, inherit));font-style:var(--btn-accented-font-style, var(--btn-font-style, unset))}:is(.register,.woocommerce-form-login) .button:hover{color:var(--btn-accented-color-hover);box-shadow:var(--btn-accented-box-shadow-hover);background-color:var(--btn-accented-bgcolor-hover)}:is(.register,.woocommerce-form-login) .button:active{box-shadow:var(--btn-accented-box-shadow-active);bottom:var(--btn-accented-bottom-active, 0)}.wd-login-divider{display:flex;align-items:center;text-transform:uppercase}.wd-login-divider span{margin-inline:20px}.wd-login-divider:after,.wd-login-divider:before{content:"";flex:1 0 0;border-bottom:1px solid var(--brdcolor-gray-300)}.wd-header-my-account .wd-tools-icon:before{content:"\f124";font-family:"woodmart-font"}.wd-account-style-text .wd-tools-icon{display:none !important}.wd-account-style-text .wd-tools-text{margin-left:0}.wd-account-style-icon:not(.wd-with-username) .wd-tools-text{display:none}@media (max-width: 1024px){.wd-header-my-account .wd-dropdown{display:none}}.mobile-nav .wd-nav-opener.wd-active{background-color:var(--wd-primary-color);color:#fff}.wd-page-title{--wd-align: start;--wd-title-sp: 15px;--wd-title-font-s: 36px;position:relative;padding-block:var(--wd-title-sp)}.wd-page-title .container{display:flex;flex-direction:column;align-items:var(--wd-align);text-align:var(--wd-align);gap:10px}.wd-page-title .title{font-size:var(--wd-title-font-s);line-height:1.2;margin-bottom:0}.title-design-centered{--wd-align: center}@media (min-width: 1025px){.title-size-small{--wd-title-sp: 20px;--wd-title-font-s: 44px}.title-size-default{--wd-title-sp: 60px;--wd-title-font-s: 68px}.title-size-large{--wd-title-sp: 100px;--wd-title-font-s: 78px}}.product-design-alt .woocommerce-product-details__short-description :is(ul,ol){padding-inline-start:0;list-style:none;text-align:center}.product-design-alt .summary-inner .wd-tab-wrapper>div .wd-accordion-opener{display:none}.product-design-alt .summary-inner .woocommerce-Tabs-panel{text-align:start}.product-design-alt .summary-inner>.wd-action-btn{margin-inline:10px}.product-image-summary .summary-inner{--wd-mb: 20px;container:entry-summary / inline-size}.single-product .wd-builder-off{--wd-single-spacing: 40px}.wd-builder-off .single-product-page>div:not(:last-child){margin-bottom:var(--wd-single-spacing)}.wd-before-product-tabs{padding-block:15px;background-color:var(--bgcolor-gray-200)}.wd-before-product-tabs>.container{--wd-align: center;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:10px 30px}.product-tabs-wrapper+.wd-before-product-tabs{margin-top:calc(var(--wd-single-spacing) * -1 - 1px)}.related-and-upsells .wd-products-element{margin-bottom:var(--wd-single-spacing)}.related-and-upsells .wd-products-element:last-child{margin-bottom:0}.related-and-upsells:empty{margin-top:calc(var(--wd-single-spacing) * -1)}.tabs-layout-tabs+.wd-single-reviews{padding-top:var(--wd-single-spacing);border-top:1px solid var(--brdcolor-gray-300)}.wd-content-area>.single-breadcrumbs-wrapper{margin-bottom:20px}.single-breadcrumbs-wrapper :is(.wd-breadcrumbs,.yoast-breadcrumb){flex:1 1 auto;text-align:start}.single-breadcrumbs-wrapper .wd-products-nav{flex:0 0 auto}@container entry-summary (width < 400px){.woocommerce-breadcrumb .wd-last-link{--wd-link-color: var(--color-gray-900);font-weight:600}.woocommerce-breadcrumb .wd-last-link ~ span{display:none}}.summary-inner>.wd-action-btn{margin-inline-end:20px}.summary-inner>.wd-action-btn:last-child{margin-bottom:var(--wd-mb)}@media (max-width: 1024px){.single-product .wd-builder-off{--wd-single-spacing: 20px;padding-block:20px}}@media (max-width: 768.98px){.single-product-page .summary-inner{margin-bottom:-20px}}@container entry-summary (width > 400px){.product-design-default .wd-product-brands{flex-direction:column;float:right;margin-left:10px}.product-design-default .wd-product-brands a{display:flex;align-items:center;justify-content:center;padding:10px;min-height:70px;background-color:var(--bgcolor-white);box-shadow:0 0 2px rgba(0,0,0,0.12);border-radius:calc(var(--wd-brd-radius) / 1.5)}.product-design-default .wd-product-brands a:hover{box-shadow:0 0 6px rgba(0,0,0,0.14);opacity:1}}.summary-inner .product_meta{margin-bottom:10px;padding-top:20px;border-top:1px solid var(--brdcolor-gray-300)}.summary-inner .wd-accordion+.product_meta{padding-top:0;border-top:none}.product-image-summary .shop_attributes{--wd-attr-v-gap: 10px;--wd-attr-brd-style: dashed;margin-bottom:var(--wd-mb)}.summary-inner>.price{font-size:155%;line-height:1.2}.summary-inner>.price .price{font-size:inherit}.summary-inner>.price .login-to-prices-msg{font-size:80%}.summary-inner>.price:empty{display:none}@media (max-width: 1024px){.summary-inner>.price{margin-bottom:15px;font-size:130%}}.product-tabs-wrapper{padding-top:var(--wd-single-spacing);padding-bottom:var(--wd-single-spacing);border-top:1px solid var(--brdcolor-gray-300);border-bottom:1px solid var(--brdcolor-gray-300);background-color:var(--bgcolor-white)}.wd-content-area:not([style*="col-lg:12;"]) .product-tabs-wrapper{background-color:transparent}.product-tabs-inner>div:not(:last-child){margin-bottom:var(--wd-single-spacing)}.tabs-layout-tabs .shop_attributes{max-width:650px}.product-tabs-wrapper .tabs-layout-tabs>.wd-nav-tabs-wrapper{margin-top:calc(var(--wd-single-spacing) * -1 - 1px);margin-bottom:30px}.tabs-layout-accordion .wd-scroll-content{max-height:250px}.tabs-layout-accordion .wd-single-reviews .wd-scroll-content{max-height:400px}.tabs-location-standard.tabs-type-accordion{--wd-single-spacing: 25px}.tabs-location-standard.tabs-type-accordion .product-tabs-wrapper{border-top:none}.tabs-location-standard.tabs-type-accordion.reviews-location-tabs .product-tabs-wrapper{border-bottom:none}.tabs-location-summary .tabs-layout-accordion{--wd-accordion-font-size: 14px;--wd-accordion-spacing: 15px}@media (max-width: 1024px){.product-tabs-wrapper{border-top:none}}.product-has-bg .product-tabs-wrapper{border-top:none}.product-summary-shadow .summary-inner{padding:30px 35px 15px;background-color:var(--bgcolor-white);box-shadow:0 0 5px rgba(0,0,0,0.1);border-radius:var(--wd-brd-radius)}.product-extra-content.wd-location-before{margin-bottom:var(--wd-single-spacing)}.product-extra-content.wd-location-after{margin-top:var(--wd-single-spacing)}@media (min-width: 769px){.product-full-width:is(.product-design-alt,.product-summary-shadow,.image-full-width) .entry-summary{display:flex;align-items:start;justify-content:center}.product-full-width:is(.product-design-alt,.product-summary-shadow,.image-full-width) .entry-summary .summary-inner{max-width:620px;width:100%}}.wd-products-nav .wd-dropdown{right:0;left:auto;margin-left:0;margin-right:calc(var(--nav-gap, .001px) / 2 * -1);display:flex;align-items:center;min-width:240px}.wd-products-nav{position:relative;display:inline-flex;align-items:center;letter-spacing:0;font-size:14px}.wd-product-nav-btn{display:flex;align-items:center;justify-content:center;width:24px;height:24px;color:var(--color-gray-900)}.wd-product-nav-btn:hover{color:var(--color-gray-500)}.wd-product-nav-btn:before{font-size:12px;font-family:"woodmart-font"}.wd-product-nav-btn.wd-btn-prev:before{content:"\f114"}.wd-product-nav-btn.wd-btn-next:before{content:"\f113"}.wd-product-nav-btn.wd-btn-back span{font-size:0}.wd-product-nav-btn.wd-btn-back:before{content:"\f122"}.wd-product-nav-thumb{flex-shrink:0;max-width:90px}.wd-product-nav-thumb img{border-top-left-radius:var(--wd-brd-radius);border-bottom-left-radius:var(--wd-brd-radius)}.wd-product-nav-desc{padding:10px 15px}.wd-product-nav-desc .wd-entities-title{margin-bottom:5px}@media (max-width: 768.98px){.wd-products-nav .wd-dropdown{display:none}}.pswp{z-index:1500;display:none;overflow:hidden;outline:none;-webkit-text-size-adjust:100%;touch-action:none;-webkit-backface-visibility:hidden}.pswp img{max-width:none}.pswp--animate_opacity{opacity:.001;transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);will-change:opacity}.pswp--open{display:block}.pswp__bg{background:#000;opacity:0;-webkit-backface-visibility:hidden;will-change:opacity;transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);will-change:opacity}.pswp__scroll-wrap{overflow:hidden}:is(.pswp__container,.pswp__zoom-wrap){position:absolute;inset:0;touch-action:none;-webkit-backface-visibility:hidden;will-change:transform}:is(.pswp__container,.pswp__img){-webkit-tap-highlight-color:transparent;user-select:none;-webkit-touch-callout:none}.pswp__zoom-wrap{position:absolute;width:100%;transition:transform 333ms cubic-bezier(0.4, 0, 0.22, 1);transform-origin:left top}.pswp--animated-in :is(.pswp__bg,.pswp__zoom-wrap){transition:none}.pswp__item{position:absolute;inset:0;overflow:hidden}.pswp__img{position:absolute;top:0;left:0;width:auto;height:auto;border-radius:var(--wd-brd-radius)}.pswp--zoom-allowed .pswp__img{cursor:zoom-in}.pswp--zoomed-in .pswp__img{cursor:grab}.pswp--dragging .pswp__img{cursor:grabbing}.pswp__img--placeholder{-webkit-backface-visibility:hidden}.pswp__img--placeholder--blank{background:#242424}.pswp__error-msg{position:absolute;top:50%;left:0;margin-top:-8px;width:100%;color:#bbb;text-align:center;font-size:14px;line-height:16px}.pswp__error-msg a{color:#bbb;text-decoration:underline}.pswp__button{position:relative;float:right;margin:0;padding:0;width:44px;height:44px;min-height:unset;background:none;opacity:.75;transition:opacity .2s;-webkit-appearance:none}.pswp__button:hover{background-color:unset;opacity:1}.pswp__button::-moz-focus-inner{padding:0;border:0}.pswp__button,[class*="pswp__button--arrow--"]:before{background:url(//evaporatifsogutucu.net/wp-content/themes/woodmart/images/default-skin.png) 0 0 no-repeat;background-size:264px 88px}@media (-webkit-min-device-pixel-ratio: 1.1), (min-resolution: 105dpi), (min-resolution: 1.1dppx){.pswp--svg .pswp__button,.pswp--svg [class*="pswp__button--arrow--"]:before{background-image:url(//evaporatifsogutucu.net/wp-content/themes/woodmart/images/default-skin.svg)}.pswp--svg [class*="pswp__button--arrow--"]{background:none}}.pswp__button--close{background-position:0 -44px}.pswp__ui--over-close .pswp__button--close{opacity:1}.pswp__button--share{background-position:-44px -44px}.pswp__button--fs{display:none}.pswp--supports-fs .pswp__button--fs{display:block}.pswp--fs .pswp__button--fs{background-position:-44px 0}.pswp__button--zoom{display:none;background-position:-88px 0}.pswp--zoom-allowed .pswp__button--zoom{display:block}.pswp--zoomed-in .pswp__button--zoom{background-position:-132px 0}[class*="pswp__button--arrow--"]{position:absolute;top:50%;margin-top:-50px;width:70px;height:100px;background:none}.pswp--touch [class*="pswp__button--arrow--"]{visibility:hidden}[class*="pswp__button--arrow--"]:before{content:'';position:absolute;top:35px;width:32px;height:30px;background-color:rgba(0,0,0,0.3)}.pswp__button--arrow--left{left:0}.pswp__button--arrow--left:before{left:6px;background-position:-138px -44px}.pswp__button--arrow--right{right:0}.pswp__button--arrow--right:before{right:6px;background-position:-94px -44px}.pswp__counter,.pswp__share-modal{user-select:none}.pswp__share-modal{z-index:1600;padding:10px;background:rgba(0,0,0,0.5);opacity:0;transition:opacity .25s ease-out;-webkit-backface-visibility:hidden;will-change:opacity}.pswp__share-modal.pswp__share-modal--hidden{display:none}.pswp__share-tooltip{position:absolute;top:calc(56px + var(--wd-admin-bar-h));right:44px;z-index:1620;background:#fff;transition:transform .25s;transform:translateY(6px);border-radius:var(--wd-brd-radius);-webkit-backface-visibility:hidden}.pswp__share-tooltip a{display:block;padding:8px 12px;color:#000;text-decoration:none;font-size:14px;line-height:18px}.pswp__share-tooltip a:first-child{border-top-left-radius:var(--wd-brd-radius);border-top-right-radius:var(--wd-brd-radius)}.pswp__share-tooltip a:last-child{border-bottom-left-radius:var(--wd-brd-radius);border-bottom-right-radius:var(--wd-brd-radius)}.pswp__share-tooltip a:hover{color:#fff}.pswp__share-tooltip:before{content:'';position:absolute;top:-12px;right:15px;display:block;border:6px solid transparent;border-bottom-color:#fff}.pswp--touch .pswp__share-tooltip a{padding:16px 12px}.pswp__share-modal--fade-in{opacity:1}.pswp__share-modal--fade-in .pswp__share-tooltip{transform:none}.pswp__share--facebook:hover{background:#365493}.pswp__share--twitter:hover{background:#000}.pswp__share--pinterest:hover{background:#CE272D}.pswp__share--download:hover{background:var(--wd-primary-color)}.pswp__counter{position:absolute;top:0;left:0;padding:0 10px;height:44px;color:#fff;font-size:13px;line-height:44px;opacity:.75}.pswp__caption{position:absolute;bottom:0;left:0;min-height:44px;width:100%}.pswp__caption small{color:#bbb;font-size:11px}.pswp__caption__center{margin:0 auto;padding:10px;max-width:420px;color:#bbb;text-align:left;font-size:13px;line-height:20px}.pswp__caption--empty{display:none}.pswp__caption--fake{visibility:hidden}.pswp__preloader{position:relative;display:flex;float:right;align-items:center;justify-content:center;width:44px;height:44px;font-size:0;line-height:1;opacity:0;transition:opacity .25s ease-out}@media screen and (min-width: 1025px){.pswp__preloader{position:absolute;top:0;left:calc(50% - 22px)}}.pswp__preloader__donut{content:"";display:inline-block;width:14px;height:14px;border:2px solid rgba(0,0,0,0);border-left-color:#fff;border-radius:50%;vertical-align:middle;animation:wd-rotate 450ms infinite linear var(--wd-anim-state, paused)}.pswp__preloader--active .pswp__preloader__donut{--wd-anim-state: running}.pswp__preloader--active{opacity:1}.pswp__ui{z-index:1550;visibility:visible;-webkit-font-smoothing:auto;opacity:1}.pswp--fs{--wd-admin-bar-h: 0}.pswp__top-bar{position:absolute;top:var(--wd-admin-bar-h);left:0;width:100%;height:44px}.pswp__caption,.pswp__top-bar,.pswp--has_mouse [class*="pswp__button--arrow--"]{transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);-webkit-backface-visibility:hidden;will-change:opacity}.pswp--has_mouse [class*="pswp__button--arrow--"]{visibility:visible}:is(.pswp__top-bar,.pswp__caption){background-color:rgba(0,0,0,0.5)}.pswp__ui--fit :is(.pswp__top-bar,.pswp__caption){background-color:rgba(0,0,0,0.3)}.pswp__ui--idle .pswp__top-bar,.pswp__ui--idle [class*="pswp__button--arrow--"]{opacity:0}.pswp__ui--hidden :is(.pswp__top-bar,.pswp__caption,[class*="pswp__button--arrow--"]){opacity:.001}.pswp__ui--one-slide :is([class*="pswp__button--arrow--"],.pswp__counter){display:none}.pswp__element--disabled{display:none !important}.pswp,.pswp__bg,.pswp__scroll-wrap,.pswp__share-modal{position:absolute;inset:0}.woocommerce-product-gallery{display:flex;flex-wrap:wrap;gap:var(--wd-gallery-gap, 10px)}.woocommerce-product-gallery>*{flex:1 1 100%;max-width:100%}.woocommerce-product-gallery img{width:100%;border-radius:var(--wd-brd-radius)}.woocommerce-product-gallery .wd-carousel-inner{margin:0}.woocommerce-product-gallery .wd-carousel{--wd-gap: var(--wd-gallery-gap, 10px);padding:0;border-radius:var(--wd-brd-radius)}.woocommerce-product-gallery .wd-nav-arrows.wd-pos-sep{--wd-arrow-offset-h: calc(var(--wd-arrow-width, var(--wd-arrow-size, 50px)) / -1)}.woocommerce-product-gallery .wd-nav-pagin-wrap{position:absolute;inset-inline:15px;bottom:15px;z-index:2}.woocommerce-product-gallery .woocommerce-product-gallery__image{position:relative;overflow:hidden;border-radius:var(--wd-brd-radius)}.woocommerce-product-gallery .zoomImg[src$=".png"]{background-color:var(--wd-main-bgcolor);backface-visibility:hidden;-webkit-backface-visibility:hidden}.woocommerce-product-gallery .wd-carousel-wrap[style*="grabbing"] .zoomImg{opacity:0 !important;transition:opacity .25s ease}.wd-gallery-thumb .wd-carousel-item{cursor:pointer;transition:opacity .25s ease}.wd-gallery-thumb :is(.wd-carousel-item:hover,.wd-thumb-active,.wd-carousel:not(.wd-initialized) .wd-carousel-item:first-child){opacity:.5}.woocommerce-product-gallery:not(.wd-has-thumb) .wd-gallery-thumb{display:none}.wd-single-gallery{max-width:100%}.woocommerce-product-gallery .wd-carousel[data-center_mode="yes"] .wd-carousel-wrap:not([style]){transform:translate3d(calc(50% - (100% / var(--wd-col)) * 1.5), 0, 0)}.rtl .woocommerce-product-gallery .wd-carousel[data-center_mode="yes"] .wd-carousel-wrap:not([style]){transform:translate3d(calc(-50% + (100% / var(--wd-col)) * 1.5), 0, 0)}.woocommerce-product-gallery .wd-carousel[data-center_mode="yes"] .wd-carousel-wrap:not([style]) .wd-carousel-item:first-child:last-child{margin-inline-start:auto}.product-additional-galleries{position:absolute;bottom:0;inset-inline-start:0;z-index:3;display:flex;align-items:flex-start;flex-direction:column;gap:10px;padding:15px;transition:all .3s ease}.wd-action-btn.wd-style-icon-bg-text{--wd-action-icon-size: 18px;--wd-action-color: var(--color-gray-600);--wd-action-color-hover: var(--color-gray-800)}.wd-action-btn.wd-style-icon-bg-text>a{flex-wrap:nowrap;overflow:hidden;min-width:calc(var(--wd-action-icon-size) * 2.8);height:calc(var(--wd-action-icon-size) * 2.8);border-radius:calc(var(--wd-action-icon-size) * 2);background-color:var(--bgcolor-white);box-shadow:0 0 5px rgba(0,0,0,0.08)}.wd-action-btn.wd-style-icon-bg-text>a:before{display:inline-flex;align-items:center;justify-content:center;width:calc(var(--wd-action-icon-size) * 2.8);height:calc(var(--wd-action-icon-size) * 2.8)}.wd-action-btn.wd-style-icon-bg-text>a>span{overflow:hidden;max-width:0;white-space:nowrap;font-size:90%;font-weight:600;transition:padding 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15),max-width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15)}.wd-action-btn.wd-style-icon-bg-text>a:hover>span{padding-inline-end:calc(var(--wd-action-icon-size) * 1.4);max-width:280px}.product-360-button>a:before{content:"\f102"}.wd-show-product-gallery-wrap>a:before{content:"\f127"}.wd-play-icon>a:before{content:"\f101"}.product-360-view-wrapper{--wd-popup-width: 700px}.product-360-view-wrapper.wd-popup{--wd-popup-padding: .001px;background-color:transparent}.woocommerce-product-gallery.image-action-zoom .wd-carousel-item figure a:last-child,.woocommerce-product-gallery.image-action-none .wd-carousel-item figure a{cursor:default;pointer-events:none}.woocommerce-product-gallery .product-labels{inset-inline-start:auto;z-index:10;align-items:flex-end;max-width:30%}.woocommerce-product-gallery .product-labels.labels-rectangular{inset-inline:auto 0}.woocommerce-product-gallery .product-labels[class*="labels-rounded"]{top:15px;inset-inline-end:15px}.woocommerce-product-gallery .product-labels.labels-rounded .product-label{min-width:55px;min-height:55px}.woocommerce-product-gallery .product-labels.labels-rounded .label-with-img{min-height:auto}@media (min-width: 1025px){[style*="col-lg:auto"] .wd-carousel-item{flex:0 0 auto;max-width:unset}.wd-builder-on :is(.thumbs-grid-bottom_grid,.thumbs-grid-bottom_column) .wd-carousel{--wd-col: var(--wd-col-lg)!important}}@media (max-width: 1024px){.wd-action-btn.wd-style-icon-bg-text{--wd-action-icon-size: 16px}}@media (max-width: 768.98px){[style*="col-sm:auto"] .wd-carousel-item{flex:0 0 auto;max-width:unset}.wd-builder-on :is(.thumbs-grid-bottom_grid,.thumbs-grid-bottom_column) .wd-carousel{--wd-col: var(--wd-col-sm)!important}}@media (max-width: 576px){.woocommerce-product-gallery .product-labels[class*="labels-rounded"]{top:10px;inset-inline-end:10px}.woocommerce-product-gallery .product-labels.labels-rounded .product-label{min-width:40px;min-height:40px}.woocommerce-product-gallery .product-labels.labels-rounded .label-with-img{min-height:auto}}@media (min-width: 769px) and (max-width: 1024px){[style*="col-md:auto"] .wd-carousel-item{flex:0 0 auto;max-width:unset}.wd-builder-on :is(.thumbs-grid-bottom_grid,.thumbs-grid-bottom_column) .wd-carousel{--wd-col: var(--wd-col-md)!important}}.wd-carousel-container{--wd-width: 100%;position:relative;width:var(--wd-width)}.wd-carousel-inner{position:relative;margin:-15px 0}.wd-carousel{position:relative;overflow:var(--wd-carousel-overflow, hidden);padding:15px 0;margin-inline:calc(var(--wd-gap) / -2);touch-action:pan-y}@supports (overflow: clip){.wd-carousel{overflow:var(--wd-carousel-overflow, clip)}}.wd-carousel-wrap{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:initial;box-sizing:content-box;transform:translate3d(0px, 0, 0)}.wd-carousel-item{position:relative;height:100%;flex:0 0 calc(100% / var(--wd-col));max-width:calc(100% / var(--wd-col));padding:0 calc(var(--wd-gap) / 2);transition-property:transform;transform:translate3d(0px, 0, 0)}.wd-backface-hidden .wd-carousel-item{transform:translateZ(0);backface-visibility:hidden}.wd-carousel[data-center_mode="yes"] .wd-carousel-wrap:not([style]){transform:translate3d(calc(50% - (100% / var(--wd-col)) / 2), 0, 0)}.wd-autoheight,.wd-autoheight .wd-carousel-item{height:auto}.wd-autoheight .wd-carousel-wrap{align-items:flex-start;transition-property:transform, height}@media (min-width: 1025px){.wd-carousel-container:not(.wd-off-lg) [style*="col-lg:1;"]:not(.wd-initialized)>.wd-carousel-wrap>.wd-carousel-item:nth-child(n+2){display:none}}@media (max-width: 768.98px){.wd-carousel-container:not(.wd-off-sm) [style*="col-sm:1;"]:not(.wd-initialized)>.wd-carousel-wrap>.wd-carousel-item:nth-child(n+2){display:none}}@media (min-width: 769px) and (max-width: 1024px){.wd-carousel-container:not(.wd-off-md) [style*="col-md:1;"]:not(.wd-initialized)>.wd-carousel-wrap>.wd-carousel-item:nth-child(n+2){display:none}}.wd-btn-arrow{transition:all .25s ease}.wd-btn-arrow.wd-lock,.wd-carousel:not(.wd-initialized)+.wd-nav-arrows .wd-btn-arrow{opacity:0 !important;pointer-events:none !important}.wd-arrow-inner{display:inline-flex;align-items:center;justify-content:center;width:var(--wd-arrow-width, var(--wd-arrow-size, 50px));height:var(--wd-arrow-height, var(--wd-arrow-size, 50px));line-height:1;color:var(--wd-arrow-color, var(--color-gray-800));background:var(--wd-arrow-bg, unset);box-shadow:var(--wd-arrow-shadow, unset);border:var(--wd-arrow-brd, unset) var(--wd-arrow-brd-color, unset);border-radius:var(--wd-arrow-radius, unset);cursor:pointer;transition:all .25s ease}.wd-arrow-inner:after{font-size:var(--wd-arrow-icon-size, 24px);font-family:"woodmart-font"}.wd-arrow-inner:hover{color:var(--wd-arrow-color-hover, var(--color-gray-500));background:var(--wd-arrow-bg-hover, var(--wd-arrow-bg));border-color:var(--wd-arrow-brd-color-hover, var(--wd-arrow-brd-color))}.wd-disabled .wd-arrow-inner{color:var(--wd-arrow-color-dis, var(--color-gray-400));background:var(--wd-arrow-bg-dis, var(--wd-arrow-bg));border-color:var(--wd-arrow-brd-color-dis, var(--wd-arrow-brd-color));cursor:unset}.wd-prev .wd-arrow-inner:after{content:"\f114"}.wd-icon-2 .wd-prev .wd-arrow-inner:after{content:"\f121"}.wd-next .wd-arrow-inner:after{content:"\f113"}.wd-icon-2 .wd-next .wd-arrow-inner:after{content:"\f120"}.wd-nav-arrows.wd-pos-sep:after{content:"";position:absolute;inset:0px calc((var(--wd-arrow-width, var(--wd-arrow-size, 50px)) + var(--wd-arrow-offset-h, 0px)) * -1)}.wd-nav-arrows.wd-pos-sep .wd-btn-arrow{position:absolute;top:calc(50% - var(--wd-arrow-offset-v, 0px) + var(--wd-arrow-height, var(--wd-arrow-size, 50px)) / -2);z-index:250}.wd-nav-arrows.wd-pos-sep .wd-prev{inset-inline-end:calc(100% + var(--wd-arrow-offset-h, 0px))}.wd-nav-arrows.wd-pos-sep .wd-next{inset-inline-start:calc(100% + var(--wd-arrow-offset-h, 0px))}.wd-nav-arrows:where(.wd-pos-together){--wd-arrow-size: 30px;--wd-arrow-icon-size: 16px;--wd-arrow-offset-h: 10px}.wd-nav-arrows.wd-pos-together{position:absolute;top:calc(0% - var(--wd-arrow-offset-v, 0px) - var(--wd-arrow-height, var(--wd-arrow-size, 50px)));inset-inline-end:calc(var(--wd-arrow-offset-h, 0px) / -1);display:flex;gap:var(--wd-arrow-gap, 0.001px);z-index:250}@media (min-width: 1025px){.wd-nav-arrows[class*="wd-hover"].wd-pos-sep .wd-btn-arrow{opacity:0;pointer-events:none}:is(.wd-carousel-container,.wd-products-element):hover .wd-nav-arrows[class*="wd-hover"].wd-pos-sep .wd-btn-arrow{opacity:1;transform:translateY(0);pointer-events:unset}.wd-nav-arrows.wd-hover-1.wd-pos-sep .wd-prev{transform:translateX(-30px)}.wd-nav-arrows.wd-hover-1.wd-pos-sep .wd-next{transform:translateX(30px)}}@media (max-width: 1024px){.wd-nav-arrows{--wd-arrow-icon-size: 16px;--wd-arrow-size: 40px}.wd-nav-arrows:where(.wd-pos-sep){--wd-arrow-offset-h: -12px}.wd-nav-arrows:where(.wd-pos-together){--wd-arrow-size: 30px}}.wd-nav-pagin-wrap{display:flex;min-height:var(--wd-pagin-size, 10px);margin-top:20px;justify-content:var(--wd-align, var(--wd-center));font-size:0}.wd-nav-pagin-wrap:has(.wd-lock){display:none}.wd-nav-pagin{--list-mb: 0;--li-mb: 0;--li-pl: 0;list-style:none;display:inline-flex;align-items:center;flex-wrap:wrap;gap:var(--wd-pagin-gap, 10px);transition:all .25s ease}.wd-nav-pagin li{position:relative;cursor:pointer;transition:all .25s ease}.wd-nav-pagin:not([class*="wd-type-"]),.wd-nav-pagin.wd-lock{opacity:0}.wd-dynamic>.wd-nav-pagin{flex-wrap:nowrap;gap:0;margin:0 auto;overflow:hidden}.wd-dynamic>.wd-nav-pagin li{margin-inline:calc(var(--wd-pagin-gap, 10px) / 2)}.wd-nav-pagin-wrap[class*="wd-style-shape"] span{display:inline-flex;width:var(--wd-pagin-size, 10px);height:var(--wd-pagin-size, 10px);background-color:var(--wd-pagin-bg, unset);border:var(--wd-pagin-brd, 2px solid) var(--wd-pagin-brd-color, var(--color-gray-300));border-radius:var(--wd-pagin-radius, var(--wd-pagin-size, 10px));transition:all .25s ease}.wd-nav-pagin-wrap[class*="wd-style-shape"] li:not(.wd-active):hover span{border-color:var(--wd-pagin-brd-color-hover, var(--color-gray-800));background-color:var(--wd-pagin-bg-hover, var(--wd-pagin-bg, unset))}.wd-nav-pagin-wrap[class*="wd-style-shape"] li.wd-active span{border-color:var(--wd-pagin-brd-color-act, var(--color-gray-800));background-color:var(--wd-pagin-bg-act, var(--color-gray-800))}