.listeo-ai-chat-wrapper {
width: 100%;
margin: 0 auto;
}
.listeo-ai-chat-wrapper i {
font-family: "Font Awesome 6 Free" !important;
} .listeo-ai-chat-container {
background: white;
border: 1px solid #e5e5e5;
border-radius: 8px;
display: flex;
flex-direction: column;
position: relative;
height: 100%;
box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
} .listeo-ai-chat-header {
padding: 16px 20px;
border-bottom: 1px solid #e5e5e5;
display: flex;
justify-content: space-between;
align-items: center;
}
.listeo-ai-chat-header-left {
display: flex;
align-items: center;
gap: 10px;
}
.listeo-ai-chat-avatar-wrapper {
position: relative;
flex-shrink: 0;
}
body .listeo-ai-chat-avatar {
width: 32px;
height: 32px;
border-radius: 100px !important;
object-fit: cover;
flex-shrink: 0;
display: block;
}
.listeo-ai-chat-status-dot {
position: absolute;
bottom: -2px;
right: -2px;
width: 8px;
height: 8px;
background: #22c55e;
border-radius: 100px !important;
border: 2px solid #fff;
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
box-sizing: content-box !important;
}
.listeo-ai-chat-title {
font-size: 16px;
font-weight: 600;
color: #333;
} .listeo-ai-chat-menu {
position: relative;
display: flex;
align-items: center;
gap: 0;
} .listeo-ai-chat-darkmode-toggle,
.listeo-ai-chat-menu-trigger {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border-radius: 6px;
cursor: pointer;
color: #777;
transition: all 0.15s ease;
}
.listeo-ai-chat-darkmode-toggle:hover,
.listeo-ai-chat-menu-trigger:hover,
.listeo-ai-chat-menu-trigger[aria-expanded="true"] {
background: rgba(0, 0, 0, 0.05);
color: #333;
} .listeo-ai-chat-darkmode-toggle .icon-sun { display: none; }
.listeo-ai-chat-darkmode-toggle .icon-moon { display: block; }
.dark-mode .listeo-ai-chat-darkmode-toggle .icon-sun { display: block; }
.dark-mode .listeo-ai-chat-darkmode-toggle .icon-moon { display: none; }
.listeo-ai-chat-menu-dropdown {
position: absolute;
top: 100%;
margin-top: 5px;
right: 0;
min-width: 150px;
background: #fff;
border: 1px solid #e5e5e5;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 4px;
z-index: 100;
opacity: 0;
visibility: hidden;
transform: scale(0.95) translateY(-4px);
transform-origin: top right;
transition: all 0.15s ease;
}
html[dir="rtl"] .listeo-ai-chat-menu-dropdown {
left: 0 !important;
right: initial !important;
}
.listeo-ai-chat-menu-dropdown[data-state="open"] {
opacity: 1;
visibility: visible;
transform: scale(1) translateY(0);
}
.listeo-ai-chat-menu-item {
display: flex;
align-items: center;
gap: 7px;
padding: 5px 10px;
font-size: 13px;
font-weight: 500;
color: #333;
border-radius: 6px;
cursor: pointer;
transition: background 0.15s ease;
white-space: nowrap;
line-height: 20px;
}
.listeo-ai-chat-menu-item:hover {
background: #f5f5f5;
}
.listeo-ai-chat-menu-item svg {
flex-shrink: 0;
color: #666;
}
.listeo-ai-chat-menu-item:hover svg {
color: #333;
} @media (min-width: 992px) {
.listeo-floating-chat-popup.is-expanded {
width: 600px !important;
max-width: calc(100vw - 45px) !important;
height: 100vh !important;
max-height: calc(100vh - 165px) !important;
}
} .listeo-floating-chat-popup.is-expanded .listeo-ai-chat-expand-btn .icon-expand {
display: none;
}
.listeo-floating-chat-popup.is-expanded .listeo-ai-chat-expand-btn .icon-collapse {
display: inline;
}
.listeo-ai-chat-expand-btn .icon-collapse {
display: none;
} .listeo-floating-chat-popup.is-expanded .listeo-ai-chat-expand-btn .text-expand {
display: none;
}
.listeo-floating-chat-popup.is-expanded .listeo-ai-chat-expand-btn .text-collapse {
display: inline;
}
.listeo-ai-chat-expand-btn .text-collapse {
display: none;
}
@media (max-width: 992px) { .listeo-ai-chat-expand-btn { display: none !important;} } button.listeo-ai-chat-clear-btn {
background: transparent !important;
border: none;
color: #888;
font-size: 12px;
cursor: pointer;
padding: 0 !important;
border-radius: 4px;
transition: all 0.3s ease;
display: flex;
justify-content: center;
min-height: auto !important;
max-height: 16px !important;
max-width: 16px !important;
min-width: auto !important;
}
button.listeo-ai-chat-clear-btn:hover {
color: #333;
transform: rotate(180deg);
}
button.listeo-ai-chat-clear-btn img {
width: auto;
height: auto;
max-width: 12px;
max-height: 12px;
opacity: 0.4;
}
.listeo-ai-chat-send-btn { padding: 0 !important; } .listeo-ai-chat-messages {
flex: 1;
padding: 20px;
overflow-y: auto;
background: #f8f8f8;
display: flex;
flex-direction: column;
gap: 15px;
scroll-behavior: smooth;
} .listeo-ai-chat-message {
line-height: 24px;
display: flex;
width: 100%;
}
.listeo-ai-chat-message-user {
color: var(--ai-chat-primary-color);
background: var(--ai-chat-primary-color-light);
padding: 12px 16px;
border-radius: 8px;
max-width: 80%;
width: fit-content;
margin-left: auto;
}
.listeo-ai-chat-message.listeo-ai-chat-message-system,
.listeo-ai-chat-message-assistant {
color: #444;
background: #f6f6f6;
padding: 12px 16px;
border-radius: 8px;
max-width: 100%;
width: fit-content;
margin-right: auto;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
background: #fff;
} .listeo-ai-chat-message-assistant.has-avatar {
position: relative;
margin-left: 32px;
}
.listeo-ai-chat-message-avatar {
position: absolute;
left: -32px;
top: 0;
width: 24px;
height: 24px;
border-radius: 100px !important;
object-fit: cover;
flex-shrink: 0;
}
.listeo-ai-chat-message-assistant.chat-message-results {
padding: 0;
background: transparent;
box-shadow: none;
}
.listeo-ai-chat-message-system {
color: #666;  }
.listeo-ai-chat-message-label {
font-weight: 600;
margin-bottom: 4px;
font-size: 14px;
}
.listeo-ai-chat-message-content {
line-height: 23px;
font-size: 14px;
word-break: break-word;
}
.listeo-ai-chat-message-content p {
margin: 0 0 15px 0;
font-size: 14px;
line-height: 23px;
color: #666;
}
.listeo-ai-chat-message-content p
.listeo-ai-chat-message-content {
color: #666;
}
.listeo-ai-chat-message-content p:last-child {
margin-bottom: 0;
}
.listeo-ai-chat-message-content strong {
font-weight: 600;
color: #222;
}
.listeo-ai-chat-message-content a strong,
.listeo-ai-chat-message-content a {
color: var(--ai-chat-primary-color);
text-decoration: underline;
}
.listeo-ai-chat-message-content a:hover {
color: #1a252f;
}
.listeo-ai-sources-list {
display: flex;
flex-direction: column;
}
.listeo-ai-chat-message-content ol,
.listeo-ai-chat-message-content ul { 
display: flex; 
flex-direction: column; 
gap: 10px;
padding-left: 20px;
margin: 8px 0;
}
.listeo-ai-chat-message-content ol li,
.listeo-ai-chat-message-content ul li{ 
margin: 0;
} .listeo-ai-results-list {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 0;
}
.elementor .listeo-ai-listing-item,
.listeo-ai-listing-item {
background: white;
border-radius: 8px;
border: none;
display: flex;
align-items: stretch;
min-height: 90px;
text-decoration: none !important;
color: inherit;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}
.elementor .listeo-ai-listing-item:hover,
.listeo-ai-listing-item:hover {
box-shadow: 0 2px 8px rgba(0,0,0,0.12);
border-color: #d0d0d0;
}
.listeo-ai-listing-hidden {
display: none;
}
.listeo-ai-listing-thumbnail {
width: 90px;
height: 90px;
flex-shrink: 0;
overflow: hidden;
padding: 12px;
margin-top: 5px;
margin-left: 3px;
}
body .listeo-ai-listing-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 8px;
}
.listeo-ai-listing-details {
flex: 1;
display: flex;
padding: 12px 16px;
padding-left: 0;
align-items: stretch;
gap: 0;
text-decoration: none;
word-break: break-word;
overflow-wrap: break-word;
word-break: break-word;
}
.listeo-ai-listing-title {
margin: 0 0 4px 0;
font-size: 15px !important;
font-weight: 600;
line-height: 20px;
color: #333;
}
body p.listeo-ai-listing-excerpt {
color: #666;
font-size: 13px;
line-height: 1.4;
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
}
.listeo-ai-listing-meta {
display: flex;
gap: 0;
font-size: 13px;
color: #888;
flex-wrap: wrap;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
display: flex;
gap: 0 5px;
}
.listeo-ai-listing-meta span {
display: flex;
align-items: baseline;
gap: 4px;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
}
.listeo-ai-listing-meta i {
width: 12px;
text-align: center;
font-size: 11px;
color: #b4b4b4;
}
.listeo-ai-listing-rating {
color: #f59e0b;
font-weight: 500;
} .listeo-ai-product-sku {
display: none !important;
}
.listeo-ai-listing-rating i {
color: #f59e0b !important;
}
.listeo-ai-listing-rating svg {
top: 2px; position: relative;
} .listeo-ai-chat-wrapper .product-price {
font-weight: 600;
color: #333;
font-size: 14px;
display: flex !important;
gap: 0 !important;
}
.listeo-ai-chat-wrapper .product-price .regular-price {
text-decoration: line-through;
color: #888;
font-weight: 400;
margin-right: 6px;
}
.listeo-ai-chat-wrapper .product-price .sale-price {
color: #27ae60;
font-weight: 600;
background-color: #fbf2d1;
color: #8a803e;
padding: 0px 4px;
border-radius: 50px;
}
.listeo-ai-chat-wrapper .stock-status {
font-size: 13px;
font-weight: 500;
padding: 0;
border-radius: 54px;
display: inline-flex;
align-items: center;
gap: 4px;
display: inline-block !important;
}
.listeo-ai-chat-wrapper .stock-status svg { top: 2px; position: relative; }
.listeo-ai-chat-wrapper .stock-status.in-stock {
color: #27ae60; }
.listeo-ai-chat-wrapper .stock-status.in-stock i {
color: #27ae60 !important;
}
.listeo-ai-chat-wrapper .stock-status.out-of-stock {
color: #e74c3c; }
.listeo-ai-chat-wrapper .stock-status.out-of-stock i {
color: #e74c3c !important;
} .listeo-ai-show-more-btn {
display: block;
width: auto;
margin-top: 12px;
padding: 6px 16px !important;
background: white;
border:none;
color: var(--ai-chat-primary-color);
background: var(--ai-chat-primary-color-light);
border-radius: 8px;
font-size: 14px;
line-height: 22px !important;
cursor: pointer;
transition: all 0.2s ease;
font-weight: 500;
margin: 0 auto;
margin-top: 15px;
border-radius: 8px;
}
.listeo-ai-show-more-btn:hover {
} .listeo-ai-chat-loader-wrapper {
display: inline-flex;
align-items: center;
gap: 8px;
}
.listeo-ai-chat-typing-dots {
display: flex;
gap: 3px;
align-items: center;
}
.listeo-ai-chat-typing-dots span {
width: 6.2px;
height: 6.2px;
background: #777777;
border-radius: 50%;
opacity: 0.3;
animation: listeoAiChatTypingDot 1.4s infinite backwards;
transform: translateY(0px);
}
.listeo-ai-chat-typing-dots span:nth-child(2) {
animation-delay: 0.2s;
}
.listeo-ai-chat-typing-dots span:nth-child(3) {
animation-delay: 0.4s;
}
@keyframes listeoAiChatTypingDot {
0%, 60%, 100% {
opacity: 0.3;
}
30% {
opacity: 1;
transform: translateY(-3px);
}
}
.listeo-ai-chat-shimmer-text {
font-size: 14px;
display: inline-block;
background: linear-gradient(90deg,
#666 0%,
#666 40%,
#888 48%,
#bbbbbb 52%,
#888 56%,
#666 62%,
#666 100%
);
background-size: 300px 100%;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: listeoAiChatShimmer 3.5s linear infinite;
}
@keyframes listeoAiChatShimmer {
0% {
background-position: -300px 0;
}
100% {
background-position: 300px 0;
}
}
.listeo-ai-chat-loading {
top: 1px;
margin-right: 2px;
position: relative;
display: inline-block;
width: 14px;
height: 14px;
box-sizing: border-box;
background: conic-gradient(
from 90deg at 50% 50%,
rgba(160, 160, 160, 0) 0deg,
rgba(160, 160, 160, 0) 0.04deg,
#707070 360deg
);
border-radius: 50%;
animation: rotate 0.7s infinite linear;
}
.listeo-ai-chat-loading::before {
content: "";
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 10px;
height: 10px;
background: #fff; border-radius: 50%;
}
.listeo-ai-chat-loading::after {
content: "";
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 2px;
height: 2px;
background: #a2a2a2;
border-radius: 50%;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
div.listeo-ai-chat-message.listeo-ai-chat-message-assistant[id^="loading"] {
background: none;
box-shadow: none;
padding: 0;
font-weight: 500;
color: #666;
margin-left: 0;
}
div.listeo-ai-chat-message.listeo-ai-chat-message-assistant[id^="loading"] .listeo-ai-chat-message-avatar {
display: none;
} .listeo-ai-chat-input-wrapper {
border-top: 1px solid #e5e5e5;
padding: 16px;
display: flex;
gap: 12px;
align-items: center;
position: relative;
}
.listeo-ai-chat-input {
flex: 1;
padding: 12px 15px !important;
border: none !important;
border-radius: 8px;
font-size: 15px !important;
font-family: inherit;
resize: none;
min-height: 48px !important;
min-width: auto  !important;
height: 48px !important;
min-width: auto;
margin-bottom: 0;
box-shadow: none !important;
border-radius: 50px !important;
padding-right: 50px !important;
line-height: 22px !important;
box-sizing: border-box;
}
#listeo-floating-chat-instance-input {
margin: 0;
}
.listeo-ai-chat-input:not(.elementor-chat-style .listeo-ai-chat-input) {
background: #f5f5f5 !important;
}
.listeo-ai-chat-input {
background: #f5f5f5; 
color: #666 !important;
}
.listeo-ai-chat-input::placeholder {
color: #888 !important
}
body#dark-mode .listeo-ai-chat-input {background: #f5f5f5; color: #555;}
.listeo-ai-chat-input:focus {
outline: none;
border-color: #d0d0d0;
}
.listeo-ai-chat-send-btn {
background: #222;
color: white;
border: none;
cursor: pointer;
font-size: 14px;
flex-shrink: 0;
font-weight: 500;
align-self: stretch;
transition: 0.2s;
right: 24px;
line-height: 24px;
top: 50%;
position: absolute !important;
border-radius: 50px !important;
height: 34px !important;
width: 34px !important;
min-width: 34px !important;
max-width: 34px !important;
max-height: 34px !important;
min-height: 34px !important;
transform: translateY(-50%);
margin: 0;
}
.listeo-ai-chat-send-btn img{
width: auto;
height: auto;
min-width: 25px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.listeo-ai-chat-send-btn:hover {
background: #222;
}
.listeo-ai-chat-send-btn:disabled {
background: #555;
cursor: not-allowed;
} .match-badge.best {
font-weight: 600;
font-size: 12px;
padding: 0px 8px;
line-height: 16px;
text-shadow: none;
border-radius: 50px;
background: #00b54d21;
display: flex;
justify-content: center;
align-content: center;
flex-wrap: wrap;
color: #27ae60;
height: 21px;
position: relative;
top: -1px;
display: inline-block;
} .listeo-ai-listing-main {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
min-width: 0;
}
.listeo-ai-listing-sidebar {
flex-shrink: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-end;
gap: 4px;
min-width: 100px;
}
.listeo-ai-listing-sidebar:empty {
display: none;
} .listeo-ai-chat-disabled {
background: #fff3cd;
border-radius: 8px;
padding: 20px;
text-align: center;
color: #856404;
}
.listeo-ai-chat-disabled p { margin: 0} .listeo-ai-listing-item:not(:has(.listeo-ai-listing-thumbnail)) .listeo-ai-listing-details {
padding-left: 16px;
} .listeo-ai-chat-message-listing-action {
display: flex;
flex-direction: column;
align-items: center;
margin: 15px 0;
}
.listeo-ai-listing-context-title {
font-size: 16px;
color: #333;
font-weight: 500;
margin: 0 0 12px 0;
text-align: center;
}
#listing-context-btn { text-align: center;}
.listeo-ai-load-listing-btn {
background: #222;
color: white;
border: none;
border-radius: 10px;
padding: 8px 20px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.listeo-ai-load-listing-btn:hover {
opacity: 0.9;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.listeo-ai-load-listing-btn:active {
transform: scale(0.98);
}
.listeo-ai-load-listing-btn svg {
flex-shrink: 0;
}
.listeo-ai-load-listing-btn.loading {
opacity: 0.7;
cursor: wait;
}
.listeo-ai-load-listing-btn:disabled {
opacity: 0.6;
cursor: not-allowed;
} #product-context-btn {
text-align: center;
justify-content: center;
margin: 15px 0;
}
.listeo-ai-product-context-title {
font-size: 16px;
color: #333;
font-weight: 500;
margin: 0 0 12px 0;
text-align: center;
}
.listeo-ai-load-product-btn {
background: #222;
color: white;
border: none;
border-radius: 24px;
padding: 10px 20px;
font-size: 14px;
line-height: 22px;
font-weight: 500;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.listeo-ai-load-product-btn:hover {
opacity: 0.9;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.listeo-ai-load-product-btn:active {
transform: scale(0.98);
}
.listeo-ai-load-product-btn svg {
flex-shrink: 0;
}
.listeo-ai-load-product-btn.loading {
opacity: 0.7;
cursor: wait;
}
.listeo-ai-load-product-btn:disabled {
opacity: 0.6;
cursor: not-allowed;
} .context-loaded-icon {
display: inline-block;
vertical-align: middle;
margin-right: 4px;
color: #222;
} .listeo-ai-popular-searches {
margin-top: 30px;
padding: 0;
}
.popular-searches-header {
font-size: 14px;
font-weight: 600;
color: #333;
margin-bottom: 12px;
}
.popular-searches-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.popular-search-tag {
background: var(--listeo-primary-color-light);
border-radius: 50px;
padding: 5px 13px;
font-size: 13px;
color: var(--listeo-primary-color);
cursor: pointer;
transition: all 0.2s ease;
font-weight: 500;
border: none;
line-height: 22px;
}
.popular-search-tag:hover {
background: var(--listeo-primary-color, #222);
color: white;
border-color: var(--listeo-primary-color, #222);
transform: translateY(-1px);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.popular-search-tag:active {
transform: translateY(0);
} .elementor-chat-style .listeo-ai-chat-wrapper { height: auto !important;}
.elementor-chat-style .listeo-ai-chat-wrapper .listeo-ai-chat-messages {
max-height: 0;
height: 400px;
padding: 0 20px; transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
padding 0.7s cubic-bezier(0.4, 0, 0.2, 1);
flex: none;
display: flex;
flex-direction: column;
gap: 15px;
scroll-behavior: smooth;
}
.elementor-chat-style .listeo-ai-chat-wrapper.expanded .listeo-ai-chat-messages {
max-height: 400px;
padding: 20px;
}
.elementor-chat-style .listeo-ai-chat-container {
border: none;
zoom: 1.12;
position: relative;
}
.elementor-chat-style .listeo-ai-chat-container {border-radius: 10px; transition: 0.3s;}
.elementor-chat-style .listeo-ai-chat-wrapper.expanded .listeo-ai-chat-container {border-radius: 10px;}
.elementor-chat-style .listeo-ai-chat-messages {
background: transparent;
}
.elementor-chat-style .listeo-ai-chat-wrapper.expanded .listeo-ai-chat-messages {
}
.elementor-chat-style .listeo-ai-chat-input {
background: transparent;
min-width: 0 !important;
overflow-x: hidden;
overflow-y: auto;
scrollbar-width: none;
}
.elementor-chat-style .listeo-ai-chat-input::-webkit-scrollbar {
display: none;
}
.elementor-chat-style .listeo-ai-chat-input-wrapper {
border: none;
background: transparent;
border-radius: 10px;
padding: 12px;
}
.elementor-chat-style .listeo-ai-chat-input-wrapper {
}
.elementor-chat-style .listeo-ai-chat-message.listeo-ai-chat-message-system,
.elementor-chat-style .listeo-ai-chat-message-assistant {
box-shadow: none;
background: transparent;
padding: 12px 0;
}
.elementor-chat-style .listeo-ai-chat-avatar-wrapper { display: none; }
.elementor-chat-style .listeo-ai-chat-message-avatar { top: 10px; } .elementor-chat-style .listeo-ai-chat-message-assistant.has-avatar {
margin-left: 32px;
padding-left: 0;
}
.elementor-chat-style .listeo-ai-chat-title {
display: none;
}
.elementor-chat-style .listeo-ai-chat-header {
border: none;
background: transparent;
position: absolute;
width: 20px;
height: 20px;
opacity: 0;transition: 0.3s;z-index: 111;
left: 15px; top: 15px;
display: none;overflow: hidden;padding: 0;
}
.elementor-chat-style .listeo-ai-chat-wrapper.expanded  .listeo-ai-chat-header{
opacity: 1;
display: block;
background: transparent !important;
}
.elementor-chat-style .listeo-ai-chat-message-system { display: none; }
.elementor-chat-style .listeo-ai-chat-message-user {
padding: 8px 15px; border-radius: 30px;
}
.elementor .elementor-chat-style  .listeo-ai-listing-item {
border: 1px solid #e0e0e0;
box-shadow: 0 2px 5px rgba(0,0,0,0.07);
}
.elementor .elementor-chat-style  .listeo-ai-listing-item:hover {
border: 1px solid #ddd;
box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.elementor-chat-style .listeo-ai-chat-menu { position: absolute; top: 0; right: 10px; }
.elementor-chat-style .listeo-ai-chat-quick-buttons {
max-height: 0;
opacity: 0;
overflow: hidden;
padding: 0 15px;
margin: 0;
pointer-events: none;
transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
background: transparent;
}
.elementor-chat-style  .listeo-ai-quick-btn { background-color: #f4f4f4; }
.elementor-chat-style .listeo-ai-chat-wrapper.expanded .listeo-ai-chat-quick-buttons {
max-height: 100px;
opacity: 1;
padding: 0 20px;
padding-top: 15px;
margin-bottom: 0;
pointer-events: auto;
}
.elementor .listeo-ai-listing-item.listeo-ai-listing-item.listeo-ai-listing-hidden { display: none; } .listeo-ai-chat-powered-by {
text-align: center;
font-size: 12px;
color: #888;
background: transparent;
padding: 0;
margin: -10px 0 10px 0;
line-height: 27px;
}
.listeo-ai-chat-powered-by a {
color: #111;
text-decoration: none;
font-weight: 500;
transition: color 0.2s ease;
}
.listeo-ai-chat-powered-by-logo {
display: inline-block;
position: relative;
top: 1px;
width: 16px;
height: 16px;
border-radius: 4px;
margin: 0px 2px 0px 2px !important;
vertical-align: -3px;
}
.listeo-ai-chat-powered-by-name {
font-weight: 600;
}
.listeo-ai-chat-powered-by a:hover {
color: #111;
} .elementor-chat-style .listeo-ai-chat-powered-by {
background: transparent;
border: none;
padding: 6px 12px;
} .listeo-ai-chat-quick-buttons {
display: flex;
flex-wrap: wrap;
gap: 8px;
padding: 16px 20px;
background: #f8f8f8
}
.listeo-ai-quick-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
background: #ebebeb;
line-height: 20px;
color: #777;
border-radius: 8px;
font-size: 13px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
white-space: nowrap; } .listeo-ai-quick-btn.has-custom-color {
background: var(--quick-btn-color-light);
color: var(--quick-btn-color);
}
.listeo-ai-quick-btn.has-custom-color .listeo-ai-btn-icon {
opacity: 1;
stroke: var(--quick-btn-color);
}
.listeo-ai-quick-btn:hover {
background: var(--quick-btn-color-light, var(--ai-chat-primary-color-light, rgba(0, 115, 238, 0.1)));
border-color: var(--quick-btn-color, var(--ai-chat-primary-color, #0073ee));
color: var(--quick-btn-color, var(--ai-chat-primary-color, #0073ee));
}
.listeo-ai-quick-btn.has-custom-color:hover {
background: var(--quick-btn-color-light);
background: color-mix(in srgb, var(--quick-btn-color-light) 94%, var(--quick-btn-color));
}
.listeo-ai-quick-btn:active {
transform: scale(0.97);
} .listeo-ai-btn-icon {
flex-shrink: 0;
opacity: 0.8;
transition: opacity 0.2s ease, stroke 0.2s ease;
}
.listeo-ai-quick-btn:hover .listeo-ai-btn-icon {
opacity: 1;
stroke: var(--quick-btn-color, var(--ai-chat-primary-color, #0073ee));
} .listeo-ai-contact-form-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.3);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
z-index: 100;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
box-sizing: border-box;
border-radius: inherit;
}
.listeo-ai-contact-form {
background: #fff;
border-radius: 10px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
width: 100%;
max-width: 340px;
max-height: 100%;
overflow-y: auto;
}
.listeo-ai-contact-form-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px 20px;
padding-bottom: 0; }
.listeo-ai-contact-form-header h3 {
margin: 0;
font-size: 16px !important;
font-weight: 600;
color: #333;
}
.listeo-ai-contact-form-close {
background: none;
border: none;
padding: 6px !important;
cursor: pointer;
transition: background-color 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
width: 28px !important;
height: 28px !important;
background: #f5f5f5;
min-width: auto !important;
min-height: auto !important;
box-sizing: border-box;
}
.listeo-ai-contact-form-close svg {
stroke: #888;
transition: stroke 0.2s ease;
}
.listeo-ai-contact-form-close:hover {
background: #eee;
}
.listeo-ai-contact-form-close:hover svg {
stroke: #333;
}
.listeo-ai-contact-form-body {
padding: 20px;
}
.listeo-ai-contact-form-field {
margin-bottom: 16px;
}
.listeo-ai-contact-form-field label {
display: block;
font-size: 13px;
font-weight: 500;
color: #555;
margin-bottom: 6px;
}
.listeo-ai-contact-form-field label .required {
color: #dc3545;
}
body .listeo-ai-contact-form-field input,
body .listeo-ai-contact-form-field textarea {
width: 100%;
padding: 10px 12px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 14px;
height: 40px;
font-family: inherit;
transition: border-color 0.2s, box-shadow 0.2s;
box-sizing: border-box;
}
.listeo-ai-contact-form-field input:focus,
.listeo-ai-contact-form-field textarea:focus {
outline: none !important;
border-color: var(--ai-chat-primary-color, #0073ee) !important;
box-shadow: 0 0 0 3px var(--ai-chat-primary-color-light, rgba(0, 115, 238, 0.1)) !important;
}
.listeo-ai-contact-form-field textarea {
resize: vertical;
min-height: 80px;
}
.listeo-ai-contact-form-actions {
margin-top: 20px;
}
body .listeo-ai-contact-form-submit {
width: 100%;
padding: 8px 20px !important;
background: var(--ai-chat-primary-color, #0073ee);
color: #fff;
border: none;
border-radius: 8px;
height: 42px !important;
min-height: 42px !important;
line-height: 20px !important;
font-size: 14px !important;
font-weight: 600;
cursor: pointer;
transition: background 0.2s, transform 0.1s;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.listeo-ai-contact-form-submit:hover {
background: color-mix(in srgb, var(--ai-chat-primary-color, #0073ee) 85%, #000);
}
.listeo-ai-contact-form-submit:active {
transform: scale(0.98);
}
.listeo-ai-contact-form-submit:disabled {
opacity: 0.7;
cursor: not-allowed;
}
.listeo-ai-contact-form-submit .button-spinner {
display: flex;
align-items: center;
}
.listeo-ai-contact-form-message {
margin-top: 16px;
padding: 8px 12px;
border-radius: 8px;
font-size: 13px;
text-align: center;
}
.listeo-ai-contact-form-message.success {
background: #d4edda;
color: #155724;
}
.listeo-ai-contact-form-message.error {
background: #f8d7da;
color: #721c24;
} .listeo-ai-pre-chat-form {
position: relative;
background: #fff;
border: none;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
width: 100%;
max-width: 400px;
box-sizing: border-box;
}
.listeo-ai-pre-chat-form .listeo-ai-contact-form-body {
padding: 14px 20px 16px;
}
.elementor-chat-style .listeo-ai-pre-chat-form {
margin-top: 40px;
zoom: 0.9;
max-width: 400px;
box-shadow: none;
background: #f8f8f8;
}
.listeo-ai-pre-chat-form .listeo-ai-contact-form-field {
margin-bottom: 12px;
}
.listeo-ai-pre-chat-form .listeo-ai-contact-form-actions {
margin-top: 14px;
} .listeo-ai-chat-image-btn {
position: absolute !important;
left: 24px;
top: 50%;
transform: translateY(-50%);
width: 34px !important;
height: 34px !important;
min-width: 34px !important;
min-height: 34px !important;
max-width: 34px !important;
max-height: 34px !important;
border-radius: 50px !important;
border: none;
background: #fff !important;
color: #888;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
padding: 0 !important;
z-index: 2;
}
.listeo-ai-chat-image-btn:hover {
background: var(--ai-chat-primary-color-light, rgba(0, 115, 238, 0.1)) !important;
border-color: var(--ai-chat-primary-color, #0073ee);
color: var(--ai-chat-primary-color, #0073ee);
}
.listeo-ai-chat-image-btn:hover svg {
stroke: var(--ai-chat-primary-color, #0073ee);
}
.listeo-ai-chat-image-btn svg {
flex-shrink: 0;
transition: stroke 0.2s ease;
} .listeo-ai-chat-image-btn.has-image {
background: var(--ai-chat-primary-color-light, rgba(0, 115, 238, 0.1)) !important;
color: var(--ai-chat-primary-color, #0073ee);
}
.listeo-ai-chat-image-btn.has-image svg {
stroke: var(--ai-chat-primary-color, #0073ee);
} .listeo-ai-chat-image-btn .image-count-badge {
position: absolute;
top: -4px;
right: -4px;
min-width: 16px;
height: 16px;
background: var(--ai-chat-primary-color, #0073ee);
color: #fff;
font-size: 10px;
font-weight: 600;
border-radius: 50%;
display: none;
align-items: center;
justify-content: center;
line-height: 1;
padding: 0 4px;
box-sizing: border-box;
}
.listeo-ai-chat-image-btn.has-image .image-count-badge {
display: flex;
} .listeo-ai-chat-input.has-image-input {
padding-left: 50px !important;
} .listeo-ai-chat-image-preview {
position: relative;
display: inline-block;
margin: 8px 0;
max-width: 150px;
}
.listeo-ai-chat-image-preview img {
max-width: 100%;
max-height: 100px;
border-radius: 8px;
object-fit: cover;
}
.listeo-ai-chat-image-preview-remove {
position: absolute;
top: -8px;
right: -8px;
width: 20px;
height: 20px;
border-radius: 50%;
background: #ff4444;
color: white;
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
line-height: 1;
padding: 0;
}
.listeo-ai-chat-image-preview-remove:hover {
background: #cc0000;
} .listeo-ai-chat-message-user .listeo-ai-chat-user-image {
max-width: 200px;
max-height: 150px;
border-radius: 8px;
margin-bottom: 8px;
display: block;
}
.listeo-ai-chat-message-user .listeo-ai-chat-user-image + .listeo-ai-chat-message-content {
margin-top: 0;
} .listeo-ai-tooltip {
position: fixed;
background: #222;
color: #fff;
padding: 6px 10px;
font-size: 12px;
font-weight: 500;
line-height: 1.3;
border-radius: 8px;
white-space: nowrap;
z-index: 9999999;
pointer-events: none;
opacity: 0;
transform: translateX(-50%) translateY(-4px);
transition: opacity 0.15s ease, transform 0.15s ease;
}
.listeo-ai-tooltip.visible {
opacity: 1;
transform: translateX(-50%) translateY(0);
} .listeo-ai-tooltip::after {
content: '';
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
border-width: 5px;
border-style: solid;
border-color: #222 transparent transparent transparent;
}
.listeo-ai-tooltip.no-arrow::after {
display: none;
}  .stream-word {
display: inline;
} .streaming-active .stream-word {
display: none;
} .streaming-active .stream-block-hidden {
display: none;
} .streaming-active .stream-word.visible {
display: inline;
animation: streamWordFadeIn 0.15s ease-out forwards;
}
@keyframes streamWordFadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
} .streaming-active .stream-word.trail-1 {
opacity: 0.4;
}
.streaming-active .stream-word.trail-2 {
opacity: 0.55;
}
.streaming-active .stream-word.trail-3 {
opacity: 0.7;
}
.streaming-active .stream-word.trail-4 {
opacity: 0.85;
}
.streaming-active .stream-word.trail-5 {
opacity: 0.95;
} .listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-header {
height: 120px;
position: relative;
border-bottom: none;
}
.listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-header-left {
z-index: 100;
align-self: flex-end;
top: 20px;
position: relative;
}
.listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-menu {
align-self: flex-start;
}
.listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-avatar {
height: 45px;
width: 45px;
box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
}
.listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-header {
background-image: var(--header-bg-image);
background-size: cover;
background-position: center;
background-color: var(--header-bg-color);
}
.listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-avatar-wrapper {
top: 15px;
position: relative;
}
.listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-title {
display: none; 
}
.listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-menu-trigger,
.listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-cart-toggle {
color: #fff;
}
.listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-darkmode-toggle:hover,
.listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-menu-trigger:hover,
.listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-menu-trigger[aria-expanded="true"],
.listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-cart-toggle:hover {
background: rgba(255, 255, 255, 0.1);
}
.chat-image-bg-welcome-text {
padding-top: 20px;
}
.chat-image-bg-welcome-text p,
.chat-image-bg-welcome-text h3 { 
margin: 0 !important;
padding: 0 !important;
}
.chat-image-bg-welcome-text h3 { 
color: #111;
font-size: 21px !important;
font-weight: 600;
padding-bottom: 5px !important;
line-height: 28px;
}
.chat-image-bg-welcome-text p { 
color: #666;
font-size: 17px !important;
font-weight: 400;
line-height: 28px !important;
} .listeo-floating-chat-popup.chat-image-header.chat-image-header-overlay .listeo-ai-chat-header:before {
content: "";
background: linear-gradient(transparent 20%, #ffffff47 50%, #fff);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2;
pointer-events: none;
}
.listeo-floating-chat-widget:not(.dark-mode) .listeo-floating-chat-popup.chat-image-header.chat-image-header-overlay .listeo-ai-chat-messages{
background: linear-gradient(#fff 50%, #f8f8f8);
}
.listeo-floating-chat-popup.chat-image-header.chat-image-header-overlay .listeo-ai-chat-header {
height: 150px;
}
.listeo-floating-chat-popup.chat-image-header.chat-image-header-overlay .listeo-ai-chat-avatar-wrapper {
top: 0;
}
.listeo-floating-chat-popup.chat-image-header.chat-image-header-overlay .chat-image-bg-welcome-text {
padding-top: 5px;
}
.listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-header-left,
.listeo-floating-chat-popup.chat-image-header .chat-image-bg-welcome-text {
padding-left: 10px;
} .listeo-floating-chat-widget.dark-mode .chat-image-bg-welcome-text h3 { 
color: #fff  !important;
}
.listeo-floating-chat-widget.dark-mode .chat-image-bg-welcome-text,
.listeo-floating-chat-widget.dark-mode  .chat-image-bg-welcome-text p { 
color: #bbb  !important;
}
.listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-darkmode-toggle svg,
.listeo-floating-chat-widget.dark-mode .listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-menu-trigger,
.listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-cart-toggle,
.listeo-floating-chat-widget.dark-mode .listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-cart-toggle {
color: #fff  !important;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-chat-popup.chat-image-header.chat-image-header-overlay .listeo-ai-chat-header:before {
background: linear-gradient(transparent 20%, var(--chat-bg));
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-chat-popup.chat-image-header .listeo-ai-chat-avatar {
box-shadow: 0 0 0 3px rgba(0,0,0,0.2);
} .listeo-silk-wave-wrap {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 0;
border-radius: inherit;
will-change: transform;
} .listeo-silk-wave-canvas {
display: block;
width: 100%;
height: calc(100% - 1px);
filter: blur(var(--silk-blur, 0px)) contrast(1.3);
}
.dark-mode .listeo-silk-wave-canvas {
filter: blur(var(--silk-blur, 0px)) contrast(1.1);
}
.listeo-silk-wave-grain {
position: absolute;
inset: 0;
z-index: 3;
pointer-events: none;
mix-blend-mode: overlay;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
background-size: 256px 256px;
}
.listeo-floating-chat-popup.chat-animated-header .listeo-ai-chat-header {
background-image: none;
background-color: transparent;
}
.listeo-floating-chat-popup.chat-animated-header .listeo-ai-chat-header-left,
.listeo-floating-chat-popup.chat-animated-header .listeo-ai-chat-menu {
z-index: 10;
position: relative;
} .listeo-ai-chat-cart-toggle {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border-radius: 6px;
cursor: pointer;
color: #777;
transition: all 0.15s ease;
position: relative;
}
.listeo-ai-chat-cart-toggle > svg {
position: relative;
left: -1px;
}
.listeo-ai-chat-cart-toggle:hover {
background: rgba(0, 0, 0, 0.05);
color: #333;
}
.listeo-ai-cart-badge {
position: absolute;
top: 1px;
right: 1px;
background: var(--ai-chat-primary-color, #0073ee);
color: #fff;
font-size: 10px;
font-weight: 600;
line-height: 1;
min-width: 16px;
height: 16px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
padding: 0 4px;
box-sizing: border-box;
pointer-events: none;
}  div.listeo-ai-product-card {
cursor: default;
}
div.listeo-ai-product-card .listeo-ai-listing-title a {
color: inherit;
text-decoration: none;
}
div.listeo-ai-product-card .listeo-ai-listing-title a:hover {
color: var(--ai-chat-primary-color, #0073ee);
}
div.listeo-ai-product-card .listeo-ai-listing-thumbnail a {
display: block;
}
.listeo-ai-atc-wrapper {
display: flex;
margin-top: 8px;
margin-bottom: 3px;
}
.listeo-ai-add-to-cart-btn {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 5px 12px;
font-size: 12px;
font-weight: 500;
line-height: 1.4;
color: var(--ai-chat-primary-color, #0073ee);
background: var(--ai-chat-primary-color-light, rgba(0, 115, 238, 0.1));
border: none;
border-radius: 6px;
cursor: pointer;
transition: all 0.2s ease;
text-decoration: none !important;
white-space: nowrap;
width: auto;
}
.listeo-ai-add-to-cart-btn:hover {
background: var(--ai-chat-primary-color, #0073ee);
color: #fff;
text-decoration: none !important;
}
.listeo-ai-add-to-cart-btn.loading {
pointer-events: none;
}
.listeo-ai-add-to-cart-btn.added {
background: #27ae60;
color: #fff;
}
.listeo-ai-add-to-cart-btn svg {
flex-shrink: 0;
} .listeo-ai-cart-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.3);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
z-index: 100;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
box-sizing: border-box;
border-radius: inherit;
}
.listeo-ai-cart-popup {
background: #fff;
border-radius: 10px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
width: 100%;
max-width: 360px;
max-height: 100%;
display: flex;
flex-direction: column;
overflow: hidden;
}
.listeo-ai-cart-popup-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
border-bottom: 1px solid #eee;
flex-shrink: 0;
}
.listeo-ai-cart-popup-header h3 {
margin: 0;
font-size: 16px !important;
font-weight: 600;
color: #333;
display: flex;
align-items: center;
}
.listeo-ai-cart-popup-close {
background: #f5f5f5;
border: none;
padding: 6px !important;
cursor: pointer;
transition: background-color 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
width: 28px !important;
height: 28px !important;
min-width: auto !important;
min-height: auto !important;
box-sizing: border-box;
}
.listeo-ai-cart-popup-close svg {
stroke: #888;
transition: stroke 0.2s ease;
}
.listeo-ai-cart-popup-close:hover {
background: #eee;
}
.listeo-ai-cart-popup-close:hover svg {
stroke: #333;
}
.listeo-ai-cart-popup-body {
overflow-y: auto;
flex: 1;
padding: 12px 16px;
min-height: 60px;
}
.listeo-ai-cart-loading {
display: flex;
justify-content: center;
padding: 20px;
color: #aaa;
}
.listeo-ai-cart-spinner {
animation: listeo-ai-cart-spin 0.8s linear infinite;
}
@keyframes listeo-ai-cart-spin {
to { transform: rotate(360deg); }
}
.listeo-ai-cart-empty {
text-align: center;
padding: 24px 16px;
color: #888;
font-size: 14px;
}
.listeo-ai-cart-empty p {
margin: 0;
font-size: 14px;
} .listeo-ai-cart-item {
display: flex;
align-items: flex-start;
gap: 10px;
padding: 10px 0;
border-bottom: 1px solid #f0f0f0;
transition: opacity 0.2s ease;
}
.listeo-ai-cart-item:last-child {
border-bottom: none;
}
.listeo-ai-cart-item-image {
width: 48px;
height: 48px;
border-radius: 6px;
overflow: hidden;
flex-shrink: 0;
}
.listeo-ai-cart-item-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.listeo-ai-cart-item-details {
flex: 1;
min-width: 0;
}
.listeo-ai-cart-item-title {
font-size: 14px;
font-weight: 600;
color: #333;
text-decoration: none;
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
line-height: 1.3;
}
.listeo-ai-cart-item-title:hover {
color: var(--ai-chat-primary-color, #0073ee);
text-decoration: none;
}
.listeo-ai-cart-item-price {
font-size: 13px;
color: #666;
margin-top: 0;
}
.listeo-ai-cart-item-qty {
display: inline-flex;
align-items: center;
gap: 0;
margin-top: 4px;
border: 1px solid #ddd;
border-radius: 4px;
overflow: hidden;
}
.listeo-ai-cart-qty-minus,
.listeo-ai-cart-qty-plus {
width: 26px;
height: 24px;
border: none;
background: #f8f8f8;
color: #555;
font-size: 14px;
font-weight: 500;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.15s ease;
padding: 0 !important;
min-width: auto !important;
min-height: auto !important;
line-height: 1;
}
.listeo-ai-cart-qty-minus:hover,
.listeo-ai-cart-qty-plus:hover {
background: #eee;
}
.listeo-ai-cart-qty-value {
width: 28px;
text-align: center;
font-size: 12px;
font-weight: 500;
color: #333;
line-height: 24px;
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
}
.listeo-ai-cart-item-remove {
background: none;
border: none;
padding: 4px !important;
cursor: pointer;
color: #bbb;
transition: color 0.15s ease;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
min-width: auto !important;
min-height: auto !important;
width: auto !important;
height: auto !important;
}
.listeo-ai-cart-item-remove:hover {
color: #e74c3c;
} .listeo-ai-cart-popup-footer {
border-top: 1px solid #eee;
padding: 14px 20px;
flex-shrink: 0;
}
.listeo-ai-cart-subtotal-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 12px;
font-size: 14px;
font-weight: 600;
color: #333;
}
.listeo-ai-cart-popup-actions {
display: flex;
gap: 8px;
}
.listeo-ai-cart-view-btn,
.listeo-ai-cart-checkout-btn {
flex: 1;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 14px;
font-size: 13px;
font-weight: 500;
border-radius: 8px;
text-decoration: none;
transition: all 0.2s ease;
cursor: pointer;
text-align: center;
}
.listeo-ai-cart-view-btn {
color: #555;
background: #f0f0f0;
border: none;
}
.listeo-ai-cart-view-btn:hover {
background: #e5e5e5;
color: #333;
text-decoration: none;
}
.listeo-ai-cart-checkout-btn {
color: #fff !important;
background: var(--ai-chat-primary-color, #0073ee);
border: 1px solid transparent;
}
.listeo-ai-cart-checkout-btn:hover {
opacity: 0.9;
color: #fff;
text-decoration: none;
}.listeo-ai-chat-wrapper.dark-mode {
--chat-bg: #111;
--chat-bg-secondary: #222;
--chat-bg-tertiary: #222;
--chat-border: #333;
--chat-border-light: #444;
--chat-text: #e5e5e5;
--chat-text-secondary: #ccc;
--chat-text-muted: #999;
--chat-shadow: rgba(0, 0, 0, 0.4);
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-container {
background: var(--chat-bg) !important;
border-color: var(--chat-border) !important;
box-shadow: 0 5px 20px var(--chat-shadow);
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-header {
background-color: var(--chat-bg-secondary) !important;
border-bottom-color: var(--chat-border) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-title {
color: var(--chat-text) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-status-dot {
border-color: var(--chat-bg-secondary) !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-darkmode-toggle,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-menu-trigger {
color: var(--chat-text-muted) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-darkmode-toggle:hover,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-menu-trigger:hover,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-menu-trigger[aria-expanded="true"] {
background: rgba(0,0,0,0.2) !important;
color: var(--chat-text) !important;
}
.elementor-chat-style .listeo-ai-chat-wrapper.dark-mode.expanded .listeo-ai-chat-quick-buttons {
padding-bottom: 20px;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-header,
.elementor-chat-style .listeo-ai-chat-wrapper.dark-mode.expanded .listeo-ai-chat-messages { border-radius: 12px 12px 0 0; }
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-menu-dropdown {
background: var(--chat-bg-secondary) !important;
border-color: var(--chat-border) !important;
box-shadow: 0 4px 16px var(--chat-shadow);
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-menu-item {
color: var(--chat-text-secondary) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-menu-item:hover {
background: var(--chat-bg-tertiary) !important;
color: var(--chat-text) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-menu-item svg {
color: var(--chat-text-muted) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-menu-item:hover svg {
color: var(--chat-text) !important;
} .listeo-ai-chat-wrapper.dark-mode button.listeo-ai-chat-clear-btn {
color: var(--chat-text-muted) !important;
}
.listeo-ai-chat-wrapper.dark-mode button.listeo-ai-chat-clear-btn:hover {
color: var(--chat-text) !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-messages {
background: var(--chat-bg) !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-message-user {
background: var(--ai-chat-primary-color, #0073ee) !important;
color: #fff !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-message-assistant,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-message.listeo-ai-chat-message-system {
background: #222 !important;
color: var(--chat-text) !important;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-message-assistant.chat-message-results {
background: transparent !important;
box-shadow: none !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-message-system {
color: var(--chat-text-muted) !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-message-content {
color: var(--chat-text) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-message-content strong {
color: var(--chat-text) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-message-content p,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-message-content {
color:  var(--chat-text-muted);
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-message-content a,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-message-content a strong,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-message-content a:hover {
color: #fff !important;
} .listeo-ai-chat-wrapper.dark-mode div.listeo-ai-chat-message.listeo-ai-chat-message-assistant[id^="loading"] {
background: transparent !important;
box-shadow: none !important;
color: var(--chat-text-muted) !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-typing-dots span {
background: var(--chat-text-muted) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-loading::before {
background: var(--chat-bg) !important
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-input-wrapper {
background: var(--chat-bg-secondary) !important;
border-top-color: var(--chat-border) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-container {
background: var(--chat-bg-secondary) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-input-wrapper {
border-radius: 0 0 12px 12px;
}
.elementor-chat-style .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-input-wrapper {
border-radius: 12px;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-input,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-input:not(.elementor-chat-style .listeo-ai-chat-input) {
background: #303030 !important;
color: var(--chat-text) !important;
border-color: var(--chat-border) !important;
box-shadow: none !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-input::placeholder {
color: var(--chat-text-muted) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-input:focus {
border-color: var(--ai-chat-primary-color, #0073ee) !important;
box-shadow: none;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-send-btn {
background: var(--ai-chat-primary-color, #0073ee) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-send-btn:disabled {
background: var(--chat-border-light) !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-image-btn {
background: #242424 !important;
color: #ccc !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-mic-btn:not(.recording):hover,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-image-btn:hover {
background: var(--ai-chat-primary-color, #0073ee) !important;
color: #fff !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-image-btn:hover svg {
stroke: #fff !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-image-btn.has-image {
background: var(--ai-chat-primary-color-light, rgba(0, 115, 238, 0.2)) !important;
color: var(--ai-chat-primary-color, #5fa8ff) !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-quick-buttons {
background: var(--chat-bg) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-quick-btn {
background: var(--chat-bg-tertiary) !important;
color: var(--chat-text-secondary) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-quick-btn.has-custom-color {
background: var(--quick-btn-color) !important;
color: #fff !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-quick-btn.has-custom-color .listeo-ai-btn-icon {
stroke: #fff !important;
opacity: 1;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-quick-btn:hover {
background: var(--quick-btn-color, var(--ai-chat-primary-color, #0073ee)) !important;
color: #fff !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-quick-btn.has-custom-color:hover {
background: var(--quick-btn-color) !important;
background: color-mix(in srgb, var(--quick-btn-color) 88%, #000) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-quick-btn:hover .listeo-ai-btn-icon {
stroke: #fff !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-listing-item {
background: var(--chat-bg-secondary) !important;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-listing-item:hover {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-listing-title {
color: var(--chat-text) !important;
}
.listeo-ai-chat-wrapper.dark-mode p.listeo-ai-listing-excerpt {
color: var(--chat-text-muted) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-listing-meta {
color: var(--chat-text-muted) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-listing-meta i {
color: var(--chat-border-light) !important;
} .listeo-ai-chat-wrapper.dark-mode .product-price {
color: var(--chat-text) !important;
}
.listeo-ai-chat-wrapper.dark-mode .product-price .regular-price {
color: var(--chat-text-muted) !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-show-more-btn {
background: var(--ai-chat-primary-color, #0073ee) !important;
color: #fff !important;
} .listeo-ai-chat-wrapper.dark-mode .match-badge.best {
background: rgba(39, 174, 96, 0.2) !important;
color: #5cd690 !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-listing-context-title,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-product-context-title {
color: var(--chat-text) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-load-listing-btn,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-load-product-btn {
background: var(--chat-bg-tertiary) !important;
color: var(--chat-text) !important;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-load-listing-btn:hover,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-load-product-btn:hover {
background: var(--chat-border) !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}
.listeo-ai-chat-wrapper.dark-mode .context-loaded-icon {
color: var(--chat-text) !important;
} .listeo-ai-chat-wrapper.dark-mode .popular-searches-header {
color: var(--chat-text) !important;
}
.listeo-ai-chat-wrapper.dark-mode .popular-search-tag {
background: var(--chat-bg-tertiary) !important;
color: var(--chat-text-secondary) !important;
}
.listeo-ai-chat-wrapper.dark-mode .popular-search-tag:hover {
background: var(--ai-chat-primary-color, #0073ee) !important;
color: #fff !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-disabled {
background: rgba(255, 193, 7, 0.15) !important;
color: #ffc107 !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-powered-by {
color: var(--chat-text-muted) !important;
margin-top: -8px !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-powered-by a {
color: #fff !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-powered-by a:hover {
color: #fff !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-terms-notice {
color: var(--chat-text-muted) !important;
background: var(--chat-bg-secondary) !important;
padding-top: 2px;
border-radius: 0 0 12px 12px;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-terms-notice a {
color: #eee !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form-overlay {
background: rgba(0, 0, 0, 0.5) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form {
background: var(--chat-bg-secondary) !important;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form-header h3 {
color: var(--chat-text) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form-close {
background: color-mix(in srgb, var(--chat-border) 70%, transparent) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form-close svg {
stroke: var(--chat-text-muted) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form-close:hover {
background: var(--chat-border) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form-close:hover svg {
stroke: var(--chat-text) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form-field label {
color: var(--chat-text-secondary) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form-field input,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form-field textarea {
background: #303030 !important;
border-color: var(--chat-border) !important;
color: var(--chat-text) !important;
box-shadow: none !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form-field input:focus, 
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form-field textarea:focus {
outline: none !important;
border-color: var(--ai-chat-primary-color, #0073ee) !important;
box-shadow: none !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form-field input::placeholder,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form-field textarea::placeholder {
color: var(--chat-text-muted) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form-message.success {
background: rgba(39, 174, 96, 0.2) !important;
color: #5cd690 !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-contact-form-message.error {
background: rgba(239, 68, 68, 0.2) !important;
color: #f87171 !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-pre-chat-form {
background: var(--chat-bg-secondary) !important;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-pre-chat-headline {
color: var(--chat-text) !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-messages {
scrollbar-color: var(--chat-border) var(--chat-bg);
scrollbar-width: thin;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-messages::-webkit-scrollbar {
width: 6px;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-messages::-webkit-scrollbar-track {
background: var(--chat-bg) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-messages::-webkit-scrollbar-thumb {
background: var(--chat-border) !important;
border-radius: 3px;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-messages::-webkit-scrollbar-thumb:hover {
background: var(--chat-border-light) !important;
} .elementor-chat-style .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-message-assistant,
.elementor-chat-style .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-message.listeo-ai-chat-message-system {
background: transparent !important;
box-shadow: none !important;
}
.elementor-chat-style .listeo-ai-chat-wrapper.dark-mode .listeo-ai-quick-btn {
background: var(--chat-bg-tertiary) !important;
}
.elementor-chat-style .listeo-ai-chat-wrapper.dark-mode .listeo-ai-listing-item {
border: 1px solid var(--chat-border) !important;
}
.elementor-chat-style .listeo-ai-chat-wrapper.dark-mode .listeo-ai-listing-item:hover {
border-color: var(--chat-border-light) !important;
}  .listeo-floating-chat-widget.dark-mode .listeo-floating-welcome-bubble {
background: #1a1a1a;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-welcome-bubble-content {
color: #e5e5e5;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-welcome-bubble-arrow {
background: #1a1a1a;
} .listeo-floating-chat-widget.dark-mode .listeo-floating-chat-popup {
background: transparent;
}
.listeo-floating-chat-popup .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-container {
box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
} .dark-mode .listeo-ai-chat-typing-dots,
.dark-mode .listeo-ai-chat-loading,
.dark-mode .listeo-ai-chat-shimmer-text {
filter: brightness(1.4)
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-cart-toggle {
color: var(--chat-text-muted) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-chat-cart-toggle:hover {
background: rgba(255, 255, 255, 0.08) !important;
color: var(--chat-text) !important;
} .listeo-ai-chat-wrapper.dark-mode div.listeo-ai-product-card .listeo-ai-listing-title a {
color: inherit !important;
}
.listeo-ai-chat-wrapper.dark-mode div.listeo-ai-product-card .listeo-ai-listing-title a:hover {
color: var(--ai-chat-primary-color, #4da3ff) !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-add-to-cart-btn {
color: #fff !important;
background: var(--ai-chat-primary-color, #0073ee) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-add-to-cart-btn:hover {
background: var(--ai-chat-primary-color, #4da3ff) !important;
color: #fff !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-add-to-cart-btn.added {
background: #27ae60 !important;
color: #fff !important;
} .listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-overlay {
background: rgba(0, 0, 0, 0.5) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-popup {
background: var(--chat-bg-secondary) !important;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-popup-header {
border-bottom-color: var(--chat-border) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-popup-header h3 {
color: var(--chat-text) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-popup-close {
background: color-mix(in srgb, var(--chat-border) 70%, transparent) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-popup-close svg {
stroke: var(--chat-text-muted) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-popup-close:hover {
background: var(--chat-border) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-popup-close:hover svg {
stroke: var(--chat-text) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-empty {
color: var(--chat-text-muted) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-item {
border-bottom-color: var(--chat-border) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-item-title {
color: var(--chat-text) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-item-title:hover {
color: var(--ai-chat-primary-color, #4da3ff) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-item-price {
color: var(--chat-text-secondary) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-item-qty {
border-color: var(--chat-border) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-qty-minus,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-qty-plus {
background: #303030 !important;
color: var(--chat-text) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-qty-minus:hover,
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-qty-plus:hover {
background: #404040 !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-qty-value {
color: var(--chat-text) !important;
border-color: var(--chat-border) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-item-remove {
color: var(--chat-text-muted) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-item-remove:hover {
color: #e74c3c !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-popup-footer {
border-top-color: var(--chat-border) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-subtotal-row {
color: var(--chat-text) !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-view-btn {
background: #303030 !important;
color: var(--chat-text) !important;
border: none !important;
}
.listeo-ai-chat-wrapper.dark-mode .listeo-ai-cart-view-btn:hover {
background: #404040 !important;
}.listeo-floating-chat-widget {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 999999;
} .listeo-floating-chat-widget.position-left {
right: auto;
left: 20px;
}
.listeo-floating-chat-widget.position-left .listeo-floating-chat-button {
right: auto;
left: 0;
}
.listeo-floating-chat-widget.position-left .listeo-floating-chat-popup {
right: auto;
left: 0;
}
.listeo-floating-chat-widget.position-left .listeo-floating-welcome-bubble-arrow {
right: auto;
left: 20px;
} .listeo-floating-chat-button {
width: 60px !important;
height: 60px !important;
min-width: 60px !important;
min-height: 60px !important;
max-width: 60px !important;
max-height: 60px !important;
border-radius: 100px !important;
background: #222;
border: none;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease !important;
position: absolute !important;
z-index: 2;
right: 0;
bottom: 0;
top: initial !important;
padding: 0 !important;
}
.listeo-floating-chat-button:hover {
transform: scale(1.05);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.listeo-floating-chat-button.listeo-mini-chat-launcher-return {
animation: listeoMiniChatLauncherReturn 0.22s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
@keyframes listeoMiniChatLauncherReturn {
from {
opacity: 0;
transform: scale(0.88);
}
to {
opacity: 1;
transform: scale(1);
}
} .listeo-floating-chat-button i {
color: white;
font-size: 24px;
transition: all 0.2s ease;
}
.listeo-floating-chat-button i.sl-icon-arrow-down { font-size: 18px; } .listeo-floating-custom-icon {
max-width: 32px;
max-height: 32px;
width: auto;
height: auto;
border-radius: 100px;
object-fit: contain;
transition: all 0.2s ease;
} .listeo-floating-icon-open,
.listeo-floating-icon-close {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 28px;
height: 28px;
}
@supports selector(:has(*)) {
.listeo-floating-chat-button .listeo-floating-icon-open,
.listeo-floating-chat-button .listeo-floating-icon-close {
display: block !important;
pointer-events: none;
opacity: 1;
transform: translate(-50%, -50%) scale(1);
transition: opacity 0.2s ease, transform 0.2s ease;
will-change: opacity, transform;
}
.listeo-floating-chat-button .listeo-floating-icon-close {
opacity: 0;
transform: translate(-50%, -50%) scale(0);
}
.listeo-floating-chat-widget:has(.listeo-floating-chat-popup[style*="display: block"]):not(:has(.listeo-floating-chat-popup[style*="opacity: 0"])) .listeo-floating-chat-button .listeo-floating-icon-open {
opacity: 0;
transform: translate(-50%, -50%) scale(0);
}
.listeo-floating-chat-widget:has(.listeo-floating-chat-popup[style*="display: block"]):not(:has(.listeo-floating-chat-popup[style*="opacity: 0"])) .listeo-floating-chat-button .listeo-floating-icon-close {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
} .listeo-floating-bubble-stack {
position: absolute;
right: 0;
bottom: 75px;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 8px;
width: 280px;
max-width: calc(100vw - 30px);
z-index: 1;
}
.listeo-floating-chat-widget.position-left .listeo-floating-bubble-stack {
right: auto;
left: 0;
align-items: flex-start;
}
.listeo-floating-bubble-stack .listeo-floating-welcome-bubble {
box-sizing: border-box;
right: auto;
left: auto;
width: max-content;
max-width: 100%;
margin-bottom: 0;
float: none;
}
.listeo-floating-bubble-stack .listeo-floating-welcome-bubble-arrow {
display: none;
}
.listeo-floating-bubble-stack > .listeo-floating-welcome-bubble:last-of-type .listeo-floating-welcome-bubble-arrow {
display: block;
}
.listeo-floating-welcome-bubble {
right: 0;
cursor: pointer;
background: white;
border-radius: 8px;
padding: 12px 16px;
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1); animation: bubbleFadeIn 0.3s ease;
z-index: 1;
text-align: center;
width: auto;
margin-bottom: 75px;
position: relative;
}
.listeo-floating-welcome-bubble-content {
font-size: 14px;
line-height: 20px;
font-weight: 400;
color: #555;
}
.listeo-floating-welcome-bubble-arrow {
position: absolute;
bottom: -6px;
right: 20px;
width: 12px;
height: 12px;
background: white;
transform: rotate(45deg);
} .listeo-floating-welcome-bubble.hidden {
display: none;
}
.listeo-floating-mini-chat {
position: absolute;
right: 0;
bottom: 0;
z-index: 3;
display: block;
visibility: hidden;
box-sizing: border-box;
width: 340px;
max-width: calc(100vw - 30px);
padding: 10px;
border: none !important;
border-radius: 10px;
background: #fff;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
opacity: 0;
filter: blur(8px);
pointer-events: none;
transition:
opacity 0.22s ease,
filter 0.22s ease,
visibility 0s linear 0.22s;
}
.listeo-floating-mini-chat.is-visible {
visibility: visible;
opacity: 1;
filter: blur(0);
pointer-events: auto;
transition-delay: 0s;
}
.listeo-floating-chat-widget.position-left .listeo-floating-mini-chat {
right: auto;
left: 0;
}
.listeo-floating-mini-chat-identity {
position: absolute;
top: -42px;
left: 0;
display: inline-flex;
box-sizing: border-box;
max-width: calc(100% - 42px);
min-height: 32px;
margin: 0 !important;
padding: 4px 12px !important;
align-items: center;
gap: 8px;
border: 0 !important;
border-radius: 100px !important;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
color: #222 !important;
cursor: pointer;
font-family: inherit;
line-height: 24px;
text-align: left;
}
.listeo-floating-mini-chat-identity.has-avatar {
padding-left: 4px !important;
}
.listeo-floating-chat-widget:not(.dark-mode) .listeo-floating-mini-chat-identity {
border: 1px solid #ffffffa1 !important;
background: #ffffffb8 !important;
backdrop-filter: blur(5px);
}
.listeo-floating-chat-widget.position-left .listeo-floating-mini-chat-identity {
right: 0;
left: auto;
}
body .listeo-floating-mini-chat-avatar {
display: block;
flex: 0 0 24px;
box-sizing: border-box;
width: 24px !important;
min-width: 24px !important;
max-width: 24px !important;
height: 24px !important;
min-height: 24px !important;
max-height: 24px !important;
margin: 0;
border-radius: 50% !important;
object-fit: cover;
}
.listeo-floating-mini-chat-assistant-name {
min-width: 0;
overflow: hidden;
font-size: 13px;
font-weight: 500;
text-overflow: ellipsis;
white-space: nowrap;
}
.listeo-floating-mini-chat-close {
position: absolute !important;
top: -42px !important;
right: 0 !important;
display: inline-flex !important;
box-sizing: border-box !important;
width: 32px !important;
min-width: 32px !important;
max-width: 32px !important;
height: 32px !important;
min-height: 32px !important;
max-height: 32px !important;
margin: 0 !important;
padding: 0 !important;
align-items: center !important;
justify-content: center !important;
border: 0 !important;
border-radius: 50% !important;
background: #f0f0f0 !important;
box-shadow: none !important;
color: #666 !important;
cursor: pointer !important;
transform: none !important;
transition:
background-color 0.2s ease,
color 0.2s ease,
transform 0.2s ease !important;
}
.listeo-floating-chat-widget.position-left .listeo-floating-mini-chat-close {
right: auto !important;
left: 0 !important;
}
.listeo-floating-mini-chat-message {
max-height: 180px;
overflow-y: auto;
padding: 16px;
border-radius: 10px;
background: #f5f5f5;
color: #333;
font-size: 15px;
line-height: 24px;
white-space: pre-wrap;
}
.listeo-floating-mini-chat-message a {
color: var(--ai-chat-primary-color, #006aff);
text-decoration: underline;
}
.listeo-floating-mini-chat-message a:hover,
.listeo-floating-mini-chat-message a:focus-visible {
color: #0055cc;
}
.listeo-floating-mini-chat-quick-actions {
display: flex !important;
flex-wrap: wrap !important;
gap: 8px !important;
margin: 10px 0 2px !important;
padding: 0 !important;
}
.listeo-floating-mini-chat-quick-actions[hidden] {
display: none !important;
}
.listeo-floating-mini-chat-quick-action {
display: inline-flex !important;
box-sizing: border-box !important;
width: auto !important;
min-width: 0 !important;
max-width: 100% !important;
height: auto !important;
min-height: 32px !important;
margin: 0 !important;
padding: 6px 12px !important;
align-items: center !important;
gap: 6px !important;
border: none !important;
border-radius: 8px !important;
outline: 0 !important;
background: #ebebeb !important;
box-shadow: none !important;
color: #777 !important;
cursor: pointer !important;
font: inherit !important;
font-size: 13px !important;
font-weight: 500 !important;
line-height: 20px !important;
text-align: left !important;
text-transform: none !important;
white-space: nowrap !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
appearance: none !important;
transform: none !important;
transition:
background-color 0.2s ease,
color 0.2s ease,
transform 0.2s ease !important;
}
.listeo-floating-mini-chat-quick-action:hover {
background: var(--quick-btn-color-light, var(--ai-chat-primary-color-light, rgba(0, 115, 238, 0.1))) !important;
color: var(--quick-btn-color, var(--ai-chat-primary-color, #0073ee)) !important;
}
.listeo-floating-mini-chat-quick-action:active {
transform: scale(0.97) !important;
}
.listeo-floating-mini-chat-quick-action:focus-visible {
outline: 2px solid var(--quick-btn-color, var(--ai-chat-primary-color, #0073ee)) !important;
outline-offset: 2px !important;
}
.listeo-floating-mini-chat-quick-action.listeo-floating-mini-chat-quick-action-custom {
background: var(--quick-btn-color-light) !important;
color: var(--quick-btn-color) !important;
}
.listeo-floating-mini-chat-quick-action.listeo-floating-mini-chat-quick-action-custom:hover {
background: var(--quick-btn-color-light) !important;
background: color-mix(in srgb, var(--quick-btn-color-light) 94%, var(--quick-btn-color)) !important;
color: var(--quick-btn-color) !important;
}
.listeo-floating-mini-chat-quick-action.listeo-floating-mini-chat-quick-action-custom:focus-visible {
outline-color: var(--quick-btn-color) !important;
}
.listeo-floating-mini-chat-form {
display: flex;
gap: 8px;
margin-top: 8px;
align-items: center;
}
.listeo-floating-mini-chat-input {
flex: 1 1 auto !important;
box-sizing: border-box !important;
width: 0 !important;
min-width: 0 !important;
height: 44px !important;
min-height: 44px !important;
max-height: 44px !important;
margin: 0 !important;
padding: 0 10px !important;
border: 0 !important;
border-radius: 0 !important;
outline: 0 !important;
background: transparent !important;
box-shadow: none !important;
color: #333 !important;
font: inherit !important;
font-size: 15px !important;
line-height: 44px !important;
appearance: none !important;
}
.listeo-floating-mini-chat-send {
display: inline-flex !important;
flex: 0 0 40px !important;
box-sizing: border-box !important;
width: 40px !important;
min-width: 40px !important;
max-width: 40px !important;
height: 40px !important;
min-height: 40px !important;
max-height: 40px !important;
margin: 0 !important;
padding: 0 !important;
align-items: center !important;
justify-content: center !important;
border: none !important;
border-radius: 50% !important;
background: var(--ai-chat-button-color, #222) !important;
box-shadow: none !important;
color: #fff !important;
cursor: pointer !important;
appearance: none !important;
transform: none !important;
transition:
background-color 0.2s ease,
color 0.2s ease,
transform 0.2s ease !important;
}
.listeo-floating-mini-chat-close:hover,
.listeo-floating-mini-chat-close:focus-visible {
background: #dcdcdc !important;
transform: scale(1.03) !important;
}
.listeo-floating-mini-chat-send:hover,
.listeo-floating-mini-chat-send:focus-visible {
background: var(--ai-chat-button-color, #222) !important;
background: color-mix(in srgb, var(--ai-chat-button-color, #222) 88%, #000) !important;
color: #fff !important;
transform: scale(1.03) !important;
}
.listeo-floating-mini-chat-send svg,
.listeo-floating-mini-chat-send:hover svg,
.listeo-floating-mini-chat-send:focus-visible svg {
color: #fff !important;
stroke: #fff !important;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat {
background: #1a1a1a;
color-scheme: dark;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-identity {
background: #333 !important;
color: #e5e5e5 !important;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-message {
background: #2e2e2e !important;
color: #e5e5e5;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-message strong {
color: #fff;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-message a,
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-message a:hover,
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-message a:focus-visible {
color: #fff;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-send,
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-send:hover,
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-send:focus-visible {
background: var(--ai-chat-primary-color, #0073ee) !important;
color: #fff !important;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-quick-action {
background: #2b2b2b !important;
color: #e5e5e5 !important;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-quick-action:hover {
background: var(--quick-btn-color, var(--ai-chat-primary-color, #0073ee)) !important;
color: #fff !important;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-quick-action.listeo-floating-mini-chat-quick-action-custom {
background: var(--quick-btn-color) !important;
color: #fff !important;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-quick-action.listeo-floating-mini-chat-quick-action-custom:hover {
background: var(--quick-btn-color) !important;
background: color-mix(in srgb, var(--quick-btn-color) 88%, #000) !important;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-input {
background: transparent !important;
color: #e5e5e5 !important;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-input::placeholder {
color: #999 !important;
opacity: 1;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-close {
background: #333 !important;
color: #e5e5e5 !important;
}
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-close:hover,
.listeo-floating-chat-widget.dark-mode .listeo-floating-mini-chat-close:focus-visible {
background: #444 !important;
}
@media (prefers-reduced-motion: reduce) {
.listeo-floating-mini-chat,
.listeo-floating-mini-chat-quick-action {
transition: none;
}
.listeo-floating-chat-button.listeo-mini-chat-launcher-return {
animation: none !important;
}
}
@keyframes bubbleFadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
} .listeo-floating-chat-popup {
position: absolute;
bottom: 75px;
right: 0; background: white;
border-radius: 10px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
overflow: hidden;
animation: popupSlideIn 0.3s ease;
}
.listeo-floating-chat-popup.listeo-no-animation {
animation: none !important;
}
@keyframes popupSlideIn {
from {
opacity: 0;
transform: translateY(20px) scale(0.95);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
} .listeo-floating-chat-popup .listeo-ai-chat-wrapper {
display: block !important;
height: 100% !important;
max-width: 100% !important;
margin: 0 !important;
}
.listeo-floating-chat-popup .listeo-ai-chat-container {
height: 100%;
border: none;
border-radius: 0;
box-shadow: none;
background: transparent;
}
.listeo-floating-chat-popup { max-height: 75vh; }
@media (max-width: 768px) {
.listeo-floating-chat-widget {
bottom: 0;
right: 0;
left: auto;
width: 100%;
}
.listeo-floating-chat-widget.position-left {
left: 0;
right: auto;
}
.listeo-floating-chat-popup {
width: calc(100% - 30px) !important;
height: calc(100vh - 100px) !important;
bottom: 80px !important;
right: 15px !important;
}
.listeo-floating-chat-widget.position-left .listeo-floating-chat-popup {
right: auto !important;
left: 15px !important;
}
.listeo-floating-chat-button {
bottom: 20px;
right: 20px;
position: absolute;
zoom: 0.8;
}
.listeo-floating-chat-widget.position-left .listeo-floating-chat-button {
right: auto;
left: 20px;
}
.listeo-floating-welcome-bubble {
right: 15px;
width: fit-content;
float: right;
}
.listeo-floating-chat-widget.position-left .listeo-floating-welcome-bubble {
float: left;
right: auto;
left: 15px;
}
.listeo-floating-bubble-stack {
right: 15px;
}
.listeo-floating-chat-widget.position-left .listeo-floating-bubble-stack {
right: auto;
left: 15px;
}
.listeo-floating-chat-widget .listeo-floating-bubble-stack .listeo-floating-welcome-bubble {
right: auto;
left: auto;
float: none;
}
.listeo-floating-mini-chat {
right: 15px !important;
left: 15px !important;
bottom: 20px;
width: auto !important;
max-width: none !important;
}
.listeo-floating-chat-widget.position-left .listeo-floating-mini-chat {
right: 15px !important;
left: 15px !important;
}
} .listeo-ai-chat-terms-notice {
padding: 16px;
padding-top: 0;
font-size: 13px;
line-height: 19px;
text-align: center;
margin-top: -5px;
color: #666;
}
.listeo-ai-chat-terms-notice a {
color: var(--ai-chat-primary-color);
text-decoration: none;
}
.listeo-ai-chat-terms-notice a:hover {
text-decoration: underline;
}  .listeo-ai-chat-lazy-state .listeo-ai-chat-container {
position: relative;
}
.listeo-ai-chat-lazy-state .listeo-ai-chat-header,
.listeo-ai-chat-lazy-state .listeo-ai-chat-messages,
.listeo-ai-chat-lazy-state .listeo-ai-chat-input-wrapper,
.listeo-ai-chat-lazy-state .listeo-ai-chat-quick-buttons,
.listeo-ai-chat-lazy-state .listeo-ai-chat-terms-notice,
.listeo-ai-chat-lazy-state .listeo-ai-chat-powered-by,
.listeo-ai-chat-lazy-state .listeo-ai-chat-menu {
opacity: 0;
} .listeo-ai-chat-lazy-state .listeo-ai-chat-container::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 30px;
height: 30px;
margin: -15px 0 0 -15px;
border: 3px solid rgba(0, 0, 0, 0.1);
border-top-color: #666;
border-radius: 50%;
animation: listeoLazyLoadSpin 0.7s linear infinite;
z-index: 1;
}
.listeo-ai-chat-lazy-state.dark-mode .listeo-ai-chat-container::after {
border-color: rgba(255, 255, 255, 0.15);
border-top-color: #aaa;
}
@keyframes listeoLazyLoadSpin {
to { transform: rotate(360deg); }
}.listeo-ai-chat-mic-btn {
position: absolute !important;
right: 62px;
top: 50%;
transform: translateY(-50%);
width: 32px !important;
height: 32px !important;
min-width: 32px !important;
padding: 0 !important;
border-radius: 50%;
border: none;
background: transparent;
color: #666;
cursor: pointer;
transition: all 0.15s ease;
display: flex !important;
align-items: center;
justify-content: center;
z-index: 2;
} .mic-recording-ui {
display: none;
}
.listeo-ai-chat-mic-btn:hover {
background: #f0f0f0;
color: #333;
}
.listeo-ai-chat-mic-btn:focus {
outline: none;
box-shadow: none;
}
.listeo-ai-chat-mic-btn svg {
width: 18px;
height: 18px;
flex-shrink: 0;
} .listeo-ai-chat-mic-btn.recording {
width: auto !important;
min-width: 80px !important;
padding: 0 10px !important;
border-radius: 16px;
background: #ffe5e7;
border: none;
color: #333;
}
.listeo-ai-chat-mic-btn.recording:hover {
background: #ffe0e3
}
.listeo-ai-chat-mic-btn.recording .mic-icon {
display: none !important;
}
.listeo-ai-chat-mic-btn.recording .mic-recording-ui {
display: flex !important;
align-items: center;
gap: 6px;
} .mic-recording-dot {
width: 8px;
height: 8px;
background: #dc3545;
border-radius: 50%;
position: relative;
flex-shrink: 0;
}
.mic-recording-dot::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 8px;
height: 8px;
background: rgba(220, 53, 69, 0.6);
border-radius: 50%;
transform: translate(-50%, -50%);
animation: mic-pulse-expand 1.2s ease-out infinite;
}
@keyframes mic-pulse-expand {
0% {
width: 8px;
height: 8px;
opacity: 0.6;
}
100% {
width: 24px;
height: 24px;
opacity: 0;
}
} .mic-recording-timer {
font-size: 13px;
font-weight: 500;
color: #dc3545;
font-variant-numeric: tabular-nums;
min-width: 28px;
} .mic-recording-ui .stop-icon {
width: 14px;
height: 14px;
color: #dc3545;
cursor: pointer;
flex-shrink: 0;
transition: color 0.15s ease;
margin-left: -3px;
}
.mic-recording-ui .stop-icon:hover {
color: #dc3545;
} .listeo-ai-chat-mic-btn.transcribing {
background: #fff;
color: #666;
cursor: wait;
pointer-events: none;
}
.listeo-ai-chat-mic-btn.transcribing .mic-icon {
display: none;
}
.listeo-ai-chat-mic-btn.transcribing .mic-transcribing-loader {
display: inline-block !important;
position: relative;
width: 14px;
height: 14px;
box-sizing: border-box;
background: conic-gradient(
from 90deg at 50% 50%,
rgba(160, 160, 160, 0) 0deg,
rgba(160, 160, 160, 0) 0.04deg,
#707070 360deg
);
border-radius: 50%;
animation: micSpinner 0.7s infinite linear;
}
.mic-transcribing-loader::before {
content: "";
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 10px;
height: 10px;
background: #fff;
border-radius: 50%;
}
@keyframes micSpinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
} .listeo-ai-chat-input-wrapper .listeo-ai-chat-input {
padding-right: 60px !important;
}
.listeo-ai-chat-mic-btn {
color: #929292;
}
.listeo-ai-chat-mic-btn:hover {
background: var(--ai-chat-primary-color-light, #dfdfdf);
color: var(--ai-chat-primary-color, #666);
} .listeo-ai-chat-mic-btn.disabled {
opacity: 0.5;
cursor: not-allowed;
pointer-events: none;
} .listeo-ai-chat-mic-btn[title] {
position: relative;
} .listeo-ai-chat-message-user.from-speech {
position: relative;
}
.listeo-ai-speech-indicator {
position: absolute;
bottom: 4px;
right: 8px;
color: rgba(255, 255, 255, 0.7);
line-height: 1;
opacity: 0.8;
}
.listeo-ai-speech-indicator svg {
display: block;
} .listeo-ai-chat-message-user.from-speech .listeo-ai-chat-message-content {
padding-bottom: 18px;
} .listeo-ai-chat-image-btn {
position: absolute !important;
left: 24px;
top: 50%;
transform: translateY(-50%);
width: 34px !important;
height: 34px !important;
min-width: 34px !important;
min-height: 34px !important;
max-width: 34px !important;
max-height: 34px !important;
border-radius: 50px !important;
border: none;
background: #fff !important;
color: #888;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
padding: 0 !important;
z-index: 2;
}
.elementor-chat-style .listeo-ai-chat-image-btn {
background: #f6f6f6 !important;
margin-left: -3px;
}
.listeo-ai-chat-image-btn:hover {
background: var(--ai-chat-primary-color-light, rgba(0, 115, 238, 0.1)) !important;
border-color: var(--ai-chat-primary-color, #0073ee);
color: var(--ai-chat-primary-color, #0073ee);
}
.listeo-ai-chat-image-btn:hover svg {
stroke: var(--ai-chat-primary-color, #0073ee);
}
.listeo-ai-chat-image-btn svg {
flex-shrink: 0;
transition: stroke 0.2s ease;
} .listeo-ai-chat-image-btn.has-image {
background: var(--ai-chat-primary-color-light, rgba(0, 115, 238, 0.1)) !important;
color: var(--ai-chat-primary-color, #0073ee);
}
.listeo-ai-chat-image-btn.has-image svg {
stroke: var(--ai-chat-primary-color, #0073ee);
} .listeo-ai-chat-image-btn .image-count-badge {
position: absolute;
top: -4px;
right: -4px;
min-width: 16px;
height: 16px;
background: var(--ai-chat-primary-color, #0073ee);
color: #fff;
font-size: 10px;
font-weight: 600;
border-radius: 50%;
display: none;
align-items: center;
justify-content: center;
line-height: 1;
padding: 0 4px;
box-sizing: border-box;
}
.listeo-ai-chat-image-btn.has-image .image-count-badge {
display: flex;
} .listeo-ai-chat-input.has-image-input {
padding-left: 50px !important;
} .listeo-ai-chat-image-preview {
position: relative;
display: inline-block;
margin: 8px 0;
max-width: 150px;
}
.listeo-ai-chat-image-preview img {
max-width: 100%;
max-height: 100px;
border-radius: 8px;
object-fit: cover;
}
.listeo-ai-chat-image-preview-remove {
position: absolute;
top: -8px;
right: -8px;
width: 20px;
height: 20px;
border-radius: 50%;
background: #ff4444;
color: white;
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
line-height: 1;
padding: 0;
}
.listeo-ai-chat-image-preview-remove:hover {
background: #cc0000;
} .listeo-ai-chat-message-user .listeo-ai-chat-user-image {
max-width: 200px;
max-height: 150px;
border-radius: 8px;
margin-bottom: 8px;
display: block;
}
.listeo-ai-chat-message-user .listeo-ai-chat-user-image + .listeo-ai-chat-message-content {
margin-top: 0;
} .listeo-ai-tooltip {
position: fixed;
background: #222;
color: #fff;
padding: 6px 10px;
font-size: 12px;
font-weight: 500;
line-height: 1.3;
border-radius: 8px;
white-space: nowrap;
z-index: 9999999;
pointer-events: none;
opacity: 0;
transform: translateX(-50%) translateY(-4px);
transition: opacity 0.15s ease, transform 0.15s ease;
}
.listeo-ai-tooltip.visible {
opacity: 1;
transform: translateX(-50%) translateY(0);
} .listeo-ai-tooltip::after {
content: '';
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
border-width: 5px;
border-style: solid;
border-color: #222 transparent transparent transparent;
}.ai-chat-search-container {
margin: 0;
padding: 0px;
overflow: visible;
position: relative;
} .ai-search-form-wrapper {
position: relative;
margin-bottom: 0;
overflow: visible;
}
.fs-content .ai-search-form-wrapper,
.sidebar .ai-search-form-wrapper{
position: relative;
height: 51px;
padding: 0 20px;
margin: 0;
outline: none;
font-size: 15px;
color: #888;
max-width: 100%;
width: 100%;
box-sizing: border-box;
font-weight: 500;
opacity: 1;
border-radius: 4px;
transition: 0.2s;
background-color: #fff;
border: 1px solid #dbdbdb;
box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.06);
margin-bottom: 18px;
display: flex;
align-items: center;
}
.ai-chat-search-form {
margin: 0;
}
.search-input-wrapper {
display: flex;
align-items: center;
position: relative; }
.search-input-wrapper input[name="ai_search_hp"] {
position: absolute;
left: -9999px;
opacity: 0;
visibility: hidden;
pointer-events: none;
background: transparent;
}
.search-input-wrapper {
border-radius: 4px;
overflow: visible; justify-content: space-between;
width: 100%;
} .search-input-icon {
padding: 0 7px 0 0;
display: flex;
align-items: center;
}
.search-stars {
font-size: 18px;
opacity: 0.9;
width: 20px;
}
.ai-btn-container {
position: relative;
}
.ai-btn-container.ai-btn-error .ai-search-button {
opacity: 0;
visibility: hidden;
} .ai-search-button {
padding: 1px 12px;
background: linear-gradient(135deg, #a98fe5, #7c3aed);
color: white;
border: none;
border-radius: 50px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
display: flex;
align-items: center;
gap: 0;
justify-content: center;
position: relative;
overflow: hidden;
white-space: nowrap;
line-height: 24px;
transition: all 0.3s ease;
background:linear-gradient(292deg, #8b5cf6, #ec4899, #f59e0b);
}
.ai-search-button:hover:not(:disabled) {  }
.ai-search-button:disabled {
opacity: 0.7;
cursor: not-allowed;
transform: none;
}
.ai-search-button.loading-ai {
background: linear-gradient(135deg, #6d28d9, #5b21b6);
}
.ai-search-button.tooltip-visible .button-text {
opacity: 0.3;
}
.ai-search-button .ai-button-icon {
font-size: 12px;
margin-right: 4px;
font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
} .ai-search-form-wrapper {
container-type: inline-size;
}
@container (max-width: 400px) {
.ai-btn-container {
position: absolute;
right: 0;
top: 0;
}
.ai-search-button {
width: 24px;
height: 24px;
transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 100;
}
.ai-search-button .ai-button-icon {
flex-shrink: 0;
margin-right: 0;
font-size: 11px;
}
body .listing-item-ai .listing-meta-ai span.address {
max-width: 95%
}
.ai-search-button .button-text {
max-width: 0;
opacity: 0;
overflow: hidden;
transition: max-width 0.3s ease, opacity 0.3s ease;
white-space: nowrap;
font-size: 13px;
line-height: 24px;
}
.ai-search-button:hover {
width: auto;
padding: 3px 12px;
z-index: 1000;
}
.ai-search-button:hover .ai-button-icon {
margin-right: 4px;
}
.ai-search-button:hover .button-text {
max-width: 120px;
opacity: 1;
}
body .validation-popup {
line-height: 25px;
padding: 0 13px;
font-size: 13px;
height: 25px;
} body .match-badge.best {
font-weight: 600;
text-transform: none;
letter-spacing: 0;
font-size: 11px;
padding: 0px 6px;
height: 18px;
}
} @container (max-width: 400px) {
.search-results-container {
padding: 15px !important;
}
.listing-thumbnail-ai {
width: 60px !important;
height: 60px !important;
padding: 5px !important;
display: none !important;
}
.listing-item-ai .listing-title-ai {
font-size: 14px !important; margin: 0 !important;
line-height: 20px !important;
}
.listing-item-ai {
flex-direction: column;
}
.listing-item-ai .listing-excerpt-ai {
display: none !important; }
.listing-details-ai {
padding: 10px 13px !important; flex-direction: column;
}
.listing-sidebar-ai { justify-content: flex-start}
.listing-sidebar-ai {
min-width: 80px !important;
align-items: flex-start !important;
display: none !important;
} .listing-title-ai .match-badge.compact {
}
.listing-item-ai .listing-meta-ai {
flex-direction: column;
align-items: flex-start !important;
gap: 0 !important;
margin-top: 2px !important;
font-size: 13px !important;
}
.listing-item-ai .listing-meta-ai span {
font-size: 13px !important;
}
.ai-results-header {
margin-bottom: 16px !important;
}
.ai-header-title {
font-size: 16px !important;
}
.ai-header-subtitle {
font-size: 12px !important;
}
}
.ai-search-button.loading-ai {
background: linear-gradient(135deg, #6d28d9, #5b21b6);
}
.loading-spinner {
display: inline-block;
}
.loading-spinner i {
font-size: 14px;
} .search-suggestions {
position: absolute;
top: calc(100% + 8px);
left: 0;
right: 0; width: 100%;
background: white;
border: 1px solid #e0e0e0;
border-radius: 4px;
padding: 20px;
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 4%);
z-index: 9999;
display: none;  opacity: 0;
transform: translateY(-10px);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} .ai-search-visible {
opacity: 1 !important;
transform: translateY(0) !important;
display: block !important;
}
.search-suggestions h4 {
margin: 0 0 12px 0;
font-size: 14px;
color: #6b7280;
font-weight: 500;
}
.suggestion-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.suggestion-tag {
display: inline-block;
padding: 5px 10px;
background: #f4f4f4;
border-radius: 65px;
font-size: 13px;
color: #333;
cursor: pointer;
transition: all 0.2s ease;
font-weight: 500;
line-height: 17px;
}
.suggestion-tag:hover {
background: #222;
color: white;
} .ai-chat-search-container .ai-processing-status {
position: absolute;
top: calc(100% + 8px);
left: 0;
right: 0; width: 100%;
background: white;
border: 1px solid #e0e0e0;
border-radius: 4px;
padding: 15px 20px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
display: none; z-index: 10000;  opacity: 0;
transform: translateY(-10px);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.processing-step {
display: flex;
align-items: center;
gap: 6px;
padding: 0;
opacity: 0.5;
transition: opacity 0.3s ease;
position: relative;
min-height: 28px;
margin: 0 2px;
}
.processing-step.active {
opacity: 1;
position: relative;
overflow: hidden;
border-radius: 74px;
min-height: 28px;
}
.processing-step.active .step-icon,
.processing-step.active .step-text {
color: #8b5cf6;
}
.processing-step .step-timing {
margin-left: auto;
font-size: 13px;
color: #8b5cf6;
background: #f3f0fd;
border-radius: 4px;
padding: 2px 8px;
font-weight: 500;
opacity: 0.85;
min-width: 48px;
text-align: right;
box-shadow: 0 1px 2px rgba(139,92,246,0.07);
transition: background 0.2s, color 0.2s;
margin-right: 2px;
display: none;
}
.processing-step.completed .step-timing,
.processing-step.active .step-timing {
display: inline-block;
}
.processing-step.active::before {
content: '';
position: absolute;
top: 0;
left: -50%;
width: 50%;
height: 100%;
background: linear-gradient(90deg, 
transparent, 
rgba(139, 92, 246, 0.1), 
rgba(168, 85, 247, 0.1), 
rgba(139, 92, 246, 0.1), 
transparent
);
animation: lightning 2s infinite;
z-index: 1;
border-radius: 4px;
}
.processing-step.active .step-icon,
.processing-step.active .step-text {
position: relative;
z-index: 2;
}
@keyframes lightning {
0% {
left: -50%;
}
100% {
left: 100%;
}
}
.processing-step.completed {
opacity: 1;
}
.step-icon {
font-size: 15px;
width: 24px;
text-align: center;
}
.step-text {
font-size: 14px;
color: #374151;
font-weight: 500;
line-height: 18px;
} .search-results-container {
position: absolute;
top: calc(100% + 5px);
left: 0px;
right: 0; width: 100%;
min-height: auto;
max-height: 400px;
overflow-y: auto;
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 6%);
padding: 20px;
border: 1px solid #e0e0e0;
border-radius: 4px;
background: white;
z-index: 9999;
display: none; container-type: inline-size; opacity: 0;
transform: translateY(-10px);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 480px) {
.main-search-inner .search-results-container {min-width: 320px; }
}
.results-header {
margin-bottom: 20px;
padding: 20px;
background: linear-gradient(135deg, #f8faff, #eef2ff);
border: 1px solid #e0e7ff;
border-radius: 5px;
position: relative;
overflow: hidden;
}
.results-header::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(135deg, #667eea, #764ba2);
} .ai-results-header {
margin-bottom: 20px;
}
.ai-header-gradient {
background: white; border-radius: 16px; color: #1f2937;
display: flex;
align-items: center;
gap: 16px; }
.ai-header-icon {
font-size: 28px;
opacity: 0.8;
}
.ai-header-content {
flex: 1;
}
.widget .ai-header-title,
.ai-header-title {
font-size: 20px;
font-weight: 700;
margin: 0;
line-height: 1.2;
background: linear-gradient(135deg, #8b5cf6, #ec4899, #f59e0b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.ai-header-subtitle {
font-size: 14px;
font-weight: 400;
line-height: 1.4;
color: #6b7280;
}
.query-highlight {
font-weight: 600;
background: linear-gradient(135deg, #8b5cf6, #ec4899);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.results-count {
font-size: 20px;
color: #4c51bf;
margin-bottom: 8px;
font-weight: 600;
}
.search-explanation {
font-size: 14px;
color: #6b7280;
font-style: italic;
line-height: 1.5;
}
.fallback-notice {
padding: 12px 16px;
margin-bottom: 15px;
background: #d1ecf1;
border: 1px solid #bee5eb;
border-radius: 5px;
color: #0c5460;
font-size: 14px;
display: flex;
align-items: center;
gap: 8px;
}
.ai-search-input {
height: 30px !important;
background: transparent;
box-shadow: none !Important;
margin-left: 0 !important;
width: 100%;
padding-left: 0 !important;
width: 100%;
flex: 1;
flex-grow: 1;
padding: 0;
border: none !important;
outline: none;
font-size: 16px;
background: transparent;
margin: 0 !important;
font-weight: 500;
line-height: 20px !important;
}
.ai-search-input::placeholder {
color: #808080;
font-weight: 500;
font-size: 15px;
} .results-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 24px;
margin-bottom: 30px;
} .results-list-ai {
display: flex !important;
flex-direction: column !important;
gap: 12px;
margin-bottom: 0;
} .listing-item-ai {
background: white !important;
border-radius: 5px !important;  transition: all 0.2s ease;
border: 1px solid #e0e0e0 !important;
display: flex !important;
align-items: stretch !important;
min-height: 80px !important;
position: relative;
width: 100% !important;
box-shadow: none; text-decoration: none !important;
color: inherit !important; overflow: hidden;
}
.listing-item-ai:hover {
box-shadow: 0 2px 8px rgba(0,0,0,0.07);
} .listing-thumbnail-ai {
position: relative;
height: 100px;
flex-shrink: 0;
overflow: hidden;
max-height: 100px;
width: 100px;
padding: 10px;  }
.listing-thumbnail-ai img {
width: 100%;
height: 100% !important;
object-fit: cover;
transition: transform 0.2s ease;
border-radius: 5px !important;
} .listing-item-ai.no-thumbnail .listing-details-ai {
padding-left: 16px;
}
.listeo-ai-listing-item.no-thumbnail .listeo-ai-listing-details {
padding-left: 16px;
} .listing-details-ai {
display: flex;
flex: 1;
align-items: stretch;
padding: 12px 16px;
gap: 0;
padding-left: 7px;
}
.listing-main-ai {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
min-width: 0; }
.listing-sidebar-ai {
flex-shrink: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-end;
gap: 4px;
min-width: 100px;
} .listing-item-ai .listing-title-ai {
margin: 0 0 4px 0;
font-size: 16px;
font-weight: 600;
line-height: 24px;
color: #222;
transition: 0.2s;
} .listing-item-ai .listing-excerpt-ai {
color: #6b7280;
font-size: 14px;
line-height: 1.4;
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 1; line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
max-width: 90%;
}
.listing-item-ai .listing-meta-ai {
display: flex;
gap: 12px;
font-size: 14px;
color: #888;
flex-wrap: nowrap;
align-items: center;
margin-top: 5px;
}
.listing-item-ai .listing-meta-ai span {
display: flex;
align-items: center;
gap: 4px;
white-space: nowrap;
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
height: 20px;
}
.listing-item-ai .listing-meta-ai span.address {      overflow: hidden; color: #888;
font-size: 13px;
line-height: 1.4; display: -webkit-box;
-webkit-line-clamp: 1;
line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
max-width: 70%;
}
.listing-item-ai .listing-meta-ai i {
width: 10px;
text-align: center;
color: #b4b4b4;
font-size: 12px;
} .listing-item-ai .listing-meta-ai .rating-ai {
color: #f59e0b;
font-weight: 500;
}
.listing-item-ai .listing-meta-ai .rating-ai i {
color: #f59e0b !important;
font-size: 10px;
} .listing-sidebar-ai .price {
font-size: 14px;
font-weight: 600;
color: #059669;
text-align: right;
} .listing-sidebar-ai:empty {
display: none;
} .listing-sidebar-ai:empty {
display: none;
} .listing-sidebar-ai:empty {
display: none;
} .listing-sidebar-ai {
min-width: 100px;
}
.listing-sidebar-ai { display: none !important;} .match-badge.best {
font-weight: 600;
font-size: 12px;
padding: 0px 8px;
line-height: 16px;
text-shadow: none;
border-radius: 50px;
background: #00b54d21;
display: flex;
justify-content: center;
align-content: center;
flex-wrap: wrap;
color: #27ae60;
height: 21px;
position: relative;
top: -1px;
display: inline-block;
margin-top: 4px;
} .no-results {
position: absolute;
top: calc(100% + 8px);
left: 0px;
right: 0;
max-width: 100%;
width: 100%;
text-align: center;
padding: 20px;
background: #f8f9fa;
border-radius: 4px;
z-index: 9999;
display: none; border: 1px solid #e0e0e0;
background: #fff;
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 4%); opacity: 0;
transform: translateY(-10px);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.no-results h3 {
margin: 0 !important;
color: #222;
font-size: 18px!important;
font-weight: 500;
}
.no-results p {
color: #808080;
font-size: 16px;
margin: 0;
line-height: 22px;
margin-top: 5px;
} .search-error {
position: absolute;
top: calc(100% + 0px);
left: 0px;
right: 0;
max-width: 100%;
width: 100%;
padding: 12px 16px;
background: #f8d7da;
border: 1px solid #f5c6cb;
border-radius: 4px;
color: #721c24;
font-size: 14px;
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 4%);
z-index: 9999;
display: none;  opacity: 0;
transform: translateY(-10px);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} .search-debug-panel {
margin-top: 20px;
padding: 15px;
background: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 5px;
font-family: 'Courier New', monospace;
font-size: 12px;
}
.search-debug-panel h4 {
margin: 0 0 15px 0;
color: #495057;
font-family: inherit;
font-size: 14px;
font-weight: bold;
}
.debug-section {
margin-bottom: 8px;
display: flex;
align-items: flex-start;
}
.debug-section strong {
min-width: 140px;
color: #495057;
margin-right: 10px;
}
.debug-section span,
.debug-section pre {
color: #212529;
word-break: break-word;
}
.debug-raw {
margin-top: 15px;
padding-top: 15px;
border-top: 1px solid #dee2e6;
}
.debug-raw-data {
background: #ffffff;
border: 1px solid #ced4da;
border-radius: 5px;
padding: 10px;
font-size: 11px;
max-height: 300px;
overflow-y: auto;
white-space: pre-wrap;
word-wrap: break-word;
}
.debug-toggle-raw {
background: #6c757d;
color: white;
border: none;
padding: 4px 8px;
border-radius: 5px;
cursor: pointer;
font-size: 11px;
}
.debug-toggle-raw:hover {
background: #5a6268;
} .listing-item-ai {
opacity: 0;
transform: translateY(0px);
animation: fadeInUp 0.4s ease-out forwards;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(0px);
}
to {
opacity: 1;
transform: translateY(0);
}
} .results-header {
opacity: 0;
transform: translateY(0px);
animation: fadeInUp 0.4s ease-out forwards;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(0px);
}
to {
opacity: 1;
transform: translateY(0);
}
} .ai-btn-container {position: absolute;right: 0;top: 50%;transform: translateY(-52%);}
.validation-popup {
position: absolute;
top: 50%;
right: 100%;
background: #dc3545;
color: white;
line-height: 20px;
padding: 1px 13px;
border-radius: 55px;
font-size: 13px;
height: 24px;
font-weight: 500;
white-space: nowrap;
opacity: 0;
transform: translateY(-50%) translateX(-10px);
transition: all 0.3s ease;
z-index: 101;
pointer-events: none;
right: 0;
}
.validation-popup.show {
opacity: 1;
transform: translateY(-50%) translateX(0);
}
.main-search-input .search-input-wrapper {
height: 44px;
}
.main-search-inner .ai-search-input::placeholder,
.main-search-inner .ai-search-input { font-size: 16px !important;}
body .main-search-inner .search-suggestions h4 {
line-height: 20px;
font-size: 14px;
color: #666 !important;
font-weight: 500;
opacity: 1;
}
.main-search-inner .no-results,
.main-search-inner .ai-processing-status,
.main-search-inner .search-suggestions,
.main-search-inner .search-results-container {
border: none;
box-shadow: 0 3px 4px rgba(0, 0, 0, 0.08);
padding-top: 10px;
}
.widget .no-results,
.widget .ai-processing-status,
.widget .search-suggestions,
.widget .search-results-container {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
top: calc(100% - 2px);
border-top: none;
border-radius: 0 0 4px 4px;
left: -1px;
width: calc(100% + 2px);
padding-top: 10px;
}
.widget .search-results-container { left: 0;}
@media (max-width: 992px) {
.main-search-inner .ai-search-form-wrapper {     background: #fff;
padding: 5px 14px;
border-radius: 5px;}
.main-search-inner .no-results,
.main-search-inner .ai-processing-status,
.main-search-inner .search-suggestions,
.main-search-inner .search-results-container {
padding-top: 20px;
}
body .header-search-container  .ai-search-form-wrapper {     background: #fff;
padding: 5px 14px;
border-radius: 5px;
border: 1px solid #e0e0e0;
box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08);
}
body .header-search-container .search-input-wrapper {
}
} #dark-mode .fs-content .ai-search-form-wrapper,
#dark-mode .sidebar .ai-search-form-wrapper {
background-color: #333;
border: 1px solid #555;
box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.3);
}
#dark-mode .ai-search-input {
color: #ddd;
}
#dark-mode .ai-search-input::placeholder {
color: #999;
}
#dark-mode .search-suggestions {
background: #333;
border: 1px solid #555;
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 25%);
}
#dark-mode .search-suggestions h4 {
color: #999;
}
#dark-mode .suggestion-tag {
background: #444;
color: #ddd;
}
#dark-mode .suggestion-tag:hover {
background: #555;
color: white;
}
#dark-mode .ai-processing-status {
background: #333;
border: 1px solid #555;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
#dark-mode .step-text {
color: #ddd;
}
#dark-mode .processing-step .step-timing {
background: #444;
color: #8b5cf6;
}
#dark-mode .search-results-container {
background: #333;
border: 1px solid #555;
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 25%);
}
#dark-mode .ai-header-gradient {
background: #333;
}
#dark-mode .ai-header-subtitle {
color: #999;
}
#dark-mode .listing-item-ai {
background: #444 !important;
border: 1px solid #666 !important;
}
#dark-mode .listing-item-ai:hover {
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
#dark-mode .listing-item-ai .listing-title-ai {
color: #ddd;
}
#dark-mode .listing-item-ai .listing-excerpt-ai {
color: #999;
}
#dark-mode .listing-item-ai .listing-meta-ai {
color: #999;
}
#dark-mode .listing-item-ai .listing-meta-ai span.address {
color: #999;
}
#dark-mode .listing-item-ai .listing-meta-ai i {
color: #777;
}
#dark-mode .no-results {
background: #333;
border: 1px solid #555;
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 25%);
}
#dark-mode .no-results h3 {
color: #ddd !important;
}
#dark-mode .no-results p {
color: #999;
}
#dark-mode .search-error {
background: #5a1a1a;
border: 1px solid #7a2222;
color: #ffb3b3;
}
#dark-mode .validation-popup {
background: #dc2626;
}
#dark-mode .main-search-inner .search-suggestions h4 {
color: #999 !important;
}
#dark-mode .main-search-inner .no-results,
#dark-mode .main-search-inner .ai-processing-status,
#dark-mode .main-search-inner .search-suggestions,
#dark-mode .main-search-inner .search-results-container {
box-shadow: 0 3px 4px rgba(0, 0, 0, 0.25);
}
#dark-mode .widget .no-results,
#dark-mode .widget .ai-processing-status,
#dark-mode .widget .search-suggestions,
#dark-mode .widget .search-results-container {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
#dark-mode .main-search-inner .ai-search-form-wrapper {
background: #333;
border: 1px solid #555;
box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.25);
}
#dark-mode .header-search-container .ai-search-form-wrapper {
background: #333;
border: 1px solid #555;
box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.25);
}
}
@media (max-width: 992px) {.home-search-carousel .ai-search-form-wrapper {  background: #fff; padding: 3px 10px; border-radius: 5px; }}  .results-list-ai .listeo-ai-listing-item {
background: white;
border-radius: 5px;
border: 1px solid #e0e0e0;
display: flex;
align-items: stretch;
min-height: 90px;
text-decoration: none !important;
color: inherit;
box-shadow: none;
transition: box-shadow 0.2s, border-color 0.2s;
}
.results-list-ai .listeo-ai-listing-item:hover {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.results-list-ai .listeo-ai-listing-thumbnail {
width: 90px;
height: 90px;
flex-shrink: 0;
overflow: hidden;
padding: 12px;
margin-top: 5px;
margin-left: 3px;
}
.results-list-ai .listeo-ai-listing-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 8px;
}
.results-list-ai .listeo-ai-listing-details {
flex: 1;
display: flex;
padding: 12px 16px;
padding-left: 0;
align-items: stretch;
gap: 0;
text-decoration: none;
word-break: break-word;
}
.results-list-ai .listeo-ai-listing-main {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
min-width: 0;
}
.results-list-ai .listeo-ai-listing-title {
margin: 0 0 4px 0;
font-size: 15px;
font-weight: 600;
line-height: 20px;
color: #333;
}
.results-list-ai p.listeo-ai-listing-excerpt {
color: #666;
font-size: 13px;
line-height: 1.4;
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
}
.results-list-ai .listeo-ai-listing-meta {
display: flex;
gap: 0;
font-size: 13px;
color: #888;
flex-wrap: wrap;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
}
.results-list-ai .listeo-ai-listing-meta span {
display: flex;
align-items: baseline;
gap: 4px;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
}
.results-list-ai .listeo-ai-listing-meta i {
width: 12px;
text-align: center;
font-size: 11px;
color: #b4b4b4;
}
.results-list-ai .listeo-ai-listing-rating {
color: #f59e0b;
font-weight: 500;
}
.results-list-ai .listeo-ai-listing-rating i {
color: #f59e0b !important;
} .results-list-ai .product-price {
font-weight: 600;
color: #333;
font-size: 14px;
display: flex !important;
}
.results-list-ai .product-price .regular-price {
text-decoration: line-through;
color: #888;
font-weight: 400;
margin-right: 6px;
}
.results-list-ai .product-price .sale-price {
color: #27ae60;
font-weight: 600;
background-color: #fbf2d1;
color: #8a803e;
padding: 0px 4px;
border-radius: 50px;
}
.results-list-ai .stock-status {
font-size: 13px;
font-weight: 500;
padding: 0;
border-radius: 54px;
display: inline-flex;
align-items: center;
gap: 4px;
display: inline-block !important;
margin-bottom: -8px;
}
.results-list-ai .stock-status.in-stock {
color: #27ae60;
}
.results-list-ai .stock-status.in-stock i {
color: #27ae60 !important;
}
.results-list-ai .stock-status.out-of-stock {
color: #e74c3c;
}
.results-list-ai .stock-status.out-of-stock i {
color: #e74c3c !important;
} .ai-search-submit-btn {
position: absolute;
right: -10px;
top: 50%;
transform: translateY(-50%);
background: #f0f0f0;
border: none;
color: #888;
width: 36px;
height: 36px;
border-radius: 6px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s;
}
.ai-search-submit-btn:hover {
background: #222;
color: #fff; 
}
.ai-search-submit-btn svg {
transition: 0.3s;
} html body .ai-chat-search-container.ai-search-field-standalone {
margin: 0 !important;
padding: 0 !important;
border: 0 !important;
border-radius: 0 !important;
background: transparent !important;
box-shadow: none !important;
}
html body .ai-chat-search-container.ai-search-field-standalone.ai-search-field-custom-width {
width: 100% !important;
max-width: var(--ai-search-field-max-width) !important;
}
html body .ai-chat-search-container.ai-search-field-standalone > .ai-search-form-wrapper {
position: relative !important;
margin: 0 !important;
padding: 0 !important;
overflow: visible !important;
}
html body .ai-chat-search-container.ai-search-field-standalone > .ai-search-form-wrapper > .search-input-wrapper {
display: flex !important;
width: 100% !important;
min-height: 58px !important;
margin: 0 !important;
padding: var(--ai-search-field-padding, 8px) !important;
padding-left: var(--ai-search-field-padding-left, 20px) !important;
align-items: center !important;
gap: 10px !important;
border: var(--ai-search-field-border-width, 1px) solid var(--ai-search-field-border-color, #e0e0e0) !important;
border-radius: 10px !important;
background: var(--ai-search-field-background, #fff) !important;
box-shadow: var(--ai-search-field-box-shadow, 0 1px 3px rgba(0, 0, 0, 0.10)) !important;
box-sizing: border-box !important;
}
html body .ai-chat-search-container.ai-search-field-standalone .search-input-icon {
display: flex !important;
width: 22px !important;
min-width: 22px !important;
height: 22px !important;
padding: 0 !important;
align-items: center !important;
justify-content: center !important;
color: #666 !important;
line-height: 1 !important;
}
html body .ai-chat-search-container.ai-search-field-standalone .search-stars {
display: block !important;
width: auto !important;
margin: 0 !important;
font-size: 18px !important;
line-height: 1 !important;
}
html body .ai-chat-search-container.ai-search-field-standalone .ai-search-leading-icon {
display: block !important;
width: 20px !important;
height: 20px !important;
margin: 0 !important;
fill: none !important;
stroke: currentColor !important;
}
html body .ai-chat-search-container.ai-search-field-standalone .ai-search-leading-icon--sparkles {
width: 22px !important;
height: 22px !important;
color: #f5a623 !important;
fill: currentColor !important;
stroke: none !important;
}
html body .ai-chat-search-container.ai-search-field-standalone input.ai-search-input {
display: block !important;
width: 100% !important;
min-width: 0 !important;
height: auto !important;
min-height: 30px !important;
margin: 0 !important;
padding: 0 !important;
flex: 1 1 auto !important;
border: 0 !important;
border-radius: 0 !important;
outline: 0 !important;
background: transparent !important;
box-shadow: none !important;
color: var(--ai-search-field-text-color, #333) !important;
font-family: inherit !important;
font-size: var(--ai-search-field-font-size, 16px) !important;
font-weight: 500 !important;
line-height: 30px !important;
appearance: none !important;
box-sizing: border-box !important;
}
html body .ai-chat-search-container.ai-search-field-standalone input.ai-search-input::placeholder {
color: var(--ai-search-field-text-color, #333) !important;
font-size: var(--ai-search-field-font-size, 16px) !important;
font-weight: 500 !important;
opacity: 1 !important;
}
html body .ai-chat-search-container.ai-search-field-standalone button.ai-search-submit-btn {
position: static !important;
display: inline-flex !important;
width: 42px !important;
min-width: 42px !important;
height: 42px !important;
min-height: 42px !important;
margin: 0 !important;
padding: 0 !important;
flex: 0 0 42px !important;
align-items: center !important;
justify-content: center !important;
border: 0 !important;
border-radius: 9px !important;
outline: 0 !important;
background: var(--ai-search-field-button-color, #006aff) !important;
box-shadow: none !important;
color: #fff !important;
font: inherit !important;
letter-spacing: normal !important;
line-height: 1 !important;
text-decoration: none !important;
text-transform: none !important;
transform: none !important;
cursor: pointer !important;
appearance: none !important;
box-sizing: border-box !important;
}
html body .ai-chat-search-container.ai-search-field-standalone button.ai-search-submit-btn:hover,
html body .ai-chat-search-container.ai-search-field-standalone button.ai-search-submit-btn:focus {
background: var(--ai-search-field-button-color, #006aff) !important;
color: #fff !important;
filter: brightness(0.9) !important;
}
html body .ai-chat-search-container.ai-search-field-standalone button.ai-search-submit-btn svg {
display: block !important;
width: 18px !important;
height: 18px !important;
margin: 0 !important;
fill: none !important;
stroke: currentColor !important;
}#honeypot-field-url{display:none!important}.comment-form-cookies-consent{width:100%;overflow:hidden}.wc_apbct_email_id{display:none!important}.um-form input[type=text].apbct_special_field,input[class*=apbct].apbct_special_field,label[id*=apbct_label_id].apbct_special_field{display:none!important}.apbct-tooltip{display:none;position:inherit;margin-top:5px;left:5px;background:#d3d3d3;border-radius:5px;opacity:.9}.apbct-tooltip--text{position:sticky;background:#d3d3d3;padding:10px;border-radius:5px;width:max-content}.apbct-tooltip--arrow{position:absolute;background:#d3d3d3;width:10px;height:10px;top:-5px;left:10px;transform:rotate(135deg)}.apbct-trusted-text--div{font-size:small!important;display:inline-block;text-align:center;width:100%;margin-bottom:2pc}.apbct-trusted-text--center{font-size:small!important;display:block;text-align:center;width:100%;margin-bottom:2pc}.apbct-trusted-text--label{font-size:small!important;display:inline-block;text-align:center;width:100%;padding:5px 0 5px 0}.apbct-trusted-text--label_left{font-size:small!important;display:inline-block;text-align:left;padding:5px 0 5px 0}.apbct-trusted-text--span{display:inline-block}.apbct-popup-fade:before{content:'';background:#000;position:fixed;left:0;top:0;width:100%;height:100%;opacity:.7;z-index:9999}.apbct-popup{position:fixed;top:20%;left:50%;padding:20px;width:360px;margin-left:-200px;background:#fff;border:1px solid;border-radius:4px;z-index:99999;opacity:1}.apbct-check_email_exist-bad_email,.apbct-check_email_exist-good_email,.apbct-check_email_exist-load{z-index:9999!important;transition:none!important;background-size:contain;background-repeat:no-repeat!important;background-position-x:right;background-position-y:center;cursor:pointer!important}.apbct-check_email_exist-load{background-size:contain;background-image:url(//www.physio-hameln.de/wp-content/plugins/cleantalk-spam-protect/css/images/checking_email.gif)!important}.apbct-check_email_exist-block{position:fixed!important;display:block!important}.apbct-check_email_exist-good_email{background-image:url(//www.physio-hameln.de/wp-content/plugins/cleantalk-spam-protect/css/images/good_email.svg)!important}.apbct-check_email_exist-bad_email{background-image:url(//www.physio-hameln.de/wp-content/plugins/cleantalk-spam-protect/css/images/bad_email.svg)!important}.apbct-check_email_exist-popup_description{display:none;position:fixed!important;padding:2px!important;border:1px solid #e5e8ed!important;border-radius:16px 16px 0 16px!important;background:#fff!important;background-position-x:right!important;font-size:14px!important;text-align:center!important;transition:all 1s ease-out!important}@media screen and (max-width:782px){.apbct-check_email_exist-popup_description{width:100%!important}}.ct-encoded-form{display:none}.ct-encoded-form-loader{display:block;width:48px;height:48px;border:5px solid #f3f3f3;border-top:5px solid #3498db;border-radius:50%;animation:ct-encoded-form-loader-spin 1s linear infinite;margin:auto}@keyframes ct-encoded-form-loader-spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.ct-encoded-form-forbidden{display:block;border:1px solid red;padding:10px;background:#fdd;color:red;font-weight:700}.comments-area .comment-list article .comment-author{overflow:visible!important}.apbct-email-encoder-popup{width:30vw;min-width:400px;font-size:16px}.apbct-email-encoder--popup-header{font-size:16px;color:#333}.apbct-email-encoder-elements_center{display:flex;flex-direction:column;justify-content:center;align-items:center;font-size:16px!important;color:#000!important}.top-margin-long{margin-top:5px}.apbct-tooltip{display:none}.apbct-email-encoder{position:relative}.apbct-blur{filter:blur(5px);transition:filter 2s}.apbct-email-encoder.no-blur .apbct-blur{filter:none}.apbct-email-encoder-select-whole-email{-webkit-user-select:all;user-select:all}.apbct-email-encoder-got-it-button{all:unset;margin-top:10px;padding:5px 10px;border-radius:5px;background-color:#333;color:#fff;cursor:pointer;transition:background-color .3s}.apbct-ee-animation-wrapper{display:flex;height:60px;justify-content:center;font-size:16px;align-items:center}.apbct_dog{margin:0 5px;color:transparent;text-shadow:0 0 2px #aaa}.apbct_dog_one{animation-duration:1.5s;animation-iteration-count:infinite;animation-delay:0s;animation-name:apbct_dog}.apbct_dog_two{animation-duration:1.5s;animation-iteration-count:infinite;animation-delay:.5s;animation-name:apbct_dog}.apbct_dog_three{animation-duration:1.5s;animation-iteration-count:infinite;animation-delay:1s;animation-name:apbct_dog}@keyframes apbct_dog{0%{scale:100%;color:transparent;text-shadow:0 0 2px #aaa}25%{scale:200%;color:unset;text-shadow:unset}75%{scale:100%;color:transparent;text-shadow:0 0 2px #aaa}100%{scale:100%;color:transparent;text-shadow:0 0 2px #aaa}}.apbct-email-encoder--settings_example_encoded{position:relative}@media screen and (max-width:782px){.apbct-email-encoder--settings_example_encoded{position:relative;display:block}.apbct-email-encoder-popup{width:20vw;min-width:200px;font-size:16px;top:20%;left:75%}.apbct-email-encoder-elements_center{flex-direction:column!important;text-align:center}}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:400;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-400-cyrillic-ext.ef54216e.woff2) format("woff2");unicode-range:u+0460-052f,u+1c80-1c8a,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:400;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-400-cyrillic.969ea6a3.woff2) format("woff2");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:400;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-400-greek-ext.04782fd5.woff2) format("woff2");unicode-range:u+1f??}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:400;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-400-greek.9e4a3805.woff2) format("woff2");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:400;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-400-symbols.f5851590.woff2) format("woff2");unicode-range:u+0001-000c,u+000e-001f,u+007f-009f,u+20dd-20e0,u+20e2-20e4,u+2150-218f,u+2190,u+2192,u+2194-2199,u+21af,u+21e6-21f0,u+21f3,u+2218-2219,u+2299,u+22c4-22c6,u+2300-243f,u+2440-244a,u+2460-24ff,u+25a0-27bf,u+28??,u+2921-2922,u+2981,u+29bf,u+29eb,u+2b??,u+4dc0-4dff,u+fff9-fffb,u+10140-1018e,u+10190-1019c,u+101a0,u+101d0-101fd,u+102e0-102fb,u+10e60-10e7e,u+1d2c0-1d2d3,u+1d2e0-1d37f,u+1f0??,u+1f100-1f1ad,u+1f1e6-1f1ff,u+1f30d-1f30f,u+1f315,u+1f31c,u+1f31e,u+1f320-1f32c,u+1f336,u+1f378,u+1f37d,u+1f382,u+1f393-1f39f,u+1f3a7-1f3a8,u+1f3ac-1f3af,u+1f3c2,u+1f3c4-1f3c6,u+1f3ca-1f3ce,u+1f3d4-1f3e0,u+1f3ed,u+1f3f1-1f3f3,u+1f3f5-1f3f7,u+1f408,u+1f415,u+1f41f,u+1f426,u+1f43f,u+1f441-1f442,u+1f444,u+1f446-1f449,u+1f44c-1f44e,u+1f453,u+1f46a,u+1f47d,u+1f4a3,u+1f4b0,u+1f4b3,u+1f4b9,u+1f4bb,u+1f4bf,u+1f4c8-1f4cb,u+1f4d6,u+1f4da,u+1f4df,u+1f4e3-1f4e6,u+1f4ea-1f4ed,u+1f4f7,u+1f4f9-1f4fb,u+1f4fd-1f4fe,u+1f503,u+1f507-1f50b,u+1f50d,u+1f512-1f513,u+1f53e-1f54a,u+1f54f-1f5fa,u+1f610,u+1f650-1f67f,u+1f687,u+1f68d,u+1f691,u+1f694,u+1f698,u+1f6ad,u+1f6b2,u+1f6b9-1f6ba,u+1f6bc,u+1f6c6-1f6cf,u+1f6d3-1f6d7,u+1f6e0-1f6ea,u+1f6f0-1f6f3,u+1f6f7-1f6fc,u+1f7??,u+1f800-1f80b,u+1f810-1f847,u+1f850-1f859,u+1f860-1f887,u+1f890-1f8ad,u+1f8b0-1f8bb,u+1f8c0-1f8c1,u+1f900-1f90b,u+1f93b,u+1f946,u+1f984,u+1f996,u+1f9e9,u+1fa00-1fa6f,u+1fa70-1fa7c,u+1fa80-1fa89,u+1fa8f-1fac6,u+1face-1fadc,u+1fadf-1fae9,u+1faf0-1faf8,u+1fb??}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:400;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-400-vietnamese.b13ae75f.woff2) format("woff2");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:400;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-400-latin-ext.6d1ff22c.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:400;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-400-latin.75e6c243.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:500;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-500-cyrillic-ext.ef54216e.woff2) format("woff2");unicode-range:u+0460-052f,u+1c80-1c8a,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:500;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-500-cyrillic.969ea6a3.woff2) format("woff2");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:500;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-500-greek-ext.04782fd5.woff2) format("woff2");unicode-range:u+1f??}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:500;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-500-greek.9e4a3805.woff2) format("woff2");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:500;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-500-symbols.f5851590.woff2) format("woff2");unicode-range:u+0001-000c,u+000e-001f,u+007f-009f,u+20dd-20e0,u+20e2-20e4,u+2150-218f,u+2190,u+2192,u+2194-2199,u+21af,u+21e6-21f0,u+21f3,u+2218-2219,u+2299,u+22c4-22c6,u+2300-243f,u+2440-244a,u+2460-24ff,u+25a0-27bf,u+28??,u+2921-2922,u+2981,u+29bf,u+29eb,u+2b??,u+4dc0-4dff,u+fff9-fffb,u+10140-1018e,u+10190-1019c,u+101a0,u+101d0-101fd,u+102e0-102fb,u+10e60-10e7e,u+1d2c0-1d2d3,u+1d2e0-1d37f,u+1f0??,u+1f100-1f1ad,u+1f1e6-1f1ff,u+1f30d-1f30f,u+1f315,u+1f31c,u+1f31e,u+1f320-1f32c,u+1f336,u+1f378,u+1f37d,u+1f382,u+1f393-1f39f,u+1f3a7-1f3a8,u+1f3ac-1f3af,u+1f3c2,u+1f3c4-1f3c6,u+1f3ca-1f3ce,u+1f3d4-1f3e0,u+1f3ed,u+1f3f1-1f3f3,u+1f3f5-1f3f7,u+1f408,u+1f415,u+1f41f,u+1f426,u+1f43f,u+1f441-1f442,u+1f444,u+1f446-1f449,u+1f44c-1f44e,u+1f453,u+1f46a,u+1f47d,u+1f4a3,u+1f4b0,u+1f4b3,u+1f4b9,u+1f4bb,u+1f4bf,u+1f4c8-1f4cb,u+1f4d6,u+1f4da,u+1f4df,u+1f4e3-1f4e6,u+1f4ea-1f4ed,u+1f4f7,u+1f4f9-1f4fb,u+1f4fd-1f4fe,u+1f503,u+1f507-1f50b,u+1f50d,u+1f512-1f513,u+1f53e-1f54a,u+1f54f-1f5fa,u+1f610,u+1f650-1f67f,u+1f687,u+1f68d,u+1f691,u+1f694,u+1f698,u+1f6ad,u+1f6b2,u+1f6b9-1f6ba,u+1f6bc,u+1f6c6-1f6cf,u+1f6d3-1f6d7,u+1f6e0-1f6ea,u+1f6f0-1f6f3,u+1f6f7-1f6fc,u+1f7??,u+1f800-1f80b,u+1f810-1f847,u+1f850-1f859,u+1f860-1f887,u+1f890-1f8ad,u+1f8b0-1f8bb,u+1f8c0-1f8c1,u+1f900-1f90b,u+1f93b,u+1f946,u+1f984,u+1f996,u+1f9e9,u+1fa00-1fa6f,u+1fa70-1fa7c,u+1fa80-1fa89,u+1fa8f-1fac6,u+1face-1fadc,u+1fadf-1fae9,u+1faf0-1faf8,u+1fb??}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:500;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-500-vietnamese.b13ae75f.woff2) format("woff2");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:500;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-500-latin-ext.6d1ff22c.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:500;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-500-latin.75e6c243.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:600;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-600-cyrillic-ext.ef54216e.woff2) format("woff2");unicode-range:u+0460-052f,u+1c80-1c8a,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:600;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-600-cyrillic.969ea6a3.woff2) format("woff2");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:600;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-600-greek-ext.04782fd5.woff2) format("woff2");unicode-range:u+1f??}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:600;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-600-greek.9e4a3805.woff2) format("woff2");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:600;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-600-symbols.f5851590.woff2) format("woff2");unicode-range:u+0001-000c,u+000e-001f,u+007f-009f,u+20dd-20e0,u+20e2-20e4,u+2150-218f,u+2190,u+2192,u+2194-2199,u+21af,u+21e6-21f0,u+21f3,u+2218-2219,u+2299,u+22c4-22c6,u+2300-243f,u+2440-244a,u+2460-24ff,u+25a0-27bf,u+28??,u+2921-2922,u+2981,u+29bf,u+29eb,u+2b??,u+4dc0-4dff,u+fff9-fffb,u+10140-1018e,u+10190-1019c,u+101a0,u+101d0-101fd,u+102e0-102fb,u+10e60-10e7e,u+1d2c0-1d2d3,u+1d2e0-1d37f,u+1f0??,u+1f100-1f1ad,u+1f1e6-1f1ff,u+1f30d-1f30f,u+1f315,u+1f31c,u+1f31e,u+1f320-1f32c,u+1f336,u+1f378,u+1f37d,u+1f382,u+1f393-1f39f,u+1f3a7-1f3a8,u+1f3ac-1f3af,u+1f3c2,u+1f3c4-1f3c6,u+1f3ca-1f3ce,u+1f3d4-1f3e0,u+1f3ed,u+1f3f1-1f3f3,u+1f3f5-1f3f7,u+1f408,u+1f415,u+1f41f,u+1f426,u+1f43f,u+1f441-1f442,u+1f444,u+1f446-1f449,u+1f44c-1f44e,u+1f453,u+1f46a,u+1f47d,u+1f4a3,u+1f4b0,u+1f4b3,u+1f4b9,u+1f4bb,u+1f4bf,u+1f4c8-1f4cb,u+1f4d6,u+1f4da,u+1f4df,u+1f4e3-1f4e6,u+1f4ea-1f4ed,u+1f4f7,u+1f4f9-1f4fb,u+1f4fd-1f4fe,u+1f503,u+1f507-1f50b,u+1f50d,u+1f512-1f513,u+1f53e-1f54a,u+1f54f-1f5fa,u+1f610,u+1f650-1f67f,u+1f687,u+1f68d,u+1f691,u+1f694,u+1f698,u+1f6ad,u+1f6b2,u+1f6b9-1f6ba,u+1f6bc,u+1f6c6-1f6cf,u+1f6d3-1f6d7,u+1f6e0-1f6ea,u+1f6f0-1f6f3,u+1f6f7-1f6fc,u+1f7??,u+1f800-1f80b,u+1f810-1f847,u+1f850-1f859,u+1f860-1f887,u+1f890-1f8ad,u+1f8b0-1f8bb,u+1f8c0-1f8c1,u+1f900-1f90b,u+1f93b,u+1f946,u+1f984,u+1f996,u+1f9e9,u+1fa00-1fa6f,u+1fa70-1fa7c,u+1fa80-1fa89,u+1fa8f-1fac6,u+1face-1fadc,u+1fadf-1fae9,u+1faf0-1faf8,u+1fb??}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:600;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-600-vietnamese.b13ae75f.woff2) format("woff2");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:600;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-600-latin-ext.6d1ff22c.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:600;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-600-latin.75e6c243.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:700;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-700-cyrillic-ext.ef54216e.woff2) format("woff2");unicode-range:u+0460-052f,u+1c80-1c8a,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:700;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-700-cyrillic.969ea6a3.woff2) format("woff2");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:700;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-700-greek-ext.04782fd5.woff2) format("woff2");unicode-range:u+1f??}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:700;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-700-greek.9e4a3805.woff2) format("woff2");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:700;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-700-symbols.f5851590.woff2) format("woff2");unicode-range:u+0001-000c,u+000e-001f,u+007f-009f,u+20dd-20e0,u+20e2-20e4,u+2150-218f,u+2190,u+2192,u+2194-2199,u+21af,u+21e6-21f0,u+21f3,u+2218-2219,u+2299,u+22c4-22c6,u+2300-243f,u+2440-244a,u+2460-24ff,u+25a0-27bf,u+28??,u+2921-2922,u+2981,u+29bf,u+29eb,u+2b??,u+4dc0-4dff,u+fff9-fffb,u+10140-1018e,u+10190-1019c,u+101a0,u+101d0-101fd,u+102e0-102fb,u+10e60-10e7e,u+1d2c0-1d2d3,u+1d2e0-1d37f,u+1f0??,u+1f100-1f1ad,u+1f1e6-1f1ff,u+1f30d-1f30f,u+1f315,u+1f31c,u+1f31e,u+1f320-1f32c,u+1f336,u+1f378,u+1f37d,u+1f382,u+1f393-1f39f,u+1f3a7-1f3a8,u+1f3ac-1f3af,u+1f3c2,u+1f3c4-1f3c6,u+1f3ca-1f3ce,u+1f3d4-1f3e0,u+1f3ed,u+1f3f1-1f3f3,u+1f3f5-1f3f7,u+1f408,u+1f415,u+1f41f,u+1f426,u+1f43f,u+1f441-1f442,u+1f444,u+1f446-1f449,u+1f44c-1f44e,u+1f453,u+1f46a,u+1f47d,u+1f4a3,u+1f4b0,u+1f4b3,u+1f4b9,u+1f4bb,u+1f4bf,u+1f4c8-1f4cb,u+1f4d6,u+1f4da,u+1f4df,u+1f4e3-1f4e6,u+1f4ea-1f4ed,u+1f4f7,u+1f4f9-1f4fb,u+1f4fd-1f4fe,u+1f503,u+1f507-1f50b,u+1f50d,u+1f512-1f513,u+1f53e-1f54a,u+1f54f-1f5fa,u+1f610,u+1f650-1f67f,u+1f687,u+1f68d,u+1f691,u+1f694,u+1f698,u+1f6ad,u+1f6b2,u+1f6b9-1f6ba,u+1f6bc,u+1f6c6-1f6cf,u+1f6d3-1f6d7,u+1f6e0-1f6ea,u+1f6f0-1f6f3,u+1f6f7-1f6fc,u+1f7??,u+1f800-1f80b,u+1f810-1f847,u+1f850-1f859,u+1f860-1f887,u+1f890-1f8ad,u+1f8b0-1f8bb,u+1f8c0-1f8c1,u+1f900-1f90b,u+1f93b,u+1f946,u+1f984,u+1f996,u+1f9e9,u+1fa00-1fa6f,u+1fa70-1fa7c,u+1fa80-1fa89,u+1fa8f-1fac6,u+1face-1fadc,u+1fadf-1fae9,u+1faf0-1faf8,u+1fb??}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:700;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-700-vietnamese.b13ae75f.woff2) format("woff2");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:700;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-700-latin-ext.6d1ff22c.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:Roboto;font-stretch:100%;font-style:normal;font-weight:700;src:url(//www.physio-hameln.de/wp-content/plugins/pojo-accessibility/assets/build/fonts/Roboto-700-latin.75e6c243.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}.ea11y-skip-to-content-link{clip:rect(1px,1px,1px,1px);align-items:center;background-color:#fff;border:1px solid #2563eb;border-radius:12px;clip-path:inset(50%);color:#0c0d0e;display:flex;gap:8px;height:1px;margin:-1px;overflow:hidden;padding:0;pointer-events:none;position:fixed;text-decoration:none;width:1px;word-wrap:normal!important}.ea11y-skip-to-content-link:focus{clip:auto!important;clip-path:none;height:auto;inset-block-start:30px;inset-inline-start:30px;padding:16px 24px;pointer-events:auto;width:auto;z-index:100000}.ea11y-skip-to-content-link:focus+.ea11y-skip-to-content-backdrop{background-color:rgba(0,0,0,.5);inset:0;position:fixed;z-index:9999}.cookiez-heading{align-items:center;display:flex}.cookiez-heading__text{color:var(--cookiez-banner-text);flex:1;font-family:Poppins,sans-serif;font-size:var(--cookiez-title-size);font-weight:600;line-height:1.5;margin:0;word-break:break-word}.cookiez-heading__icon{align-items:center;display:inline-flex;flex-shrink:0;justify-content:center;line-height:1}.cookiez-content{color:var(--cookiez-banner-text);font-family:Poppins,sans-serif;font-size:var(--cookiez-body-size);line-height:1.5;margin:0}.cookiez-footer{display:flex;flex-wrap:wrap;gap:8px}.cookiez-footer-button{align-items:center;border:1px solid transparent;border-radius:var(--cookiez-button-radius);cursor:pointer;display:inline-flex;flex:1 1 0;font-family:Poppins,sans-serif;font-size:var(--cookiez-button-font-size);font-weight:500;justify-content:center;line-height:1.75;min-width:0;padding:var(--cookiez-button-padding);transition-duration:.2s;transition-property:color,background-color,border-color,opacity}.cookiez-footer-button:hover{opacity:.9;outline:none}.cookiez-footer-button:focus-visible{outline:1px auto -webkit-focus-ring-color}.cookiez-footer-button--contained{background-color:var(--cookiez-button-color);border-color:var(--cookiez-button-color);color:#fff}.cookiez-footer-button--outlined{background:transparent;border-color:var(--cookiez-button-color);color:var(--cookiez-button-color)}.cookiez-footer-button--outlined:hover{background:color-mix(in srgb,var(--cookiez-button-color) 8%,transparent)}.cookiez-footer-button--customize{background:transparent;border-color:var(--cookiez-button-color);color:var(--cookiez-button-color)}.cookiez-footer-button--customize:hover{background:color-mix(in srgb,var(--cookiez-button-color) 8%,transparent)}.cookiez-footer-button--do-not-sell{background:transparent;border:none;border-color:var(--cookiez-button-color);box-shadow:none;color:var(--cookiez-button-color);cursor:pointer;margin:0;outline:none;padding:0;text-align:start;transition-duration:.2s;transition-property:color,background-color,border-color,opacity}.cookiez-footer-button--accept,.cookiez-footer-button--deny{background-color:var(--cookiez-button-color);border-color:var(--cookiez-button-color);color:#fff}:root{--direction-multiplier:1}body.rtl,html[dir=rtl]{--direction-multiplier:-1}.elementor-hidden{display:none}.elementor-visibility-hidden{visibility:hidden}.elementor-screen-only,.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;top:-10000em;width:1px;clip:rect(0,0,0,0);border:0}.elementor-clearfix:after{clear:both;content:"";display:block;height:0;width:0}.e-logo-wrapper{display:inline-block;line-height:1}.e-logo-wrapper i{color:var(--e-a-color-circle-logo);font-size:2.5em}.elementor *,.elementor :after,.elementor :before{box-sizing:border-box}.elementor a{box-shadow:none;text-decoration:none}.elementor hr{background-color:transparent;margin:0}.elementor img{border:none;border-radius:0;box-shadow:none;height:auto;max-width:100%}.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure{margin:0}.elementor embed,.elementor iframe,.elementor object,.elementor video{border:none;line-height:1;margin:0;max-width:100%;width:100%}.elementor .elementor-background,.elementor .elementor-background-holder,.elementor .elementor-background-video-container{direction:ltr;inset:0;overflow:hidden;position:absolute;z-index:0}.elementor .elementor-background-video-container{pointer-events:none;transition:opacity 1s}.elementor .elementor-background-video-container.elementor-loading{opacity:0}.elementor .elementor-background-video,.elementor .elementor-background-video-embed{max-width:none}.elementor .elementor-background-video,.elementor .elementor-background-video-embed,.elementor .elementor-background-video-hosted{inset-block-start:50%;inset-inline-start:50%;position:absolute;transform:translate(-50%,-50%)}.elementor .elementor-background-video-hosted{-o-object-fit:cover;object-fit:cover}.elementor .elementor-background-overlay{inset:0;position:absolute}.elementor .elementor-background-slideshow{inset:0;position:absolute;z-index:0}.elementor .elementor-background-slideshow__slide__image{background-position:50%;background-size:cover;height:100%;width:100%}.e-con-inner>.elementor-element.elementor-absolute,.e-con>.elementor-element.elementor-absolute,.elementor-widget-wrap>.elementor-element.elementor-absolute{position:absolute}.e-con-inner>.elementor-element.elementor-fixed,.e-con>.elementor-element.elementor-fixed,.elementor-widget-wrap>.elementor-element.elementor-fixed{position:fixed}.elementor-widget-wrap .elementor-element.elementor-widget__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget__width-initial{max-width:100%}@media (max-width:1024px){.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-initial{max-width:100%}}@media (max-width:767px){.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-initial{max-width:100%}}.elementor-element.elementor-absolute,.elementor-element.elementor-fixed{z-index:1}.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;align-self:var(--align-self);flex-basis:var(--flex-basis);flex-grow:var(--flex-grow);flex-shrink:var(--flex-shrink);order:var(--order)}.elementor-element:where(.e-con-full,.elementor-widget){align-content:var(--align-content);align-items:var(--align-items);flex-direction:var(--flex-direction);flex-wrap:var(--flex-wrap);gap:var(--row-gap) var(--column-gap);justify-content:var(--justify-content)}.elementor-invisible{visibility:hidden}.elementor-custom-embed-play{inset-block-start:50%;inset-inline-start:50%;position:absolute;transform:translate(calc(-50% * var(--direction-multiplier)),-50%)}.elementor-custom-embed-play i{color:#fff;font-size:100px;text-shadow:1px 0 6px rgba(0,0,0,.3)}.elementor-custom-embed-play svg{fill:#fff;filter:drop-shadow(1px 0 6px rgba(0,0,0,.3));height:100px;width:100px}.elementor-custom-embed-play i,.elementor-custom-embed-play svg{opacity:.8;transition:all .5s}.elementor-custom-embed-play.elementor-playing i{font-family:eicons}.elementor-custom-embed-play.elementor-playing i:before{content:"\e8fb"}.elementor-custom-embed-play.elementor-playing i,.elementor-custom-embed-play.elementor-playing svg{animation:eicon-spin 2s linear infinite}.elementor-tag{display:inline-flex}.elementor-ken-burns{transition-duration:10s;transition-property:transform;transition-timing-function:linear}.elementor-ken-burns--out{transform:scale(1.3)}.elementor-ken-burns--active{transition-duration:20s}.elementor-ken-burns--active.elementor-ken-burns--out{transform:scale(1)}.elementor-ken-burns--active.elementor-ken-burns--in{transform:scale(1.3)}.elementor-align-center{text-align:center}.elementor-align-right{text-align:right}.elementor-align-left{text-align:left}.elementor-align-center .elementor-button,.elementor-align-left .elementor-button,.elementor-align-right .elementor-button{width:auto}.elementor-align-justify .elementor-button{width:100%}@media (min-width:-1){.elementor-widescreen-align-center{text-align:center}.elementor-widescreen-align-right{text-align:right}.elementor-widescreen-align-left{text-align:left}.elementor-widescreen-align-center .elementor-button,.elementor-widescreen-align-left .elementor-button,.elementor-widescreen-align-right .elementor-button{width:auto}.elementor-widescreen-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-laptop-align-center{text-align:center}.elementor-laptop-align-right{text-align:right}.elementor-laptop-align-left{text-align:left}.elementor-laptop-align-center .elementor-button,.elementor-laptop-align-left .elementor-button,.elementor-laptop-align-right .elementor-button{width:auto}.elementor-laptop-align-justify .elementor-button{width:100%}.elementor-tablet_extra-align-center{text-align:center}.elementor-tablet_extra-align-right{text-align:right}.elementor-tablet_extra-align-left{text-align:left}.elementor-tablet_extra-align-center .elementor-button,.elementor-tablet_extra-align-left .elementor-button,.elementor-tablet_extra-align-right .elementor-button{width:auto}.elementor-tablet_extra-align-justify .elementor-button{width:100%}}@media (max-width:1024px){.elementor-tablet-align-center{text-align:center}.elementor-tablet-align-right{text-align:right}.elementor-tablet-align-left{text-align:left}.elementor-tablet-align-center .elementor-button,.elementor-tablet-align-left .elementor-button,.elementor-tablet-align-right .elementor-button{width:auto}.elementor-tablet-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-mobile_extra-align-center{text-align:center}.elementor-mobile_extra-align-right{text-align:right}.elementor-mobile_extra-align-left{text-align:left}.elementor-mobile_extra-align-center .elementor-button,.elementor-mobile_extra-align-left .elementor-button,.elementor-mobile_extra-align-right .elementor-button{width:auto}.elementor-mobile_extra-align-justify .elementor-button{width:100%}}@media (max-width:767px){.elementor-mobile-align-center{text-align:center}.elementor-mobile-align-right{text-align:right}.elementor-mobile-align-left{text-align:left}.elementor-mobile-align-center .elementor-button,.elementor-mobile-align-left .elementor-button,.elementor-mobile-align-right .elementor-button{width:auto}.elementor-mobile-align-justify .elementor-button{width:100%}}:root{--page-title-display:block}.elementor-page-title,h1.entry-title{display:var(--page-title-display)}@keyframes eicon-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:eicon-spin 2s linear infinite}.elementor-section{position:relative}.elementor-section .elementor-container{display:flex;margin-inline:auto;position:relative}@media (max-width:1024px){.elementor-section .elementor-container{flex-wrap:wrap}}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-section.elementor-section-stretched{position:relative;width:100%}.elementor-section.elementor-section-items-top>.elementor-container{align-items:flex-start}.elementor-section.elementor-section-items-middle>.elementor-container{align-items:center}.elementor-section.elementor-section-items-bottom>.elementor-container{align-items:flex-end}@media (min-width:768px){.elementor-section.elementor-section-height-full{height:100vh}.elementor-section.elementor-section-height-full>.elementor-container{height:100%}}.elementor-bc-flex-widget .elementor-section-content-top>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-start}.elementor-bc-flex-widget .elementor-section-content-middle>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:center}.elementor-bc-flex-widget .elementor-section-content-bottom>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-end}.elementor-widget-wrap{align-content:flex-start;flex-wrap:wrap;position:relative;width:100%}.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap{display:flex}.elementor-widget-wrap>.elementor-element{width:100%}.elementor-widget-wrap.e-swiper-container{width:calc(100% - (var(--e-column-margin-left, 0px) + var(--e-column-margin-right, 0px)))}.elementor-widget{position:relative}.elementor-widget:not(:last-child){margin-block-end:var(--kit-widget-spacing,20px)}.elementor-widget:not(:last-child).elementor-absolute,.elementor-widget:not(:last-child).elementor-widget__width-auto,.elementor-widget:not(:last-child).elementor-widget__width-initial{margin-block-end:0}.elementor-column{display:flex;min-height:1px;position:relative}.elementor-column-gap-narrow>.elementor-column>.elementor-element-populated{padding:5px}.elementor-column-gap-default>.elementor-column>.elementor-element-populated{padding:10px}.elementor-column-gap-extended>.elementor-column>.elementor-element-populated{padding:15px}.elementor-column-gap-wide>.elementor-column>.elementor-element-populated{padding:20px}.elementor-column-gap-wider>.elementor-column>.elementor-element-populated{padding:30px}.elementor-inner-section .elementor-column-gap-no .elementor-element-populated{padding:0}@media (min-width:768px){.elementor-column.elementor-col-10,.elementor-column[data-col="10"]{width:10%}.elementor-column.elementor-col-11,.elementor-column[data-col="11"]{width:11.111%}.elementor-column.elementor-col-12,.elementor-column[data-col="12"]{width:12.5%}.elementor-column.elementor-col-14,.elementor-column[data-col="14"]{width:14.285%}.elementor-column.elementor-col-16,.elementor-column[data-col="16"]{width:16.666%}.elementor-column.elementor-col-20,.elementor-column[data-col="20"]{width:20%}.elementor-column.elementor-col-25,.elementor-column[data-col="25"]{width:25%}.elementor-column.elementor-col-30,.elementor-column[data-col="30"]{width:30%}.elementor-column.elementor-col-33,.elementor-column[data-col="33"]{width:33.333%}.elementor-column.elementor-col-40,.elementor-column[data-col="40"]{width:40%}.elementor-column.elementor-col-50,.elementor-column[data-col="50"]{width:50%}.elementor-column.elementor-col-60,.elementor-column[data-col="60"]{width:60%}.elementor-column.elementor-col-66,.elementor-column[data-col="66"]{width:66.666%}.elementor-column.elementor-col-70,.elementor-column[data-col="70"]{width:70%}.elementor-column.elementor-col-75,.elementor-column[data-col="75"]{width:75%}.elementor-column.elementor-col-80,.elementor-column[data-col="80"]{width:80%}.elementor-column.elementor-col-83,.elementor-column[data-col="83"]{width:83.333%}.elementor-column.elementor-col-90,.elementor-column[data-col="90"]{width:90%}.elementor-column.elementor-col-100,.elementor-column[data-col="100"]{width:100%}}@media (max-width:479px){.elementor-column.elementor-xs-10{width:10%}.elementor-column.elementor-xs-11{width:11.111%}.elementor-column.elementor-xs-12{width:12.5%}.elementor-column.elementor-xs-14{width:14.285%}.elementor-column.elementor-xs-16{width:16.666%}.elementor-column.elementor-xs-20{width:20%}.elementor-column.elementor-xs-25{width:25%}.elementor-column.elementor-xs-30{width:30%}.elementor-column.elementor-xs-33{width:33.333%}.elementor-column.elementor-xs-40{width:40%}.elementor-column.elementor-xs-50{width:50%}.elementor-column.elementor-xs-60{width:60%}.elementor-column.elementor-xs-66{width:66.666%}.elementor-column.elementor-xs-70{width:70%}.elementor-column.elementor-xs-75{width:75%}.elementor-column.elementor-xs-80{width:80%}.elementor-column.elementor-xs-83{width:83.333%}.elementor-column.elementor-xs-90{width:90%}.elementor-column.elementor-xs-100{width:100%}}@media (max-width:767px){.elementor-column.elementor-sm-10{width:10%}.elementor-column.elementor-sm-11{width:11.111%}.elementor-column.elementor-sm-12{width:12.5%}.elementor-column.elementor-sm-14{width:14.285%}.elementor-column.elementor-sm-16{width:16.666%}.elementor-column.elementor-sm-20{width:20%}.elementor-column.elementor-sm-25{width:25%}.elementor-column.elementor-sm-30{width:30%}.elementor-column.elementor-sm-33{width:33.333%}.elementor-column.elementor-sm-40{width:40%}.elementor-column.elementor-sm-50{width:50%}.elementor-column.elementor-sm-60{width:60%}.elementor-column.elementor-sm-66{width:66.666%}.elementor-column.elementor-sm-70{width:70%}.elementor-column.elementor-sm-75{width:75%}.elementor-column.elementor-sm-80{width:80%}.elementor-column.elementor-sm-83{width:83.333%}.elementor-column.elementor-sm-90{width:90%}.elementor-column.elementor-sm-100{width:100%}}@media (min-width:768px) and (max-width:1024px){.elementor-column.elementor-md-10{width:10%}.elementor-column.elementor-md-11{width:11.111%}.elementor-column.elementor-md-12{width:12.5%}.elementor-column.elementor-md-14{width:14.285%}.elementor-column.elementor-md-16{width:16.666%}.elementor-column.elementor-md-20{width:20%}.elementor-column.elementor-md-25{width:25%}.elementor-column.elementor-md-30{width:30%}.elementor-column.elementor-md-33{width:33.333%}.elementor-column.elementor-md-40{width:40%}.elementor-column.elementor-md-50{width:50%}.elementor-column.elementor-md-60{width:60%}.elementor-column.elementor-md-66{width:66.666%}.elementor-column.elementor-md-70{width:70%}.elementor-column.elementor-md-75{width:75%}.elementor-column.elementor-md-80{width:80%}.elementor-column.elementor-md-83{width:83.333%}.elementor-column.elementor-md-90{width:90%}.elementor-column.elementor-md-100{width:100%}}@media (min-width:-1){.elementor-reverse-widescreen>.elementor-container>:first-child{order:10}.elementor-reverse-widescreen>.elementor-container>:nth-child(2){order:9}.elementor-reverse-widescreen>.elementor-container>:nth-child(3){order:8}.elementor-reverse-widescreen>.elementor-container>:nth-child(4){order:7}.elementor-reverse-widescreen>.elementor-container>:nth-child(5){order:6}.elementor-reverse-widescreen>.elementor-container>:nth-child(6){order:5}.elementor-reverse-widescreen>.elementor-container>:nth-child(7){order:4}.elementor-reverse-widescreen>.elementor-container>:nth-child(8){order:3}.elementor-reverse-widescreen>.elementor-container>:nth-child(9){order:2}.elementor-reverse-widescreen>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child,.elementor-reverse-laptop>.elementor-container>:nth-child(10),.elementor-reverse-laptop>.elementor-container>:nth-child(2),.elementor-reverse-laptop>.elementor-container>:nth-child(3),.elementor-reverse-laptop>.elementor-container>:nth-child(4),.elementor-reverse-laptop>.elementor-container>:nth-child(5),.elementor-reverse-laptop>.elementor-container>:nth-child(6),.elementor-reverse-laptop>.elementor-container>:nth-child(7),.elementor-reverse-laptop>.elementor-container>:nth-child(8),.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:0}.elementor-reverse-tablet_extra>.elementor-container>:first-child{order:10}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:-1){.elementor-reverse-tablet>.elementor-container>:first-child,.elementor-reverse-tablet>.elementor-container>:nth-child(10),.elementor-reverse-tablet>.elementor-container>:nth-child(2),.elementor-reverse-tablet>.elementor-container>:nth-child(3),.elementor-reverse-tablet>.elementor-container>:nth-child(4),.elementor-reverse-tablet>.elementor-container>:nth-child(5),.elementor-reverse-tablet>.elementor-container>:nth-child(6),.elementor-reverse-tablet>.elementor-container>:nth-child(7),.elementor-reverse-tablet>.elementor-container>:nth-child(8),.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:0}.elementor-reverse-mobile_extra>.elementor-container>:first-child{order:10}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(10){order:1}}@media (max-width:767px){.elementor-reverse-mobile>.elementor-container>:first-child{order:10}.elementor-reverse-mobile>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile>.elementor-container>:nth-child(10){order:1}.elementor-column{width:100%}}.elementor-grid{display:grid;grid-column-gap:var(--grid-column-gap);grid-row-gap:var(--grid-row-gap)}.elementor-grid .elementor-grid-item{min-width:0}.elementor-grid-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}@media (min-width:-1){.elementor-grid-widescreen-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-widescreen-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-widescreen-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-widescreen-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-widescreen-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-widescreen-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-widescreen-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-widescreen-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-widescreen-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-widescreen-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-widescreen-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-widescreen-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-widescreen-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-widescreen-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-laptop-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-laptop-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-laptop-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-laptop-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-laptop-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-laptop-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-laptop-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-laptop-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-laptop-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-laptop-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-laptop-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-laptop-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-laptop-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-laptop-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}.elementor-grid-tablet_extra-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:1024px){.elementor-grid-tablet-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-mobile_extra-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:767px){.elementor-grid-mobile-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (min-width:1025px){#elementor-device-mode:after{content:"desktop"}}@media (min-width:-1){#elementor-device-mode:after{content:"widescreen"}}@media (max-width:-1){#elementor-device-mode:after{content:"laptop";content:"tablet_extra"}}@media (max-width:1024px){#elementor-device-mode:after{content:"tablet"}}@media (max-width:-1){#elementor-device-mode:after{content:"mobile_extra"}}@media (max-width:767px){#elementor-device-mode:after{content:"mobile"}}@media (prefers-reduced-motion:no-preference){html{scroll-behavior:smooth}}.e-con{--border-radius:0;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;--border-style:initial;--border-color:initial;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--content-width:min(100%,var(--container-max-width,1140px));--width:100%;--min-height:initial;--height:auto;--text-align:initial;--margin-top:0px;--margin-right:0px;--margin-bottom:0px;--margin-left:0px;--padding-top:var(--container-default-padding-top,10px);--padding-right:var(--container-default-padding-right,10px);--padding-bottom:var(--container-default-padding-bottom,10px);--padding-left:var(--container-default-padding-left,10px);--position:relative;--z-index:revert;--overflow:visible;--gap:var(--widgets-spacing,20px);--row-gap:var(--widgets-spacing-row,20px);--column-gap:var(--widgets-spacing-column,20px);--overlay-mix-blend-mode:initial;--overlay-opacity:1;--overlay-transition:0.3s;--e-con-grid-template-columns:repeat(3,1fr);--e-con-grid-template-rows:repeat(2,1fr);border-radius:var(--border-radius);height:var(--height);min-height:var(--min-height);min-width:0;overflow:var(--overflow);position:var(--position);width:var(--width);z-index:var(--z-index);--flex-wrap-mobile:wrap}.e-con:where(:not(.e-div-block-base)){transition:background var(--background-transition,.3s),border var(--border-transition,.3s),box-shadow var(--border-transition,.3s),transform var(--e-con-transform-transition-duration,.4s)}.e-con{--margin-block-start:var(--margin-top);--margin-block-end:var(--margin-bottom);--margin-inline-start:var(--margin-left);--margin-inline-end:var(--margin-right);--padding-inline-start:var(--padding-left);--padding-inline-end:var(--padding-right);--padding-block-start:var(--padding-top);--padding-block-end:var(--padding-bottom);--border-block-start-width:var(--border-top-width);--border-block-end-width:var(--border-bottom-width);--border-inline-start-width:var(--border-left-width);--border-inline-end-width:var(--border-right-width)}body.rtl .e-con{--padding-inline-start:var(--padding-right);--padding-inline-end:var(--padding-left);--margin-inline-start:var(--margin-right);--margin-inline-end:var(--margin-left);--border-inline-start-width:var(--border-right-width);--border-inline-end-width:var(--border-left-width)}.e-con{margin-block-end:var(--margin-block-end);margin-block-start:var(--margin-block-start);margin-inline-end:var(--margin-inline-end);margin-inline-start:var(--margin-inline-start);padding-inline-end:var(--padding-inline-end);padding-inline-start:var(--padding-inline-start)}.e-con.e-flex{--flex-direction:column;--flex-basis:auto;--flex-grow:0;--flex-shrink:1;flex:var(--flex-grow) var(--flex-shrink) var(--flex-basis)}.e-con-full,.e-con>.e-con-inner{padding-block-end:var(--padding-block-end);padding-block-start:var(--padding-block-start);text-align:var(--text-align)}.e-con-full.e-flex,.e-con.e-flex>.e-con-inner{flex-direction:var(--flex-direction)}.e-con,.e-con>.e-con-inner{display:var(--display)}.e-con.e-grid{--grid-justify-content:start;--grid-align-content:start;--grid-auto-flow:row}.e-con.e-grid,.e-con.e-grid>.e-con-inner{align-content:var(--grid-align-content);align-items:var(--align-items);grid-auto-flow:var(--grid-auto-flow);grid-template-columns:var(--e-con-grid-template-columns);grid-template-rows:var(--e-con-grid-template-rows);justify-content:var(--grid-justify-content);justify-items:var(--justify-items)}.e-con-boxed.e-flex{align-content:normal;align-items:normal;flex-direction:column;flex-wrap:nowrap;justify-content:normal}.e-con-boxed.e-grid{grid-template-columns:1fr;grid-template-rows:1fr;justify-items:legacy}.e-con-boxed{gap:initial;text-align:initial}.e-con.e-flex>.e-con-inner{align-content:var(--align-content);align-items:var(--align-items);align-self:auto;flex-basis:auto;flex-grow:1;flex-shrink:1;flex-wrap:var(--flex-wrap);justify-content:var(--justify-content)}.e-con.e-grid>.e-con-inner{align-items:var(--align-items);justify-items:var(--justify-items)}.e-con>.e-con-inner{gap:var(--row-gap) var(--column-gap);height:100%;margin:0 auto;max-width:var(--content-width);padding-inline-end:0;padding-inline-start:0;width:100%}:is(.elementor-section-wrap,[data-elementor-id])>.e-con{--margin-left:auto;--margin-right:auto;max-width:min(100%,var(--width))}:is([data-widget_type="e-component.default"],[data-widget_type="e-component.default"]>.elementor-section-wrap)>.e-con{--margin-right:0px;--margin-left:0px}.e-con .elementor-widget.elementor-widget{margin-block-end:0}.e-con:before,.e-con>.elementor-background-slideshow:before,.e-con>.elementor-motion-effects-container>.elementor-motion-effects-layer:before,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);content:var(--background-overlay);display:block;height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));mix-blend-mode:var(--overlay-mix-blend-mode);opacity:var(--overlay-opacity);position:absolute;top:calc(0px - var(--border-top-width));transition:var(--overlay-transition,.3s);width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}.e-con:before{transition:background var(--overlay-transition,.3s),border-radius var(--border-transition,.3s),opacity var(--overlay-transition,.3s)}.e-con>.elementor-background-slideshow,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));top:calc(0px - var(--border-top-width));width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}@media (max-width:767px){:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container.elementor-hidden-mobile{display:none}}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{z-index:1}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-slideshow:before{z-index:2}.e-con .elementor-widget{min-width:0}.e-con .elementor-widget-empty,.e-con .elementor-widget-google_maps,.e-con .elementor-widget-video,.e-con .elementor-widget.e-widget-swiper{width:100%}.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container,.e-con>.elementor-widget>.elementor-widget-container{height:100%}.e-con.e-con>.e-con-inner>.elementor-widget,.elementor.elementor .e-con>.elementor-widget{max-width:100%}.e-con .elementor-widget:not(:last-child){--kit-widget-spacing:0px}@media (max-width:767px){.e-con.e-flex{--width:100%;--flex-wrap:var(--flex-wrap-mobile)}.e-con.e-flex .elementor-widget-archive-posts{width:100%}}.elementor-form-fields-wrapper{display:flex;flex-wrap:wrap}.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group .elementor-field-subgroup,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>.elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>input,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>textarea{flex-basis:100%;max-width:100%}.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group .elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group>input{flex-grow:1}.elementor-field-group{align-items:center;flex-wrap:wrap}.elementor-field-group.elementor-field-type-submit{align-items:flex-end}.elementor-field-group .elementor-field-textual{background-color:transparent;border:1px solid #69727d;color:#1f2124;flex-grow:1;max-width:100%;vertical-align:middle;width:100%}.elementor-field-group .elementor-field-textual:focus{box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);outline:0}.elementor-field-group .elementor-field-textual::-moz-placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-field-textual::placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-select-wrapper{display:flex;position:relative;width:100%}.elementor-field-group .elementor-select-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;color:inherit;flex-basis:100%;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;padding-inline-end:20px;text-transform:inherit}.elementor-field-group .elementor-select-wrapper:before{content:"\e92a";font-family:eicons;font-size:15px;inset-block-start:50%;inset-inline-end:10px;pointer-events:none;position:absolute;text-shadow:0 0 3px rgba(0,0,0,.3);transform:translateY(-50%)}.elementor-field-group.elementor-field-type-select-multiple .elementor-select-wrapper:before{content:""}.elementor-field-subgroup{display:flex;flex-wrap:wrap}.elementor-field-subgroup .elementor-field-option label{display:inline-block}.elementor-field-subgroup.elementor-subgroup-inline .elementor-field-option{padding-inline-end:10px}.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option{flex-basis:100%}.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label{display:inline}.elementor-field-label{cursor:pointer}.elementor-mark-required .elementor-field-label:after{color:red;content:"*";padding-inline-start:.2em}.elementor-field-textual{border-radius:3px;font-size:15px;line-height:1.4;min-height:40px;padding:5px 14px}.elementor-field-textual.elementor-size-xs{border-radius:2px;font-size:13px;min-height:33px;padding:4px 12px}.elementor-field-textual.elementor-size-md{border-radius:4px;font-size:16px;min-height:47px;padding:6px 16px}.elementor-field-textual.elementor-size-lg{border-radius:5px;font-size:18px;min-height:59px;padding:7px 20px}.elementor-field-textual.elementor-size-xl{border-radius:6px;font-size:20px;min-height:72px;padding:8px 24px}.elementor-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-button-align-center .e-form__buttons,.elementor-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-button-align-start .e-form__buttons,.elementor-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-end .e-form__buttons,.elementor-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-button-align-start .e-form__buttons,[dir=rtl] .elementor-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-button-align-end .e-form__buttons,[dir=rtl] .elementor-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-center .e-form__buttons__wrapper__button,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper__button,.elementor-button-align-start .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}@media screen and (max-width:1024px){.elementor-tablet-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-tablet-button-align-center .e-form__buttons,.elementor-tablet-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-tablet-button-align-start .e-form__buttons,.elementor-tablet-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-tablet-button-align-end .e-form__buttons,.elementor-tablet-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-tablet-button-align-start .e-form__buttons,[dir=rtl] .elementor-tablet-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-tablet-button-align-end .e-form__buttons,[dir=rtl] .elementor-tablet-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-tablet-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-center .e-form__buttons__wrapper__button,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper__button,.elementor-tablet-button-align-start .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}@media screen and (max-width:767px){.elementor-mobile-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-mobile-button-align-center .e-form__buttons,.elementor-mobile-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-mobile-button-align-start .e-form__buttons,.elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-end .e-form__buttons,.elementor-mobile-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-mobile-button-align-start .e-form__buttons,[dir=rtl] .elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-mobile-button-align-end .e-form__buttons,[dir=rtl] .elementor-mobile-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-center .e-form__buttons__wrapper__button,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper__button,.elementor-mobile-button-align-start .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}.elementor-error .elementor-field{border-color:#d9534f}.elementor-error .help-inline{color:#d9534f;font-size:.9em}.elementor-message{font-size:1em;line-height:1;margin:10px 0}.elementor-message:before{content:"\e90e";display:inline-block;font-family:eicons;font-style:normal;font-weight:400;margin-inline-end:5px;vertical-align:middle}.elementor-message.elementor-message-danger{color:#d9534f}.elementor-message.elementor-message-danger:before{content:"\e87f"}.elementor-message.form-message-success{color:#5cb85c}.elementor-form .elementor-button{border:none;padding-block-end:0;padding-block-start:0}.elementor-form .elementor-button-content-wrapper,.elementor-form .elementor-button>span{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-form .elementor-button.elementor-size-xs{min-height:33px}.elementor-form .elementor-button.elementor-size-sm{min-height:40px}.elementor-form .elementor-button.elementor-size-md{min-height:47px}.elementor-form .elementor-button.elementor-size-lg{min-height:59px}.elementor-form .elementor-button.elementor-size-xl{min-height:72px}.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)) .elementor-widget-container,.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)):not(:has(.elementor-widget-container)){transition:background .3s,border .3s,border-radius .3s,box-shadow .3s,transform var(--e-transform-transition-duration,.4s)}.elementor-heading-title{line-height:1;margin:0;padding:0}.elementor-button{background-color:#69727d;border-radius:3px;color:#fff;display:inline-block;fill:#fff;font-size:15px;line-height:1;padding:12px 24px;text-align:center;transition:all .3s}.elementor-button:focus,.elementor-button:hover,.elementor-button:visited{color:#fff}.elementor-button-content-wrapper{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-button-icon{align-items:center;display:flex}.elementor-button-icon svg{height:auto;width:1em}.elementor-button-icon .e-font-icon-svg{height:1em}.elementor-button-text{display:inline-block}.elementor-button.elementor-size-xs{border-radius:2px;font-size:13px;padding:10px 20px}.elementor-button.elementor-size-md{border-radius:4px;font-size:16px;padding:15px 30px}.elementor-button.elementor-size-lg{border-radius:5px;font-size:18px;padding:20px 40px}.elementor-button.elementor-size-xl{border-radius:6px;font-size:20px;padding:25px 50px}.elementor-button span{text-decoration:inherit}.elementor-element.elementor-button-info .elementor-button{background-color:#5bc0de}.elementor-element.elementor-button-success .elementor-button{background-color:#5cb85c}.elementor-element.elementor-button-warning .elementor-button{background-color:#f0ad4e}.elementor-element.elementor-button-danger .elementor-button{background-color:#d9534f}.elementor-widget-button .elementor-button .elementor-button-info{background-color:#5bc0de}.elementor-widget-button .elementor-button .elementor-button-success{background-color:#5cb85c}.elementor-widget-button .elementor-button .elementor-button-warning{background-color:#f0ad4e}.elementor-widget-button .elementor-button .elementor-button-danger{background-color:#d9534f}.elementor-view-stacked .elementor-icon{background-color:#69727d;color:#fff;fill:#fff;padding:.5em}.elementor-view-framed .elementor-icon{background-color:transparent;border:3px solid #69727d;color:#69727d;padding:.5em}.elementor-icon{color:#69727d;display:inline-block;font-size:50px;line-height:1;text-align:center;transition:all .3s}.elementor-icon:hover{color:#69727d}.elementor-icon i,.elementor-icon svg{display:block;height:1em;position:relative;width:1em}.elementor-icon i:before,.elementor-icon svg:before{left:50%;position:absolute;transform:translateX(-50%)}.elementor-icon i.fad{width:auto}.elementor-shape-square .elementor-icon{border-radius:0}.elementor-shape-rounded .elementor-icon{border-radius:10%}.elementor-shape-circle .elementor-icon{border-radius:50%}.e-transform .elementor-widget-container,.e-transform:not(:has(.elementor-widget-container)){transform:perspective(var(--e-transform-perspective,0)) rotate(var(--e-transform-rotateZ,0)) rotateX(var(--e-transform-rotateX,0)) rotateY(var(--e-transform-rotateY,0)) translate(var(--e-transform-translate,0)) translateX(var(--e-transform-translateX,0)) translateY(var(--e-transform-translateY,0)) scaleX(calc(var(--e-transform-flipX, 1) * var(--e-transform-scaleX, var(--e-transform-scale, 1)))) scaleY(calc(var(--e-transform-flipY, 1) * var(--e-transform-scaleY, var(--e-transform-scale, 1)))) skewX(var(--e-transform-skewX,0)) skewY(var(--e-transform-skewY,0));transform-origin:var(--e-transform-origin-y) var(--e-transform-origin-x)}.e-con.e-transform{transform:perspective(var(--e-con-transform-perspective,0)) rotate(var(--e-con-transform-rotateZ,0)) rotateX(var(--e-con-transform-rotateX,0)) rotateY(var(--e-con-transform-rotateY,0)) translate(var(--e-con-transform-translate,0)) translateX(var(--e-con-transform-translateX,0)) translateY(var(--e-con-transform-translateY,0)) scaleX(calc(var(--e-con-transform-flipX, 1) * var(--e-con-transform-scaleX, var(--e-con-transform-scale, 1)))) scaleY(calc(var(--e-con-transform-flipY, 1) * var(--e-con-transform-scaleY, var(--e-con-transform-scale, 1)))) skewX(var(--e-con-transform-skewX,0)) skewY(var(--e-con-transform-skewY,0));transform-origin:var(--e-con-transform-origin-y) var(--e-con-transform-origin-x)}.animated{animation-duration:1.25s}.animated.animated-slow{animation-duration:2s}.animated.animated-fast{animation-duration:.75s}.animated.infinite{animation-iteration-count:infinite}.animated.reverse{animation-direction:reverse;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.animated{animation:none!important}html *{transition-delay:0s!important;transition-duration:0s!important}}@media (max-width:767px){.elementor .elementor-hidden-mobile,.elementor .elementor-hidden-phone{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-mobile_extra{display:none}}@media (min-width:768px) and (max-width:1024px){.elementor .elementor-hidden-tablet{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-laptop,.elementor .elementor-hidden-tablet_extra{display:none}}@media (min-width:1025px) and (max-width:99999px){.elementor .elementor-hidden-desktop{display:none}}@media (min-width:-1){.elementor .elementor-hidden-widescreen{display:none}}