@charset "UTF-8";

  .wcf-animate[class*=wcf-starter-animations-] .elementor-widget-container > *,
.wcf-animate[class*=wcf-starter-animations-] > *,
.wcf-animate.wcf-target-self[class*=wcf-starter-animations-] {
animation-duration: var(--wcf-duration, 700ms);
animation-delay: var(--wcf-delay, 0ms);
animation-timing-function: var(--wcf-ease, ease);
animation-fill-mode: forwards;
}  .wcf-starter-animations-reveal .elementor-widget-container > *,
.wcf-starter-animations-reveal > *,
.wcf-starter-animations-reveal.wcf-target-self {
opacity: 0;
} .wcf-reveal-bottom.wcf-starter-animations-reveal .elementor-widget-container > *,
.wcf-reveal-bottom.wcf-starter-animations-reveal > *,
.wcf-reveal-bottom.wcf-starter-animations-reveal.wcf-target-self {
clip-path: inset(100% 0 0 0);
} .wcf-reveal-top.wcf-starter-animations-reveal .elementor-widget-container > *,
.wcf-reveal-top.wcf-starter-animations-reveal > *,
.wcf-reveal-top.wcf-starter-animations-reveal.wcf-target-self {
clip-path: inset(0 0 100% 0);
} .wcf-reveal-left.wcf-starter-animations-reveal .elementor-widget-container > *,
.wcf-reveal-left.wcf-starter-animations-reveal > *,
.wcf-reveal-left.wcf-starter-animations-reveal.wcf-target-self {
clip-path: inset(0 100% 0 0);
} .wcf-reveal-right.wcf-starter-animations-reveal .elementor-widget-container > *,
.wcf-reveal-right.wcf-starter-animations-reveal > *,
.wcf-reveal-right.wcf-starter-animations-reveal.wcf-target-self {
clip-path: inset(0 0 0 100%);
} .wcf-reveal-center.wcf-starter-animations-reveal .elementor-widget-container > *,
.wcf-reveal-center.wcf-starter-animations-reveal > *,
.wcf-reveal-center.wcf-starter-animations-reveal.wcf-target-self {
clip-path: inset(0 50% 0 50%);
} .wcf-animate.wcf-starter-animations-reveal .elementor-widget-container > *,
.wcf-animate.wcf-starter-animations-reveal > *,
.wcf-animate.wcf-starter-animations-reveal.wcf-target-self {
animation: wcf-reveal-anim var(--wcf-duration, 700ms) var(--wcf-ease, ease) forwards;
}
@keyframes wcf-reveal-anim {
to {
clip-path: inset(0 0 0 0);
opacity: 1;
}
}  .wcf-starter-animations-scale-up .elementor-widget-container > *,
.wcf-starter-animations-scale-up > *,
.wcf-starter-animations-scale-up.wcf-target-self {
transform: scale(var(--wcf-scale-start, 0.6));
opacity: var(--wcf-scale-opacity, 0);
transform-origin: var(--wcf-scale-origin, center);
}
.wcf-animate.wcf-starter-animations-scale-up .elementor-widget-container > *,
.wcf-animate.wcf-starter-animations-scale-up > *,
.wcf-animate.wcf-starter-animations-scale-up.wcf-target-self {
animation-name: wcf-scale-up;
}
@keyframes wcf-scale-up {
to {
transform: scale(var(--wcf-scale-end, 1));
opacity: 1;
}
} .wcf-starter-animations-rotate-in .elementor-widget-container > *,
.wcf-starter-animations-rotate-in > *,
.wcf-starter-animations-rotate-in.wcf-target-self {
transform: rotate(-45deg);
opacity: 0;
}
.wcf-animate.wcf-starter-animations-rotate-in .elementor-widget-container > *,
.wcf-animate.wcf-starter-animations-rotate-in > *,
.wcf-animate.wcf-starter-animations-rotate-in.wcf-target-self {
animation-name: wcf-rotate-in;
}
@keyframes wcf-rotate-in {
to {
transform: rotate(0);
opacity: 1;
}
}  .wcf-starter-animations-slide .elementor-widget-container > *,
.wcf-starter-animations-slide > *,
.wcf-starter-animations-slide.wcf-target-self {
opacity: 0;
} .wcf-slide-bottom.wcf-starter-animations-slide .elementor-widget-container > *,
.wcf-slide-bottom.wcf-starter-animations-slide > *,
.wcf-slide-bottom.wcf-starter-animations-slide.wcf-target-self {
transform: translateY(var(--wcf-slide-distance, 60px));
} .wcf-slide-top.wcf-starter-animations-slide .elementor-widget-container > *,
.wcf-slide-top.wcf-starter-animations-slide > *,
.wcf-slide-top.wcf-starter-animations-slide.wcf-target-self {
transform: translateY(calc(var(--wcf-slide-distance, 60px) * -1));
} .wcf-slide-left.wcf-starter-animations-slide .elementor-widget-container > *,
.wcf-slide-left.wcf-starter-animations-slide > *,
.wcf-slide-left.wcf-starter-animations-slide.wcf-target-self {
transform: translateX(calc(var(--wcf-slide-distance, 60px) * -1));
} .wcf-slide-right.wcf-starter-animations-slide .elementor-widget-container > *,
.wcf-slide-right.wcf-starter-animations-slide > *,
.wcf-slide-right.wcf-starter-animations-slide.wcf-target-self {
transform: translateX(var(--wcf-slide-distance, 60px));
} .wcf-animate.wcf-starter-animations-slide .elementor-widget-container > *,
.wcf-animate.wcf-starter-animations-slide > *,
.wcf-animate.wcf-starter-animations-slide.wcf-target-self {
animation: wcf-slide var(--wcf-duration, 700ms) var(--wcf-ease, ease) forwards;
}
@keyframes wcf-slide {
to {
transform: translateX(0) translateY(0);
opacity: 1;
}
} .wcf-starter-animations-skew-reveal .elementor-widget-container > *,
.wcf-starter-animations-skew-reveal > *,
.wcf-starter-animations-skew-reveal.wcf-target-self {
transform: skewX(var(--wcf-skew-angle, 18deg)) translateX(var(--wcf-skew-distance, -40px));
opacity: var(--wcf-skew-opacity-start, 0);
animation-duration: var(--wcf-duration, 0.6s);
animation-delay: var(--wcf-skew-delay, 0s);
animation-timing-function: var(--wcf-skew-ease, ease);
animation-fill-mode: forwards;
will-change: transform, opacity;
} .wcf-animate.wcf-starter-animations-skew-reveal .elementor-widget-container > *,
.wcf-animate.wcf-starter-animations-skew-reveal > *,
.wcf-animate.wcf-starter-animations-skew-reveal.wcf-target-self {
animation-name: wcf-skew-reveal;
} @keyframes wcf-skew-reveal {
to {
transform: skewX(0deg) translateX(0);
opacity: 1;
}
} .wcf-starter-animations-flip .elementor-widget-container > *,
.wcf-starter-animations-flip > *,
.wcf-starter-animations-flip.wcf-target-self {
opacity: 0;
transform-style: preserve-3d;
perspective: var(--wcf-flip-perspective, 800px);
animation-duration: var(--wcf-flip-duration, 0.6s);
animation-delay: var(--wcf-flip-delay, 0s);
animation-timing-function: var(--wcf-flip-ease, ease);
animation-fill-mode: forwards;
will-change: transform, opacity;
} .wcf-flip-axis-x.wcf-starter-animations-flip .elementor-widget-container > *,
.wcf-flip-axis-x.wcf-starter-animations-flip > *,
.wcf-flip-axis-x.wcf-starter-animations-flip.wcf-target-self {
transform: rotateX(var(--wcf-flip-angle, 90deg));
} .wcf-flip-axis-y.wcf-starter-animations-flip .elementor-widget-container > *,
.wcf-flip-axis-y.wcf-starter-animations-flip > *,
.wcf-flip-axis-y.wcf-starter-animations-flip.wcf-target-self {
transform: rotateY(var(--wcf-flip-angle, 90deg));
} .wcf-animate.wcf-starter-animations-flip .elementor-widget-container > *,
.wcf-animate.wcf-starter-animations-flip > *,
.wcf-animate.wcf-starter-animations-flip.wcf-target-self {
animation-name: wcf-flip;
} @keyframes wcf-flip {
to {
transform: rotateX(0deg) rotateY(0deg);
opacity: 1;
}
} .wcf-starter-animations-zoom-in .elementor-widget-container > *,
.wcf-starter-animations-zoom-in > *,
.wcf-starter-animations-zoom-in.wcf-target-self {
transform: scale(1.3);
opacity: 0;
}
.wcf-animate.wcf-starter-animations-zoom-in .elementor-widget-container > *,
.wcf-animate.wcf-starter-animations-zoom-in > *,
.wcf-animate.wcf-starter-animations-zoom-in.wcf-target-self {
animation-name: wcf-zoom-in;
}
@keyframes wcf-zoom-in {
to {
transform: scale(1);
opacity: 1;
}
} .wcf-starter-animations-combo-reveal .elementor-widget-container > *,
.wcf-starter-animations-combo-reveal > *,
.wcf-starter-animations-combo-reveal.wcf-target-self {
transform: translateY(40px) scale(0.9);
opacity: 0;
}
.wcf-animate.wcf-starter-animations-combo-reveal .elementor-widget-container > *,
.wcf-animate.wcf-starter-animations-combo-reveal > *,
.wcf-animate.wcf-starter-animations-combo-reveal.wcf-target-self {
animation-name: wcf-combo-reveal;
}
@keyframes wcf-combo-reveal {
to {
transform: translateY(0) scale(1);
opacity: 1;
}
} .wcf-animate.wcf-starter-animations-text-glow {
animation: wcf-glow var(--wcf-duration, 2s) var(--wcf-ease, ease-in-out) alternate;
animation-iteration-count: var(--wcf-iteration, infinite);
}
@keyframes wcf-glow {
from {
text-shadow: 0 0 5px var(--wcf-glow-color, #fff);
}
to {
text-shadow: 0 0 var(--wcf-glow-size, 20px) var(--wcf-glow-color, #00f);
}
} .wcf-starter-animations-text-pop {
transform: scale(0.6);
opacity: 0;
}
.wcf-animate.wcf-starter-animations-text-pop {
animation: wcf-text-pop 0.6s ease forwards;
}
@keyframes wcf-text-pop {
70% {
transform: scale(1.1);
}
100% {
transform: scale(1);
opacity: 1;
}
}
.wcf-starter-animations-text-typewriter .elementor-widget-container > *,
.wcf-starter-animations-text-typewriter > *,
.wcf-target-self.wcf-starter-animations-text-typewriter {
overflow: hidden;
white-space: nowrap;
width: 0;
}
.wcf-animate.wcf-starter-animations-text-typewriter .elementor-widget-container > *,
.wcf-animate.wcf-starter-animations-text-typewriter > *,
.wcf-animate.wcf-target-self.wcf-starter-animations-text-typewriter {
animation: wcf-typewriter var(--wcf-duration, 2s) steps(30) forwards, wcf-caret 1s step-end;
}
@keyframes wcf-typewriter {
to {
width: 100%;
}
}
@keyframes wcf-caret {
50% {
border-color: transparent;
}
} .wcf-starter-animations-text-mask-wipe .elementor-widget-container > *,
.wcf-starter-animations-text-mask-wipe > *,
.wcf-target-self.wcf-starter-animations-text-mask-wipe {
position: relative;
display: inline-block;
overflow: hidden;
} .wcf-starter-animations-text-mask-wipe .elementor-widget-container > *::after,
.wcf-starter-animations-text-mask-wipe > *::after,
.wcf-target-self.wcf-starter-animations-text-mask-wipe::after {
content: "";
position: absolute;
inset: 0;
background: var(--wcf-mask-bg, #000);
transform: translateX(0%);
z-index: 2;
} .wcf-animate.wcf-starter-animations-text-mask-wipe .elementor-widget-container > *::after,
.wcf-animate.wcf-starter-animations-text-mask-wipe > *::after,
.wcf-animate.wcf-target-self.wcf-starter-animations-text-mask-wipe::after {
animation: wcf-mask-wipe var(--wcf-duration, 1000ms) var(--wcf-ease, cubic-bezier(0.77, 0, 0.18, 1)) var(--wcf-delay, 0ms) forwards;
}
@keyframes wcf-mask-wipe {
to {
transform: translateX(100%);
}
} .wcf-select-scroll .select2-results__options {
max-height: 150px !important;
overflow-y: auto !important;
} .wcf-starter-animations-text-wave .elementor-widget-container > *,
.wcf-starter-animations-text-wave > *,
.wcf-target-self.wcf-starter-animations-text-wave {
position: relative;
color: transparent;
} .wcf-starter-animations-text-wave .elementor-widget-container > *::after,
.wcf-starter-animations-text-wave > *::after,
.wcf-target-self.wcf-starter-animations-text-wave::after {
content: attr(data-text);
position: absolute;
left: 0;
top: 0;
color: var(--wcf-wave-fill, #03a9f4);
animation: wcf-wave 4s ease-in-out infinite;
}
@keyframes wcf-wave {
0%, 100% {
clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
}
50% {
clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
}
} .wcf-starter-animations-text-bg-clip .elementor-widget-container > *,
.wcf-starter-animations-text-bg-clip > *,
.wcf-target-self.wcf-starter-animations-text-bg-clip {
position: relative;
color: var(--wcf-bg-text-color, rgba(255, 0, 0, 0.1));
background-image: var(--wcf-bg-text-image);
background-size: var(--wcf-bg-text-size, cover);
background-repeat: repeat;
background-position: left 0 top 50%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
} .wcf-animate.wcf-starter-animations-text-bg-clip .elementor-widget-container > *,
.wcf-animate.wcf-starter-animations-text-bg-clip > *,
.wcf-animate.wcf-target-self.wcf-starter-animations-text-bg-clip {
animation: wcf-bg-text-animation var(--wcf-bg-speed, 15s) linear infinite;
}
@keyframes wcf-bg-text-animation {
0% {
background-position: left 0 top 50%;
}
50% {
background-position: left 1500px top 50%;
}
100% {
background-position: left 0 top 50%;
}
}   .wcf-char-preset-revolve {
--wcf-char-x: -150px;
--wcf-char-y: -50px;
--wcf-char-rotate: -180deg;
--wcf-char-scale: 2;
} .wcf-char-preset-ball {
--wcf-char-x: 0px;
--wcf-char-y: -200px;
--wcf-char-rotate: 0deg;
--wcf-char-scale: 1;
} .wcf-char-preset-slide {
--wcf-char-x: -100px;
--wcf-char-y: 0px;
--wcf-char-rotate: 0deg;
--wcf-char-scale: 1;
} .wcf-char-preset-revolve_drop {
--wcf-char-x: 0px;
--wcf-char-y: -150px;
--wcf-char-rotate: -360deg;
--wcf-char-scale: 1.5;
} .wcf-char-preset-drop_vanish {
--wcf-char-x: 0px;
--wcf-char-y: -250px;
--wcf-char-rotate: 0deg;
--wcf-char-scale: 0.3;
} .wcf-char-preset-twister {
--wcf-char-x: 0px;
--wcf-char-y: 0px;
--wcf-char-rotate: -720deg;
--wcf-char-scale: 1;
} [class*=wcf-starter-animations-text-char] .elementor-widget-container > *,
[class*=wcf-starter-animations-text-char] > *,
.wcf-target-self[class*=wcf-starter-animations-text-char] {
display: inline-block;
} [class*=wcf-starter-animations-text-char] .elementor-widget-container > * span,
[class*=wcf-starter-animations-text-char] > * span,
.wcf-target-self[class*=wcf-starter-animations-text-char] span {
display: inline-block;
opacity: 0;
transform: translate(var(--wcf-char-x, -150px), var(--wcf-char-y, 0)) rotate(var(--wcf-char-rotate, -180deg)) scale(var(--wcf-char-scale, 2));
animation-delay: calc(var(--wcf-stagger, 0.05s) * var(--i));
will-change: transform, opacity;
} .wcf-animate[class*=wcf-starter-animations-text-char] .elementor-widget-container > * span,
.wcf-animate[class*=wcf-starter-animations-text-char] > * span,
.wcf-animate.wcf-target-self[class*=wcf-starter-animations-text-char] span {
animation-name: wcf-char;
animation-duration: var(--wcf-duration, 0.5s);
animation-timing-function: var(--wcf-ease, ease);
animation-fill-mode: forwards;
} @keyframes wcf-char {
to {
opacity: 1;
transform: translate(0, 0) rotate(0deg) scale(1);
}
}  .wcf-starter-animations-slide.e-con {
opacity: 0;
animation-duration: var(--wcf-slide-duration, 600ms);
animation-delay: var(--wcf-slide-delay, 0ms);
animation-timing-function: var(--wcf-slide-ease, ease);
animation-fill-mode: forwards;
will-change: transform, opacity;
} .wcf-slide-bottom.wcf-starter-animations-slide.e-con {
transform: translateY(var(--wcf-slide-distance, 40px));
}
.wcf-slide-top.wcf-starter-animations-slide.e-con {
transform: translateY(calc(-1 * var(--wcf-slide-distance, 40px)));
}
.wcf-slide-left.wcf-starter-animations-slide.e-con {
transform: translateX(calc(-1 * var(--wcf-slide-distance, 40px)));
}
.wcf-slide-right.wcf-starter-animations-slide.e-con {
transform: translateX(var(--wcf-slide-distance, 40px));
} .wcf-animate.wcf-starter-animations-slide.e-con {
animation-name: wcf-container-slide;
}
@keyframes wcf-container-slide {
to {
transform: translateX(0) translateY(0);
opacity: 1;
}
}  .wcf-starter-animations-flip.e-con {
opacity: 0;
transform-style: preserve-3d;
perspective: var(--wcf-flip-perspective-container, 800px);
animation-duration: var(--wcf-duration, 700ms);
animation-delay: var(--wcf-delay, 0ms);
animation-timing-function: var(--wcf-ease, ease);
animation-fill-mode: forwards;
will-change: transform, opacity;
} .wcf-flip-axis-container-x.wcf-starter-animations-flip.e-con {
transform: rotateX(var(--wcf-flip-angle-container, 90deg));
} .wcf-flip-axis-container-y.wcf-starter-animations-flip.e-con {
transform: rotateY(var(--wcf-flip-angle-container, 90deg));
} .wcf-animate.wcf-starter-animations-flip.e-con {
animation-name: wcf-container-flip;
} @keyframes wcf-container-flip {
to {
transform: rotateX(0deg) rotateY(0deg);
opacity: 1;
}
}.frymo-text-wpautop p:last-child{margin-bottom:0}.frymo-submit{position:relative}.frymo-loading .frymo-submit:after{content:"";position:absolute;top:50%;left:50%;width:20px;height:20px;border-width:2px;border-style:solid;border-top-color:transparent;border-right-color:#fff;border-bottom-color:#fff;border-left-color:#fff;border-radius:50%;animation:frymoajaxloader 1.2s infinite linear}.frymo-loading .frymo-submit{color:transparent!important;transition:color .1s}.frymo-loading{opacity:.8;pointer-events:none}@keyframes frymoajaxloader{from{transform:translate(-50%,-50%) rotate(0)}to{transform:translate(-50%,-50%) rotate(360deg)}}@keyframes frymoajaxloader2{from{transform:rotate(0)}to{transform:rotate(360deg)}}.frymo-widget-header{display:flex;flex-direction:column;justify-content:center;align-items:flex-start}.frymo-widget-header .frymo-widget-heading,.frymo-widget-header .frymo-widget-heading-line{display:inline}.frymo-widget-fallback-image img{width:100%}.frymo-widget-icon:after{font-family:frymo-icons;content:"\e024";speak:none;font-size:14px;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:6px;right:6px;color:#cdcfd2}.frymo-expandable-yes .frymo-expandable-content{--frymo-collapsible-transition-duration:250ms;--frymo-collapsible-transition-easing:ease-in-out;overflow:hidden;transition:height var(--frymo-collapsible-transition-duration) var(--frymo-collapsible-transition-easing)}.frymo-expandable-yes.frymo-height-fixed .frymo-expandable-fade{-webkit-mask-image:linear-gradient(to bottom,#000 calc(100% - var(--fade-height)),transparent 100%);mask-image:linear-gradient(to bottom,#000 calc(100% - var(--fade-height)),transparent 100%);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%}.frymo-expandable-yes.frymo-height-fixed.is--expanded .frymo-expandable-fade,.frymo-expandable-yes.frymo-height-fixed:not(.frymo-expandable-content-enabled) .frymo-expandable-fade{mask-image:none;-webkit-mask-image:none}.frymo-expandable-yes.frymo-height-lines .frymo-expandable-content{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}.frymo-expandable-yes.frymo-height-lines.is--collapsing .frymo-expandable-content,.frymo-expandable-yes.frymo-height-lines.is--expanded .frymo-expandable-content{-webkit-line-clamp:unset!important;overflow:visible}.frymo-expandable-yes .frymo-toggle-button-container{display:none}.frymo-expandable-yes .frymo-toggle-button-container .frymo-toggle-button{cursor:pointer;display:flex;align-items:center;color:var(--button-text-color)}.frymo-expandable-yes .frymo-toggle-button-container .frymo-toggle-button *{transition:color 250ms,background-color 250ms,fill 250ms}.frymo-expandable-yes .frymo-toggle-button-container .frymo-toggle-button .show-less-text,.frymo-expandable-yes .frymo-toggle-button-container .frymo-toggle-button .show-more-text{color:inherit}.frymo-expandable-yes .frymo-toggle-button-container .frymo-toggle-button .elementor-icon{color:inherit;transition:transform 250ms ease-in-out;font-size:inherit}.frymo-expandable-yes .frymo-toggle-button-container .frymo-toggle-button .elementor-icon svg{fill:var(--button-text-color)}.frymo-expandable-yes:not(.frymo-expandable-content-enabled) .frymo-toggle-button-container{display:none}.frymo-expandable-yes.frymo-expandable-content-enabled .frymo-toggle-button-container{display:flex;align-items:center}.frymo-expandable-yes:not(.is--expanded) .frymo-toggle-button-container .show-more-text{display:inline-block}.frymo-expandable-yes:not(.is--expanded) .frymo-toggle-button-container .show-less-text{display:none}.frymo-expandable-yes.is--expanded .frymo-expandable-content{height:auto}.frymo-expandable-yes.is--expanded .frymo-toggle-button-container .show-more-text{display:none}.frymo-expandable-yes.is--expanded .frymo-toggle-button-container .show-less-text{display:inline-block}.frymo-expandable-yes.is--expanded .frymo-toggle-button-container .elementor-icon{transform:rotate(180deg)}@media (prefers-reduced-motion:reduce){.frymo-expandable-yes .frymo-expandable-content,.frymo-expandable-yes .frymo-toggle-button-container .elementor-icon,.frymo-expandable-yes .frymo-toggle-button-container .frymo-toggle-button *{transition:none}}.frymo-search-string-fieldset label{position:relative}.frymo-live-search-results-wrapper{display:none;position:absolute;width:100%;top:calc(100% + var(--top-distance));z-index:9999;overflow-y:auto}.frymo-live-search-results-wrapper .frymo-ls-loader{display:flex;justify-content:center;padding:20px 0}.frymo-live-search-results-wrapper .frymo-ls-loader:after{content:"";width:20px;height:20px;border-width:2px;border-style:solid;border-top-color:transparent;border-right-color:#121212;border-bottom-color:#121212;border-left-color:#121212;border-radius:50%;animation:frymoajaxloader2 1.2s infinite linear}.frymo-live-search-results-wrapper .frymo-ls-content{display:flex;flex-direction:column;gap:var(--items-spacing,0)}.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-item{display:grid;grid-template-columns:var(--image-width,20%) auto;gap:10px;transition:background-color 250ms}.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-item:hover{background-color:#f7f8fb}.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-item .frymo-ls-item-image{aspect-ratio:4/3;display:flex;width:100%}.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-item .frymo-ls-item-image img{-o-object-fit:cover;object-fit:cover;min-width:100%}.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-item .frymo-ls-item-content{display:flex;flex:1;flex-direction:column;gap:10px}.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-item .frymo-ls-item-content .frymo-ls-item-title{color:#121212;font-weight:700;font-size:16px}.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-item .frymo-ls-item-content .frymo-ls-item-meta,.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-item .frymo-ls-item-content .frymo-ls-item-terms{display:flex;gap:10px;flex-wrap:wrap;font-size:14px;align-items:center}.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-item .frymo-ls-item-content .frymo-ls-item-meta{gap:18px}.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-item .frymo-ls-item-content .frymo-ls-item-meta-item,.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-item .frymo-ls-item-content .frymo-ls-item-terms-item{display:flex;align-items:center;color:var(--e-global-color-text)}.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-item .frymo-ls-item-content i{margin-right:4px}.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-item .frymo-ls-item-content .frymo-ls-item-marketing-type,.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-item .frymo-ls-item-content .frymo-ls-item-status{padding:4px 8px;background-color:#121212;color:#fff;border-radius:4px;font-size:.8em}.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-item .frymo-ls-item-content .frymo-ls-item-price{margin-top:8px;color:inherit;font-size:14px;color:var(--e-global-color-text)}.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-footer,.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-header{color:var(--e-global-color-text)}.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-footer a,.frymo-live-search-results-wrapper .frymo-ls-content .frymo-ls-header a{color:inherit;text-decoration:underline}.frymo-logo{position:absolute;bottom:10px;right:0;width:20px;height:20px;z-index:1;padding:5px;background-color:rgba(255,255,255,.5);border-radius:3px;display:flex;justify-content:center;align-items:center}.frymo-logo svg{width:20px;height:20px}.frymo-input.selectize-dropdown .selectize-dropdown-emptyoptionlabel{text-align:start}.frymo-input.frymo-inner-select{z-index:1}.frymo-input.frymo-inner-select.selectize-control{position:absolute;border:none!important;text-align:left;display:inline-block;top:50%;transform:translateY(-50%);width:calc(150px + var(--frm-field-right-padding));right:var(--frm-field-right-border-width);padding:0 var(--frm-field-right-padding) 0 5px;height:calc(100% - var(--frm-field-top-border-width) - var(--frm-field-bottom-border-width) - 2px);transition:none}.frymo-input.frymo-inner-select.selectize-control.no-type-to-search .selectize-input{cursor:pointer}.frymo-input.frymo-inner-select.selectize-control.no-type-to-search .selectize-input input{pointer-events:none}.frymo-input.frymo-inner-select.selectize-control .selectize-input{text-align:end}.frymo-input>.selectize-input.dropdown-active::before{display:none!important}@font-face{font-family:frymo-icons;src:url(//hilburger.de/wp-content/plugins/frymo/inc/elementor/assets/iconfont/fonts/frymo-icons.eot);src:url(//hilburger.de/wp-content/plugins/frymo/inc/elementor/assets/iconfont/fonts/frymo-icons.eot?#iefix) format("eot"),url(//hilburger.de/wp-content/plugins/frymo/inc/elementor/assets/iconfont/fonts/frymo-icons.woff2) format("woff2"),url(//hilburger.de/wp-content/plugins/frymo/inc/elementor/assets/iconfont/fonts/frymo-icons.woff) format("woff"),url(//hilburger.de/wp-content/plugins/frymo/inc/elementor/assets/iconfont/fonts/frymo-icons.ttf) format("truetype"),url(//hilburger.de/wp-content/plugins/frymo/inc/elementor/assets/iconfont/fonts/frymo-icons.svg#frymo-icons) format("svg")}.frymo-icon:before{font-family:frymo-icons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-style:normal;font-variant:normal;font-weight:400;text-decoration:none;text-transform:none}.frymo-icon-360-degrees:before{content:"\e001"}.frymo-icon-abstellraum:before{content:"\e002"}.frymo-icon-angeschl-gastronomie:before{content:"\e003"}.frymo-icon-areabutler:before{content:"\e004"}.frymo-icon-ausbaustufe:before{content:"\e005"}.frymo-icon-ausricht-balkon-terrasse:before{content:"\e006"}.frymo-icon-autobahn:before{content:"\e007"}.frymo-icon-bad:before{content:"\e008"}.frymo-icon-balkon:before{content:"\e009"}.frymo-icon-barrierefrei:before{content:"\e00a"}.frymo-icon-bauweise:before{content:"\e00b"}.frymo-icon-betten:before{content:"\e00c"}.frymo-icon-bibliothek:before{content:"\e00d"}.frymo-icon-boden:before{content:"\e00e"}.frymo-icon-brauereibindung:before{content:"\e00f"}.frymo-icon-bueroflaeche:before{content:"\e010"}.frymo-icon-bus:before{content:"\e011"}.frymo-icon-checkmark:before{content:"\e012"}.frymo-icon-close:before{content:"\e013"}.frymo-icon-dachboden:before{content:"\e014"}.frymo-icon-dachform:before{content:"\e015"}.frymo-icon-distances:before{content:"\e016"}.frymo-icon-doc:before{content:"\e017"}.frymo-icon-dv-verkabelung:before{content:"\e018"}.frymo-icon-dvbt:before{content:"\e019"}.frymo-icon-dynamic-content:before{content:"\e01a"}.frymo-icon-einkaufsmoeglichkeiten:before{content:"\e01b"}.frymo-icon-email:before{content:"\e01c"}.frymo-icon-fahrradraum:before{content:"\e01d"}.frymo-icon-fahrstuhl:before{content:"\e01e"}.frymo-icon-features:before{content:"\e01f"}.frymo-icon-fernbahnhof:before{content:"\e020"}.frymo-icon-file:before{content:"\e021"}.frymo-icon-flaeche:before{content:"\e022"}.frymo-icon-flughafen:before{content:"\e023"}.frymo-icon-frymo:before{content:"\e024"}.frymo-icon-gaestewc:before{content:"\e025"}.frymo-icon-gartennutzung:before{content:"\e026"}.frymo-icon-gastistaetten:before{content:"\e027"}.frymo-icon-gastterrasse:before{content:"\e028"}.frymo-icon-gehoben:before{content:"\e029"}.frymo-icon-gesamtflaeche:before{content:"\e02a"}.frymo-icon-gesamtschule:before{content:"\e02b"}.frymo-icon-grundschule:before{content:"\e02c"}.frymo-icon-grundstuecksflaeche:before{content:"\e02d"}.frymo-icon-gymnasium:before{content:"\e02e"}.frymo-icon-hauptschule:before{content:"\e02f"}.frymo-icon-hebebuehne:before{content:"\e030"}.frymo-icon-image:before{content:"\e031"}.frymo-icon-kabel-sat-tv:before{content:"\e032"}.frymo-icon-kabelkanaele:before{content:"\e033"}.frymo-icon-kamin:before{content:"\e034"}.frymo-icon-kantine-cafeteria:before{content:"\e035"}.frymo-icon-kindergaerten:before{content:"\e036"}.frymo-icon-klimatisiert:before{content:"\e037"}.frymo-icon-kran:before{content:"\e038"}.frymo-icon-kueche:before{content:"\e039"}.frymo-icon-link:before{content:"\e03a"}.frymo-icon-location-2:before{content:"\e03b"}.frymo-icon-location:before{content:"\e03c"}.frymo-icon-loggia:before{content:"\e03d"}.frymo-icon-luxus:before{content:"\e03e"}.frymo-icon-moebliert:before{content:"\e03f"}.frymo-icon-parkplatz:before{content:"\e040"}.frymo-icon-pdf:before{content:"\e041"}.frymo-icon-phone-camera-back:before{content:"\e042"}.frymo-icon-phone:before{content:"\e043"}.frymo-icon-pin-3:before{content:"\e044"}.frymo-icon-print:before{content:"\e045"}.frymo-icon-raeume-veraenderbar:before{content:"\e046"}.frymo-icon-rampe:before{content:"\e047"}.frymo-icon-raum:before{content:"\e048"}.frymo-icon-realschule:before{content:"\e049"}.frymo-icon-refresh:before{content:"\e04a"}.frymo-icon-rolladen:before{content:"\e04b"}.frymo-icon-rollstuhlgerecht:before{content:"\e04c"}.frymo-icon-sauna:before{content:"\e04d"}.frymo-icon-searchprofile:before{content:"\e04e"}.frymo-icon-seniorengerecht:before{content:"\e04f"}.frymo-icon-serviceleistungen:before{content:"\e050"}.frymo-icon-sicherheitstechnik:before{content:"\e051"}.frymo-icon-sporteinrichtungen:before{content:"\e052"}.frymo-icon-standard:before{content:"\e053"}.frymo-icon-stellplatzart:before{content:"\e054"}.frymo-icon-swimmingpool:before{content:"\e055"}.frymo-icon-teekueche:before{content:"\e056"}.frymo-icon-telefon-ferienimmobilie:before{content:"\e057"}.frymo-icon-tick:before{content:"\e058"}.frymo-icon-umts-empfang:before{content:"\e059"}.frymo-icon-unterkellert:before{content:"\e05a"}.frymo-icon-us-bahn:before{content:"\e05b"}.frymo-icon-video-prev:before{content:"\e05c"}.frymo-icon-video:before{content:"\e05d"}.frymo-icon-wasch-trockenraum:before{content:"\e05e"}.frymo-icon-wellnessbereich:before{content:"\e05f"}.frymo-icon-wg-geeignet:before{content:"\e060"}.frymo-icon-widget-adress:before{content:"\e061"}.frymo-icon-widget-attachments:before{content:"\e062"}.frymo-icon-widget-ausstattung-2:before{content:"\e063"}.frymo-icon-widget-badges:before{content:"\e064"}.frymo-icon-widget-contact-agent:before{content:"\e065"}.frymo-icon-widget-direct-contact:before{content:"\e066"}.frymo-icon-widget-energieausweis:before{content:"\e067"}.frymo-icon-widget-energieausweisleiste:before{content:"\e068"}.frymo-icon-widget-features-description:before{content:"\e069"}.frymo-icon-widget-features:before{content:"\e06a"}.frymo-icon-widget-furnishing:before{content:"\e06b"}.frymo-icon-widget-further-description:before{content:"\e06c"}.frymo-icon-widget-galery:before{content:"\e06d"}.frymo-icon-widget-general-description:before{content:"\e06e"}.frymo-icon-widget-grundriss:before{content:"\e06f"}.frymo-icon-widget-image-slider:before{content:"\e070"}.frymo-icon-widget-listing:before{content:"\e071"}.frymo-icon-widget-location-description:before{content:"\e072"}.frymo-icon-widget-location-map:before{content:"\e073"}.frymo-icon-widget-main-image:before{content:"\e074"}.frymo-icon-widget-map-overview:before{content:"\e075"}.frymo-icon-widget-object-description-1:before{content:"\e076"}.frymo-icon-widget-object-description:before{content:"\e077"}.frymo-icon-widget-price:before{content:"\e078"}.frymo-icon-widget-properties-filter:before{content:"\e079"}.frymo-icon-widget-properties:before{content:"\e07a"}.frymo-icon-widget-reference-listing:before{content:"\e07b"}.frymo-icon-widget-related-properties:before{content:"\e07c"}.frymo-icon-widget-searchfinder:before{content:"\e07d"}.frymo-icon-widget-short-description:before{content:"\e07e"}.frymo-icon-widget-status:before{content:"\e07f"}.frymo-icon-widget-title:before{content:"\e080"}.frymo-icon-widget-video:before{content:"\e081"}.frymo-icon-widget-vr360:before{content:"\e082"}.frymo-icon-widget-wishlist-item:before{content:"\e083"}.frymo-icon-widget-wishlist:before{content:"\e084"}.frymo-icon-wintergarten:before{content:"\e085"}.frymo-icon-zentrum:before{content:"\e086"}.frymo-widget-icon:after{font-family:frymo-icons;content:"\e024";speak:none;font-size:14px;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:6px;right:6px;color:#cdcfd2}.eicon-lock+.icon .frymo-widget-icon{display:none}[data-frymo-tooltip]{cursor:pointer}.frymo-tooltip{position:absolute;transform:translate(-50%,-100%);z-index:10;filter:drop-shadow(0 0 3px #ccc);font-family:var(--e-global-typography-text-font-family);animation:frymoTooltipFadeIn .2s forwards}.frymo-tooltip .tooltip-wrapper{max-width:300px;color:#222;padding:10px;text-align:left;border-radius:6px;font-size:13px;line-height:1.4em;background:#fff}.frymo-tooltip .tooltip-wrapper p{display:inline-block;margin:0}.frymo-tooltip .tooltip-wrapper a{text-decoration:underline}.tooltip-trangle{position:absolute;bottom:0;left:50%;transform:translate(-50%,50%) rotate(45deg);height:10px;width:10px;background-color:#fff}@keyframes frymoTooltipFadeIn{from{opacity:0}to{opacity:1}}