@charset "UTF-8";
.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;
} .product-price {
font-weight: 600;
color: #333;
font-size: 14px;
display: flex !important;
gap: 0 !important;
}
.product-price .regular-price {
text-decoration: line-through;
color: #888;
font-weight: 400;
margin-right: 6px;
}
.product-price .sale-price {
color: #27ae60;
font-weight: 600;
background-color: #fbf2d1;
color: #8a803e;
padding: 0px 4px;
border-radius: 50px;
}
.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;
}
.stock-status svg { top: 2px; position: relative; }
.stock-status.in-stock {
color: #27ae60; }
.stock-status.in-stock i {
color: #27ae60 !important;
}
.stock-status.out-of-stock {
color: #e74c3c; }
.stock-status.out-of-stock i {
color: #e74c3c !important;
} .listeo-ai-show-more-btn {
display: block;
width: auto;
margin-top: 12px;
padding: 6px 16px;
background: white;
border:none;
color: var(--ai-chat-primary-color);
background: var(--ai-chat-primary-color-light);
border-radius: 8px;
font-size: 14px;
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-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: 8px 20px;
font-size: 14px;
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;
}
.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: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;
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: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;
}
.listeo-floating-chat-button:hover {
transform: scale(1.05);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
} .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-welcome-bubble {
right: 0;
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;
}
@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-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); }
}.ai-chat-search-container {
max-width: 900px;
margin: 0 auto;
padding: 0px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
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 i {
font-size: 14px;
transition: 0.3s;
}.wpa-test-msg{background: #d1ecf1 !important; border: 1px solid #bee5eb !important; border-radius: 5px !important;color: #0c5460 !important; font-size: 14px !important; padding:.75rem 1.25rem !important; font-family: Arial !important; margin-top:5px !important;}
span.wpa-button{ display: inline-block !important; padding-top: 5px !important; color: #fff !important;background-color: #6c757d !important;border-color: #6c757d !important; padding: 5px 10px !important; border-radius: 5px !important; margin-top:5px !important;  cursor: pointer !important; }
#altEmail_container, .altEmail_container{position:absolute !important; overflow: hidden !important; display: inline !important; height:1px !important; width: 1px !important;z-index:-1000 !important;}:root{--ntec-primary:#1a3a32;--ntec-primary-light:#2d5a4a;--ntec-accent:#e67e22;--ntec-success:#27ae60;--ntec-warning:#f39c12;--ntec-danger:#e74c3c;--ntec-text:#2c3e50;--ntec-text-light:#7f8c8d;--ntec-bg:#f8f9fa;--ntec-white:#fff;--ntec-border:#e0e0e0;--ntec-shadow:0 2px 10px rgba(0,0,0,0.1);--ntec-radius:12px}.ntec-calculateur{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;max-width:100%;width:100%;margin:0 auto;background:var(--ntec-white);border-radius:var(--ntec-radius);box-shadow:var(--ntec-shadow);overflow:hidden;box-sizing:border-box}.ntec-calculateur *{box-sizing:border-box}.ntec-header{background:linear-gradient(135deg,var(--ntec-primary) 0,var(--ntec-primary-light) 100%);color:var(--ntec-white);padding:25px 30px;text-align:center}.ntec-header h2{margin:0 0 8px 0;font-size:24px;font-weight:600;color:var(--ntec-white)}.ntec-header p{margin:0;opacity:.9;font-size:14px;color:var(--ntec-white)}.ntec-tabs{display:flex;background:var(--ntec-bg);border-bottom:1px solid var(--ntec-border)}.ntec-tab{flex:1;padding:15px 20px;background:0;border:0;font-size:15px;font-weight:500;color:var(--ntec-text-light);cursor:pointer;transition:all .3s ease;position:relative}.ntec-tab:hover{color:var(--ntec-primary);background:rgba(26,58,50,0.05)}.ntec-tab.active{color:var(--ntec-primary);background:var(--ntec-white)}.ntec-tab.active::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:var(--ntec-accent)}.ntec-tab-content{display:none;padding:30px}.ntec-tab-content.active{display:block;animation:fadeIn .3s ease}@keyframes fadeIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.ntec-section{margin-bottom:30px}.ntec-section-title{font-size:16px;font-weight:600;color:var(--ntec-text);margin-bottom:15px;display:flex;align-items:center;gap:8px}.ntec-slider-container{background:var(--ntec-bg);padding:20px;border-radius:var(--ntec-radius);text-align:center}.ntec-slider-value{font-size:48px;font-weight:700;color:var(--ntec-primary);line-height:1}.ntec-slider-label{color:var(--ntec-text-light);font-size:14px;margin-top:5px}.ntec-slider{width:100%;margin:15px 0;-webkit-appearance:none;height:8px;background:var(--ntec-border);border-radius:4px;outline:0}.ntec-slider::-webkit-slider-thumb{-webkit-appearance:none;width:24px;height:24px;background:var(--ntec-accent);border-radius:50%;cursor:pointer;box-shadow:0 2px 6px rgba(230,126,34,0.4)}.ntec-slider::-moz-range-thumb{width:24px;height:24px;background:var(--ntec-accent);border-radius:50%;cursor:pointer;border:0}.ntec-checkbox-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:12px}.ntec-checkbox-item{display:flex;align-items:center;padding:12px 15px;background:var(--ntec-bg);border-radius:8px;cursor:pointer;transition:all .2s ease;border:2px solid transparent}.ntec-checkbox-item:hover{background:rgba(26,58,50,0.08)}.ntec-checkbox-item.checked{background:rgba(26,58,50,0.1);border-color:var(--ntec-primary)}.ntec-checkbox-item input{display:none}.ntec-checkbox-icon{width:22px;height:22px;border:2px solid var(--ntec-border);border-radius:4px;margin-right:12px;display:flex;align-items:center;justify-content:center;transition:all .2s ease;flex-shrink:0}.ntec-checkbox-item.checked .ntec-checkbox-icon{background:var(--ntec-primary);border-color:var(--ntec-primary)}.ntec-checkbox-item.checked .ntec-checkbox-icon::after{content:'✓';color:white;font-size:14px}.ntec-checkbox-label{font-size:14px;color:var(--ntec-text)}.ntec-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 28px;font-size:16px;font-weight:600;border:0;border-radius:8px;cursor:pointer;transition:all .3s ease;width:100%}.ntec-btn-primary{background:linear-gradient(135deg,var(--ntec-accent) 0,#d35400 100%);color:white}.ntec-btn-primary:hover{transform:translateY(-2px);box-shadow:0 4px 15px rgba(230,126,34,0.4)}.ntec-resultats{display:none;margin-top:30px;padding:25px;background:linear-gradient(135deg,var(--ntec-primary) 0,var(--ntec-primary-light) 100%);border-radius:var(--ntec-radius);color:white}.ntec-resultats.show{display:block;animation:fadeIn .5s ease}.ntec-resultats-titre{font-size:18px;font-weight:600;margin-bottom:20px;color:#fff}.ntec-resultats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:15px;margin-bottom:20px}.ntec-resultat-item{background:rgba(255,255,255,0.15);padding:15px;border-radius:8px;text-align:center}.ntec-resultat-valeur{font-size:24px;font-weight:700;color:#fff}.ntec-resultat-label{font-size:12px;opacity:.9;margin-top:5px;color:#fff}.ntec-economies{background:rgba(39,174,96,0.2);padding:15px;border-radius:8px;margin-top:15px;display:none}.ntec-economies.show{display:block}.ntec-economies-titre{font-weight:600;margin-bottom:5px;color:#fff}.ntec-economies-valeur{font-size:20px;font-weight:700;color:#2ecc71}.ntec-conseils{margin-top:20px;padding:20px;background:rgba(255,255,255,0.1);border-radius:8px}.ntec-conseils-titre{font-weight:600;margin-bottom:10px;color:#fff}.ntec-conseils-liste{list-style:none;padding:0;margin:0}.ntec-conseils-liste li{padding:8px 0;padding-left:25px;position:relative;font-size:14px;color:rgba(255,255,255,0.9)}.ntec-conseils-liste li::before{content:'💡';position:absolute;left:0}.ntec-select-container{position:relative}.ntec-select{width:100%;padding:14px 18px;font-size:15px;border:2px solid var(--ntec-border);border-radius:8px;background:white;cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvgxmlns='http://www.w3.org/2000/svg'width='12'height='12'viewBox='001212'%3E%3Cpathfill='%237f8c8d'd='M68L13h10z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 15px center}.ntec-select:focus{outline:0;border-color:var(--ntec-primary)}.ntec-echelle{margin-top:20px;padding:20px;background:var(--ntec-bg);border-radius:var(--ntec-radius)}.ntec-echelle-titre{font-weight:600;margin-bottom:15px;color:var(--ntec-text)}.ntec-echelle-bar{height:30px;border-radius:15px;background:linear-gradient(to right,#3498db 0,#2ecc71 14%,#f1c40f 28%,#e67e22 43%,#e74c3c 57%,#9b59b6 100%);position:relative;margin-bottom:10px}.ntec-echelle-marker{position:absolute;top:-8px;width:4px;height:46px;background:var(--ntec-text);border-radius:2px;transition:left .5s ease}.ntec-echelle-labels{display:flex;justify-content:space-between;font-size:11px;color:var(--ntec-text-light)}.ntec-durete-resultats{display:none;margin-top:25px}.ntec-durete-resultats.show{display:block;animation:fadeIn .5s ease}.ntec-durete-card{background:linear-gradient(135deg,var(--ntec-primary) 0,var(--ntec-primary-light) 100%);color:white;padding:25px;border-radius:var(--ntec-radius);margin-bottom:20px}.ntec-durete-commune{font-size:14px;opacity:.9}.ntec-durete-valeur{font-size:36px;font-weight:700;margin:10px 0}.ntec-durete-niveau{display:inline-block;padding:6px 16px;border-radius:20px;font-size:14px;font-weight:600}.ntec-niveau-tres-douce{background:#3498db}.ntec-niveau-douce{background:#2ecc71}.ntec-niveau-mi-dure{background:#f1c40f;color:#2c3e50}.ntec-niveau-assez-dure{background:#e67e22}.ntec-niveau-dure{background:#e74c3c}.ntec-niveau-tres-dure{background:#9b59b6}.ntec-recommandations{background:var(--ntec-bg);padding:20px;border-radius:var(--ntec-radius)}.ntec-recommandations-titre{font-weight:600;color:var(--ntec-text);margin-bottom:15px;display:flex;align-items:center;gap:8px}.ntec-recommandations-liste{list-style:none;padding:0;margin:0}.ntec-recommandations-liste li{padding:10px 0;border-bottom:1px solid var(--ntec-border);font-size:14px;color:var(--ntec-text)}.ntec-recommandations-liste li:last-child{border-bottom:0}.ntec-cta{margin-top:20px;padding:20px;background:linear-gradient(135deg,var(--ntec-accent) 0,#d35400 100%);border-radius:var(--ntec-radius);text-align:center;color:white}.ntec-cta-titre{font-weight:600;margin-bottom:10px}.ntec-cta-tel{font-size:24px;font-weight:700;color:white;text-decoration:none;display:inline-block;padding:10px 25px;background:rgba(255,255,255,0.2);border-radius:8px;transition:all .3s ease}.ntec-cta-tel:hover{background:rgba(255,255,255,0.3);color:white}.ntec-footer{padding:20px 30px;background:var(--ntec-bg);text-align:center;font-size:13px;color:var(--ntec-text-light);border-top:1px solid var(--ntec-border)}.ntec-footer a{color:var(--ntec-primary);text-decoration:none}.ntec-footer a:hover{text-decoration:underline}@media(max-width:768px){.ntec-header{padding:20px}.ntec-header h2{font-size:20px}.ntec-tab-content{padding:20px}.ntec-checkbox-grid{grid-template-columns:1fr}.ntec-resultats-grid{grid-template-columns:repeat(2,1fr)}.ntec-tabs{flex-direction:column}.ntec-tab{border-bottom:1px solid var(--ntec-border)}.ntec-tab.active::after{display:none}}.mfp-wrap .mfp-container button:hover{background:transparent!important}.mfp-wrap .mfp-arrow:active{position:absolute;top:50%}.mfp-wrap .mfp-close:active{position:absolute;top:-10px}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after,.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{font-family:ETmodules;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mfp-fade.mfp-bg{opacity:.001;-webkit-transition:all .5s ease-out;transition:all .5s ease-out}.mfp-fade.mfp-bg.mfp-ready{opacity:.8}.mfp-fade.mfp-bg.mfp-removing{opacity:0}.mfp-fade .mfp-wrap.mfp-wrap.mfp-ready .mfp-content{opacity:1}.mfp-fade .mfp-wrap.mfp-wrap.mfp-removing .mfp-content{opacity:0}.mfp-fade .mfp-wrap .mfp-content{opacity:.001;-webkit-transition:all .5s ease-out;transition:all .5s ease-out}.mfp-bg{z-index:1000000;overflow:hidden;background:#0b0b0b;opacity:.8;filter:alpha(opacity=80)}.mfp-bg,.mfp-wrap{top:0;left:0;width:100%;height:100%;position:fixed}.mfp-wrap{z-index:1000001;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:zoom-in}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;filter:alpha(opacity=65);padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px}.mfp-arrow{position:absolute;opacity:.55;filter:alpha(opacity=55);top:50%;margin:-32px 0 0;padding:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:hover{opacity:1;filter:alpha(opacity=100)}.mfp-arrow-left{left:10px}.mfp-arrow-right{right:10px}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}.mfp-arrow{background:none!important;margin-top:-32px!important;line-height:1em!important}.mfp-arrow,.mfp-arrow:after{width:48px!important;height:48px!important}.mfp-arrow:after{margin:0!important;top:0!important;border:none!important}.mfp-arrow-left{left:0!important}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after,.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{border:none;font-size:64px;color:#fff}.mfp-arrow-left:before,.mfp-arrow-right:before{display:none}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after{content:"4"}.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{content:"5"}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{font-size:64px;font-family:Open Sans,Arial,sans-serif;font-weight:200;top:-10px;opacity:.2}.mfp-iframe-holder .mfp-close:hover,.mfp-image-holder .mfp-close:hover{opacity:1}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure,img.mfp-img{line-height:0}.mfp-figure:after{content:"";position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-height:300px),screen and (max-width:800px) and (orientation:landscape){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}
 @-webkit-keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
}
@keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from,
50%,
to {
opacity: 1;
}
25%,
75% {
opacity: 0;
}
}
@keyframes flash {
from,
50%,
to {
opacity: 1;
}
25%,
75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.headShake {
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-name: headShake;
animation-name: headShake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes wobble {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from,
11.1%,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from,
11.1%,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes heartBeat {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
14% {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
28% {
-webkit-transform: scale(1);
transform: scale(1);
}
42% {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes heartBeat {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
14% {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
28% {
-webkit-transform: scale(1);
transform: scale(1);
}
42% {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
.heartBeat {
-webkit-animation-name: heartBeat;
animation-name: heartBeat;
-webkit-animation-duration: 1.3s;
animation-duration: 1.3s;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
@-webkit-keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInLeft {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInRight {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
50%,
55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
50%,
55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
}
.bounceOut {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%,
60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%,
80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%,
60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%,
80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-name: hinge;
animation-name: hinge;
}
@-webkit-keyframes jackInTheBox {
from {
opacity: 0;
-webkit-transform: scale(0.1) rotate(30deg);
transform: scale(0.1) rotate(30deg);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
70% {
-webkit-transform: rotate(3deg);
transform: rotate(3deg);
}
to {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes jackInTheBox {
from {
opacity: 0;
-webkit-transform: scale(0.1) rotate(30deg);
transform: scale(0.1) rotate(30deg);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
70% {
-webkit-transform: rotate(3deg);
transform: rotate(3deg);
}
to {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
.jackInTheBox {
-webkit-animation-name: jackInTheBox;
animation-name: jackInTheBox;
} @-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.delay-1s {
-webkit-animation-delay: 1s;
animation-delay: 1s;
}
.animated.delay-2s {
-webkit-animation-delay: 2s;
animation-delay: 2s;
}
.animated.delay-3s {
-webkit-animation-delay: 3s;
animation-delay: 3s;
}
.animated.delay-4s {
-webkit-animation-delay: 4s;
animation-delay: 4s;
}
.animated.delay-5s {
-webkit-animation-delay: 5s;
animation-delay: 5s;
}
.animated.fast {
-webkit-animation-duration: 800ms;
animation-duration: 800ms;
}
.animated.faster {
-webkit-animation-duration: 500ms;
animation-duration: 500ms;
}
.animated.slow {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.slower {
-webkit-animation-duration: 3s;
animation-duration: 3s;
}
@media (prefers-reduced-motion) {
.animated {
-webkit-animation: unset !important;
animation: unset !important;
-webkit-transition: none !important;
transition: none !important;
}
}[class*=et_pb_section_dap_]{width:100%}#et-boc .area-outer-wrap{max-height:100vh;max-width:100vw;pointer-events:none;position:fixed;z-index:100}#et-boc .area-outer-wrap.entry-content{padding:0}#et-boc .area-outer-wrap[data-da-type=popup]{min-width:320px;padding:10px}@media screen and (min-width:981px){#et-boc .area-outer-wrap[data-da-type=popup]{width:90%}}@media screen and (max-width:980px){#et-boc .area-outer-wrap[data-da-type=popup]{width:100%}}@media (min-width:981px){#et-boc .area-outer-wrap .et_pb_row.et_pb_equal_columns,#et-boc .area-outer-wrap .et_pb_row_inner.et_pb_equal_columns,#et-boc .area-outer-wrap .et_pb_section.et_pb_equal_columns>.et_pb_row{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}}#et-boc .area-outer-wrap[data-da-type=inline]{bottom:unset;height:unset;left:unset;max-height:unset;max-width:unset;position:relative;right:unset;top:unset;-webkit-transform:unset;transform:unset;width:unset}#et-boc .area-outer-wrap>[data-da-area]{-ms-scroll-chaining:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;display:block!important;-ms-flex-direction:column;flex-direction:column;height:100%;margin:auto;overscroll-behavior:contain;pointer-events:all;position:relative}#et-boc .area-outer-wrap>[data-da-area]>.et_pb_section{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}#et-boc .area-outer-wrap>[data-da-area] .clearfix:after,#et-boc .area-outer-wrap>[data-da-area] .et_pb_row:after,#et-boc .area-outer-wrap>[data-da-area] .et_pb_row_inner:after,#et-boc .area-outer-wrap>[data-da-area] .et_pb_slides:after{content:""}#et-boc .area-outer-wrap.full-height[data-da-overflow=full_height]>[data-da-area],#et-boc .area-outer-wrap[data-da-overflow=clip]>[data-da-area]{overflow:auto}#et-boc .area-outer-wrap[data-da-overflow=show]>[data-da-area]{overflow:visible}#et-boc .area-outer-wrap[data-da-type=flyin].full-height,#et-boc .area-outer-wrap[data-da-type=popup].full-height{bottom:0!important;height:auto!important;margin-top:0!important;top:0!important}#et-boc .area-outer-wrap[data-da-type=flyin].full-height [data-da-area],#et-boc .area-outer-wrap[data-da-type=popup].full-height [data-da-area]{max-height:100%}#et-boc .area-outer-wrap[data-da-type=flyin].full-height[data-da-size=auto] .da-close-wrap,#et-boc .area-outer-wrap[data-da-type=popup].full-height[data-da-size=auto] .da-close-wrap{height:calc(100% - 20px)!important}#et-boc .area-outer-wrap[data-da-type=flyin].full-height:not([data-da-size=auto]) .da-close-wrap,#et-boc .area-outer-wrap[data-da-type=popup].full-height:not([data-da-size=auto]) .da-close-wrap{height:100%!important}#et-boc .area-outer-wrap[data-da-size=full_screen],#et-boc .area-outer-wrap[data-da-size=full_width]{max-width:100vw;min-width:100vw;padding-left:0;padding-right:0;width:100vw}#et-boc .area-outer-wrap[data-da-size=full_screen][data-da-position-v=bottom],#et-boc .area-outer-wrap[data-da-size=full_screen][data-da-position-v=top],#et-boc .area-outer-wrap[data-da-size=full_width][data-da-position-v=bottom],#et-boc .area-outer-wrap[data-da-size=full_width][data-da-position-v=top]{padding-bottom:0;padding-top:0}#et-boc .area-outer-wrap[data-da-size=full_screen] .et_pb_section,#et-boc .area-outer-wrap[data-da-size=full_width] .et_pb_section{max-width:none;min-width:100%;width:100%}#et-boc .area-outer-wrap[data-da-size=full_height],#et-boc .area-outer-wrap[data-da-size=full_screen]{height:100vh;max-height:100vh;min-height:100vh;padding-bottom:0;padding-top:0}#et-boc .area-outer-wrap[data-da-size=full_height][data-da-position-h=left],#et-boc .area-outer-wrap[data-da-size=full_height][data-da-position-h=right],#et-boc .area-outer-wrap[data-da-size=full_screen][data-da-position-h=left],#et-boc .area-outer-wrap[data-da-size=full_screen][data-da-position-h=right]{padding-left:0;padding-right:0}#et-boc .area-outer-wrap .da-close-wrap{display:block;left:50%;overflow:visible;pointer-events:none;position:absolute;text-align:right;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transition:opacity .6s .3s;-o-transition:opacity .6s .3s;transition:opacity .6s .3s;z-index:100}#et-boc .area-outer-wrap .da-close{-webkit-box-sizing:content-box;box-sizing:content-box;cursor:pointer;display:block;font-family:Courier New,monospace;font-size:20px;font-weight:700;height:30px;line-height:30px;opacity:.7;pointer-events:all;position:absolute;right:0;text-align:center;text-decoration:none;top:0;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s;width:30px}#et-boc .area-outer-wrap .da-close:focus,#et-boc .area-outer-wrap .da-close:hover{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}#et-boc .area-outer-wrap[data-da-close-btn=no] .da-close-wrap{display:none!important}#et-boc .area-outer-wrap[data-da-close-btn=yes] .da-close-wrap{display:block}#et-boc .area-outer-wrap[data-da-color=light] .da-close{background:#fff2;-webkit-box-shadow:0 0 3px 1px #00000008;box-shadow:0 0 3px 1px #00000008;color:#333}#et-boc .area-outer-wrap[data-da-color=light] .da-close:focus,#et-boc .area-outer-wrap[data-da-color=light] .da-close:hover{background:#fff;-webkit-box-shadow:0 0 4px 0 #0002,0 0 3px 1px #0001;box-shadow:0 0 4px 0 #0002,0 0 3px 1px #0001;color:#000}#et-boc .area-outer-wrap[data-da-color=dark] .da-close{background:#0002;-webkit-box-shadow:0 0 0 1px #ffffff08;box-shadow:0 0 0 1px #ffffff08;color:#eee;text-shadow:0 0 1px #000,0 0 3px #000a}#et-boc .area-outer-wrap[data-da-color=dark] .da-close:focus,#et-boc .area-outer-wrap[data-da-color=dark] .da-close:hover{background:#2b2b2b;-webkit-box-shadow:0 0 1px 1px #fff3;box-shadow:0 0 1px 1px #fff3;color:#fff}#et-boc .area-outer-wrap[data-da-close-bg=none] .da-close,#et-boc .area-outer-wrap[data-da-close-bg=none] .da-close:focus,#et-boc .area-outer-wrap[data-da-close-bg=none] .da-close:hover{background:transparent;-webkit-box-shadow:none;box-shadow:none}#et-boc .area-outer-wrap[data-da-loader=yes] [data-da-area]{background-image:url(//ntecservices.ch/wp-content/plugins/popups-for-divi/images/spin.gif),-o-radial-gradient(center,circle,#fff 65%,#fff0 66%)!important;background-image:url(//ntecservices.ch/wp-content/plugins/popups-for-divi/images/spin.gif),radial-gradient(circle at center,#fff 65%,#fff0 66%)!important;background-position:50%;background-repeat:no-repeat;background-size:32px 32px,48px 48px!important}#et-boc .area-outer-wrap[data-da-shadow=yes] [data-da-area]{-webkit-box-shadow:0 3px 10px -1px rgba(0,0,0,.3),0 2px 50px 2px rgba(0,0,0,.2);box-shadow:0 3px 10px -1px rgba(0,0,0,.3),0 2px 50px 2px rgba(0,0,0,.2)}#et-boc .area-outer-wrap[data-da-shadow=no] [data-da-area]{-webkit-box-shadow:none;box-shadow:none}.area-outer-wrap [data-da-area]{display:block;pointer-events:all}.da-overlay{backdrop-filter:none;-webkit-backdrop-filter:none;background:rgba(0,0,0,.55);bottom:0;left:0;position:fixed;right:0;top:0;transition:-webkit-backdrop-filter 1s 1s,backdrop-filter 1s 1s;z-index:99}.da-overlay-visible{overflow:hidden}.da-overlay-visible .da-overlay{backdrop-filter:saturate(180%) blur(5px);-webkit-backdrop-filter:saturate(180%) blur(5px)}[data-area-hook]{display:none!important;visibility:hidden!important}.da-flyin-visible .mfp-bg,.da-hover-visible .mfp-bg,.da-popup-visible .mfp-bg{z-index:20000000}.da-flyin-visible .mfp-wrap,.da-hover-visible .mfp-wrap,.da-popup-visible .mfp-wrap{z-index:20000001}